diff --git a/.github/ISSUE_TEMPLATE/01_bug_report.yml b/.github/ISSUE_TEMPLATE/01_bug_report.yml index ff980d60b..760789d51 100644 --- a/.github/ISSUE_TEMPLATE/01_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/01_bug_report.yml @@ -1,7 +1,7 @@ name: Report a bug ❌ description: Report a bug in Wavelog title: "Choose a descriptive title......" -labels: ["bug"] +labels: ["needs triage"] body: - type: markdown attributes: diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index a69fedb82..2bdc23d47 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -10,33 +10,141 @@ env: IMAGE_NAME: ${{ github.repository }} jobs: - build: + prepare: runs-on: ubuntu-latest + outputs: + image_name: ${{ steps.lowercase.outputs.image_name }} + steps: + - name: Set lowercase image name + id: lowercase + run: echo "image_name=$(echo '${{ env.IMAGE_NAME }}' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_OUTPUT + + build-amd64: + runs-on: ubuntu-latest + needs: prepare permissions: contents: read packages: write + outputs: + digest: ${{ steps.build.outputs.digest }} steps: - - uses: actions/checkout@v4 - - name: 'Login to GitHub Container Registry' - uses: docker/login-action@v1 + - uses: actions/checkout@v6 + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 with: - registry: ghcr.io - username: ${{github.actor}} - password: ${{secrets.GITHUB_TOKEN}} + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Docker meta id: meta uses: docker/metadata-action@v5 with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + images: ${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build and push (amd64) + id: build + uses: docker/build-push-action@v6 + with: + context: . + platforms: linux/amd64 + outputs: type=image,name=${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }},push-by-digest=true,name-canonical=true,push=true + labels: ${{ steps.meta.outputs.labels }} + + build-arm64: + runs-on: ubuntu-24.04-arm + needs: prepare + permissions: + contents: read + packages: write + outputs: + digest: ${{ steps.build.outputs.digest }} + steps: + - uses: actions/checkout@v6 + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build and push (arm64) + id: build + uses: docker/build-push-action@v6 + with: + context: . + platforms: linux/arm64 + outputs: type=image,name=${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }},push-by-digest=true,name-canonical=true,push=true + labels: ${{ steps.meta.outputs.labels }} + + build-armv7: + runs-on: ubuntu-24.04-arm + needs: prepare + permissions: + contents: read + packages: write + outputs: + digest: ${{ steps.build.outputs.digest }} + steps: + - uses: actions/checkout@v6 + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }} - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - - name: Build and push - uses: docker/build-push-action@v5 + - name: Build and push (arm/v7) + id: build + uses: docker/build-push-action@v6 with: context: . - platforms: linux/amd64,linux/arm64,linux/arm/v7 - push: true - tags: ${{ steps.meta.outputs.tags }} + platforms: linux/arm/v7 + outputs: type=image,name=${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }},push-by-digest=true,name-canonical=true,push=true labels: ${{ steps.meta.outputs.labels }} + + merge: + runs-on: ubuntu-latest + needs: + - prepare + - build-amd64 + - build-arm64 + - build-armv7 + permissions: + contents: read + packages: write + steps: + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Create and push multi-arch manifest + run: | + docker buildx imagetools create \ + $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ + ${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }}@${{ needs.build-amd64.outputs.digest }} \ + ${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }}@${{ needs.build-arm64.outputs.digest }} \ + ${{ env.REGISTRY }}/${{ needs.prepare.outputs.image_name }}@${{ needs.build-armv7.outputs.digest }} diff --git a/Dockerfile b/Dockerfile index 93afb73f9..8e3f4db46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.3-apache +FROM php:8.4-apache ENV CI_ENV=docker COPY --from=ghcr.io/mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ @@ -27,7 +27,7 @@ max_execution_time = 600\n" > $PHP_INI_DIR/conf.d/wavelog.ini COPY ./ /var/www/html/ WORKDIR /var/www/html -# Setting permissions as: https://github.com/wavelog/Wavelog/wiki/Installation +# Setting permissions as: https://docs.wavelog.org/getting-started/installation/linux/#3-set-directory-ownership-and-permissions RUN mkdir ./application/config/docker; \ mv ./htaccess.sample ./.htaccess; \ sed -i "s/\$config\['index_page'\] = 'index.php';/\$config\['index_page'\] = '';/g" ./install/config/config.php; \ diff --git a/README.md b/README.md index 2bf643a78..d83c3ced0 100644 --- a/README.md +++ b/README.md @@ -30,12 +30,14 @@ The Core-Dev-Team for Wavelog are (in Alphabetic order of the Call): * LA8AJA ([@AndreasK79](https://github.com/AndreasK79)) ## Demo -Test Wavelog and it's features! +Test Wavelog and its features! https://demo.wavelog.org Username: demo Password: demo +## Documentation +The documentation for Wavelog can be found at https://docs.wavelog.org/. ## Requirements ### Recommended: Classic-LAMP-Stack: @@ -45,14 +47,14 @@ https://demo.wavelog.org * MySQL or MariaDB (MySQL 8 or higher // MariaDB 10.2 or higher) ### Alternative - Easy start with prebuilt Docker-image: -* [Docker Support](https://github.com/wavelog/wavelog/wiki/Installation-via-Docker) +* [Docker Support](https://docs.wavelog.org/getting-started/installation/docker/) Notes * If you want to log microwave QSOs you will need to use a 64bit operating system. ## Setup -Installation information can be found on the [wiki](https://github.com/wavelog/wavelog/wiki). +Installation information can be found on the [documentation](https://docs.wavelog.org/getting-started/installation/). ## WavelogGate @@ -72,11 +74,11 @@ Special thanks to our contributors, who are part of Wavelog by improving code! 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), [Luca (IU2FRL)](https://translate.wavelog.org/user/iu2frl/), [Dragan Đorđević (4O4A)](https://translate.wavelog.org/user/4o4a/), [Dren Imeraj (Z63DRI)](https://translate.wavelog.org/user/Dren/), [Filip Melik (OK1GOD)](https://translate.wavelog.org/user/filipmelik/), [Petr (OK1PTR)](https://translate.wavelog.org/user/OK1PTR/), [Stefan (DB4SCW)](https://translate.wavelog.org/user/DB4SCW/), [F4JSU](https://translate.wavelog.org/user/F4JSU/), [Maciej](https://translate.wavelog.org/user/maciejla/), [imlonghao](https://translate.wavelog.org/user/imlonghao/), [Reiner Herrmann](https://translate.wavelog.org/user/reinerh/), [Jian ke (BG8IXZ)](https://translate.wavelog.org/user/bg8ixz/), [Fabian Franz](https://translate.wavelog.org/user/fabianfrz/), [Fatih Önder](https://translate.wavelog.org/user/cektor/), [Qing He(BD8DHF)](https://translate.wavelog.org/user/BD8DHF), [hellofinch](https://translate.wavelog.org/user/hellofinch/), [tviitkar (ES5TVI )](https://translate.wavelog.org/user/tviitkar/), [utkuyalcin](https://translate.wavelog.org/user/utkuyalcin/), [Plamen Panteleev (LZ1PPL)](https://translate.wavelog.org/user/lz1ppl/), [Bartek](https://translate.wavelog.org/user/atimias/), [Samir (DL4DCO)](https://translate.wavelog.org/user/DL4DCO/), [Stanisław Korzeń (SP5CRO)](https://translate.wavelog.org/user/sp5cro/), [wxy (BA7NID)](https://translate.wavelog.org/user/ba7nid/), [David Quental (CT1DRB)](https://translate.wavelog.org/user/ct1drb/), [Sebastian K.](https://translate.wavelog.org/user/sebket/), [Limes](https://translate.wavelog.org/user/limes-github/), [Ethan C. Edwards (AE4CE)](https://translate.wavelog.org/user/ethancedwards8/), [Simon Pribec](https://translate.wavelog.org/user/spribec/), [Christian Egger (HB9HJQ)](https://translate.wavelog.org/user/HB9HJQ/), [André Berends (PE1PQX)](https://translate.wavelog.org/user/PE1PQX/), [Alexander (PA8S)](https://translate.wavelog.org/user/pa8s/), [Jorgen Dahl (NU1T)](https://translate.wavelog.org/user/Jorgen/), [bel-pol](https://translate.wavelog.org/user/bel-pol/), [Mathias Regner (OE4BAM)](https://translate.wavelog.org/user/MatykoBr/), [remy56k](https://translate.wavelog.org/user/remy56k/), [YuanRetro (VA3LPZ/BI4LPZ)](https://translate.wavelog.org/user/yuanretro/), [李宇翔](https://translate.wavelog.org/user/vastsea-wuji/), [Pascal HB9HCG](https://translate.wavelog.org/user/hb9hcg/), [André Aubin](https://github.com/lambda2), [Tao Xu](https://translate.wavelog.org/user/tallcode/), [flothom](https://translate.wavelog.org/user/flothom/), [BH3HNI](https://translate.wavelog.org/user/BH3HNI/), [Lu Chang](https://translate.wavelog.org/user/ludoux/), [Alexey Khromov](https://translate.wavelog.org/user/zxalexis/), [BG8LNG](https://translate.wavelog.org/user/BG8LNG/), [Karim Malfi (F4CTJ)](https://translate.wavelog.org/user/F4CTJ/), [FengziLeo (BH7GZB)](https://translate.wavelog.org/user/BH7GZB/), [MiaoTony](https://translate.wavelog.org/user/miaotony/), [Aleksey Ubozhenko (R3DHX)](https://translate.wavelog.org/user/AleksdemSA/), [Stephane Tauziede (F4IZC)](https://translate.wavelog.org/user/F4IZC/), [S. NAKAO](https://translate.wavelog.org/user/NAKAO/), [Artur Greficz (SQ7ACP)](https://translate.wavelog.org/user/SQ7ACP/), [Matthias Jung](https://translate.wavelog.org/user/myzinsky/), [Erkin Mercan (TA4AQG/SP9AQG)](https://translate.wavelog.org/user/TA4AQG-SP9AQG/), [Fabian (EB1TR)](https://translate.wavelog.org/user/EB1TR/), [Szymon (SP9SPM)](https://translate.wavelog.org/user/sp9spm/), [Yoshida Kanae](translate.wavelog.org/user/xiaoxis654/), [notzaleewa](translate.wavelog.org/user/notzaleewa/), [F5MQU](translate.wavelog.org/user/F5MQU/), [ShenRQ(BH4FJN)](translate.wavelog.org/user/Jerryshen/), [JONCOUX Philippe](translate.wavelog.org/user/Garci80/), [Jerry](https://translate.wavelog.org/user/wohenbuguai/), [Viliam Petrik (OM0AAO)](https://translate.wavelog.org/user/om0aao/), [MCyiqiehuanying](https://translate.wavelog.org/user/MCyiqiehuanying/), [Dariusz Koryto (SQ7DK)](https://translate.wavelog.org/user/sq7dk/), [FATDEER](https://translate.wavelog.org/user/fatdeer/), [Jan Zeman (OK1IBW)](https://www.qrz.com/db/OK1IBW), [CS7AFM](https://translate.wavelog.org/user/sergio.t.mata@gmail.com/), [marin](https://translate.wavelog.org/user/marin/), [Juuso W. (OH1JW)](https://translate.wavelog.org/user/oh1jw/), [Juan Pablo Tamayo (HJ3KOS)](https://translate.wavelog.org/user/hj3kos/), [Miguel](https://translate.wavelog.org/user/micc/) +[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), [Luca (IU2FRL)](https://translate.wavelog.org/user/iu2frl/), [Dragan Đorđević (4O4A)](https://translate.wavelog.org/user/4o4a/), [Dren Imeraj (Z63DRI)](https://translate.wavelog.org/user/Dren/), [Filip Melik (OK1GOD)](https://translate.wavelog.org/user/filipmelik/), [Petr (OK1PTR)](https://translate.wavelog.org/user/OK1PTR/), [Stefan (DB4SCW)](https://translate.wavelog.org/user/DB4SCW/), [F4JSU](https://translate.wavelog.org/user/F4JSU/), [Maciej](https://translate.wavelog.org/user/maciejla/), [imlonghao](https://translate.wavelog.org/user/imlonghao/), [Reiner Herrmann](https://translate.wavelog.org/user/reinerh/), [Jian ke (BG8IXZ)](https://translate.wavelog.org/user/bg8ixz/), [Fabian Franz](https://translate.wavelog.org/user/fabianfrz/), [Fatih Önder](https://translate.wavelog.org/user/cektor/), [Qing He(BD8DHF)](https://translate.wavelog.org/user/BD8DHF), [hellofinch](https://translate.wavelog.org/user/hellofinch/), [tviitkar (ES5TVI )](https://translate.wavelog.org/user/tviitkar/), [utkuyalcin](https://translate.wavelog.org/user/utkuyalcin/), [Plamen Panteleev (LZ1PPL)](https://translate.wavelog.org/user/lz1ppl/), [Bartek](https://translate.wavelog.org/user/atimias/), [Samir (DL4DCO)](https://translate.wavelog.org/user/DL4DCO/), [Stanisław Korzeń (SP5CRO)](https://translate.wavelog.org/user/sp5cro/), [wxy (BA7NID)](https://translate.wavelog.org/user/ba7nid/), [David Quental (CT1DRB)](https://translate.wavelog.org/user/ct1drb/), [Sebastian K.](https://translate.wavelog.org/user/sebket/), [Limes](https://translate.wavelog.org/user/limes-github/), [Ethan C. Edwards (AE4CE)](https://translate.wavelog.org/user/ethancedwards8/), [Simon Pribec](https://translate.wavelog.org/user/spribec/), [Christian Egger (HB9HJQ)](https://translate.wavelog.org/user/HB9HJQ/), [André Berends (PE1PQX)](https://translate.wavelog.org/user/PE1PQX/), [Alexander (PA8S)](https://translate.wavelog.org/user/pa8s/), [Jorgen Dahl (NU1T)](https://translate.wavelog.org/user/Jorgen/), [bel-pol](https://translate.wavelog.org/user/bel-pol/), [Mathias Regner (OE4BAM)](https://translate.wavelog.org/user/MatykoBr/), [remy56k](https://translate.wavelog.org/user/remy56k/), [YuanRetro (VA3LPZ/BI4LPZ)](https://translate.wavelog.org/user/yuanretro/), [李宇翔](https://translate.wavelog.org/user/vastsea-wuji/), [Pascal HB9HCG](https://translate.wavelog.org/user/hb9hcg/), [André Aubin](https://github.com/lambda2), [Tao Xu](https://translate.wavelog.org/user/tallcode/), [flothom](https://translate.wavelog.org/user/flothom/), [BH3HNI](https://translate.wavelog.org/user/BH3HNI/), [Lu Chang](https://translate.wavelog.org/user/ludoux/), [Alexey Khromov](https://translate.wavelog.org/user/zxalexis/), [BG8LNG](https://translate.wavelog.org/user/BG8LNG/), [Karim Malfi (F4CTJ)](https://translate.wavelog.org/user/F4CTJ/), [FengziLeo (BH7GZB)](https://translate.wavelog.org/user/BH7GZB/), [MiaoTony](https://translate.wavelog.org/user/miaotony/), [Aleksey Ubozhenko (R3DHX)](https://translate.wavelog.org/user/AleksdemSA/), [Stephane Tauziede (F4IZC)](https://translate.wavelog.org/user/F4IZC/), [S. NAKAO](https://translate.wavelog.org/user/NAKAO/), [Artur Greficz (SQ7ACP)](https://translate.wavelog.org/user/SQ7ACP/), [Matthias Jung](https://translate.wavelog.org/user/myzinsky/), [Erkin Mercan (TA4AQG/SP9AQG)](https://translate.wavelog.org/user/TA4AQG-SP9AQG/), [Fabian (EB1TR)](https://translate.wavelog.org/user/EB1TR/), [Szymon (SP9SPM)](https://translate.wavelog.org/user/sp9spm/), [Yoshida Kanae](translate.wavelog.org/user/xiaoxis654/), [notzaleewa](translate.wavelog.org/user/notzaleewa/), [F5MQU](translate.wavelog.org/user/F5MQU/), [ShenRQ(BH4FJN)](translate.wavelog.org/user/Jerryshen/), [JONCOUX Philippe](translate.wavelog.org/user/Garci80/), [Jerry](https://translate.wavelog.org/user/wohenbuguai/), [Viliam Petrik (OM0AAO)](https://translate.wavelog.org/user/om0aao/), [MCyiqiehuanying](https://translate.wavelog.org/user/MCyiqiehuanying/), [Dariusz Koryto (SQ7DK)](https://translate.wavelog.org/user/sq7dk/), [FATDEER](https://translate.wavelog.org/user/fatdeer/), [Jan Zeman (OK1IBW)](https://www.qrz.com/db/OK1IBW), [CS7AFM](https://translate.wavelog.org/user/sergio.t.mata@gmail.com/), [marin](https://translate.wavelog.org/user/marin/), [Juuso W. (OH1JW)](https://translate.wavelog.org/user/oh1jw/), [Juan Pablo Tamayo (HJ3KOS)](https://translate.wavelog.org/user/hj3kos/), [Miguel](https://translate.wavelog.org/user/micc/), [IV3CVN](https://translate.wavelog.org/user/iv3cvn/), [Telectroboy](https://translate.wavelog.org/user/Telectroboy/), [Xu, Zefan (BI1GHZ)](https://translate.wavelog.org/user/cebarobot/) -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. +If you would like to contribute in any way to Wavelog, it is most appreciated. This has been developed in free time and help coding new features or writing documentation is always useful. -**For translations and language stuff you can refer to our [Wiki about Translations](https://github.com/wavelog/wavelog/wiki/Translations).** +**For translations and language stuff you can refer to our [Wiki about Translations](https://docs.wavelog.org/developer/translations/).** Please note that Wavelog was built using [Codeigniter](https://www.codeigniter.com/userguide3/) version 3 and uses Bootstrap 5 for the user CSS framework documentation is available for this when building components. diff --git a/application/config/config.sample.php b/application/config/config.sample.php index 552dad23f..e3841fecd 100644 --- a/application/config/config.sample.php +++ b/application/config/config.sample.php @@ -433,7 +433,7 @@ $config['error_views_path'] = ''; | */ $config['cache_path'] = ''; -$config['cache_adapter'] = 'file'; +$config['cache_adapter'] = 'apcu'; $config['cache_backup'] = 'file'; $config['cache_key_prefix'] = ''; @@ -736,7 +736,7 @@ $config['disable_oqrs'] = false; | This config switch is meant for Special Callsign operations or Clubstations. | If this switch is set to true it enables a whole bunch of features to handle Special Callsigns and Club Callsigns. | For more Information please visit the Wiki: -| https://github.com/wavelog/wavelog/wiki/Clubstations +| https://docs.wavelog.org/admin-guide/administration/clubstations/ | | !!! Important !!! | $config['disable_impersonate'] has to be set to false to use this feature. @@ -892,6 +892,19 @@ $config['max_login_attempts'] = 3; $config['enable_dxcluster_file_cache_band'] = false; $config['enable_dxcluster_file_cache_worked'] = false; +/* +|-------------------------------------------------------------------------- +| DXCluster Refresh Time +|-------------------------------------------------------------------------- +| This defines the how often the DXCluster spots are refreshed in seconds. Default is 30 seconds. +| Be careful with this and do not set it too low because depending on how many QSOs a user has it +| can cause a lot of load on the server. Also consider enabling a proper caching (file caches are +| not recommended for very large installations) to reduce the load on the server. +|-------------------------------------------------------------------------- + */ +$config['dxcluster_refresh_time'] = 30; + + /* |-------------------------------------------------------------------------- | Internal tools diff --git a/application/config/migration.php b/application/config/migration.php index dcd5de722..d6b180776 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE; | */ -$config['migration_version'] = 271; +$config['migration_version'] = 272; /* |-------------------------------------------------------------------------- diff --git a/application/controllers/Activated_gridmap.php b/application/controllers/Activated_gridmap.php index f105f149f..4e09f162c 100644 --- a/application/controllers/Activated_gridmap.php +++ b/application/controllers/Activated_gridmap.php @@ -44,8 +44,8 @@ class Activated_gridmap extends CI_Controller { $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', - 'assets/js/sections/gridmap.js?', - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/sections/gridmap.js', + 'assets/js/bootstrap-multiselect.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Activators.php b/application/controllers/Activators.php index 652833dc6..d1d8315bc 100644 --- a/application/controllers/Activators.php +++ b/application/controllers/Activators.php @@ -50,7 +50,7 @@ class Activators extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/activators.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/activators.js")), + 'assets/js/sections/activators.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Api.php b/application/controllers/Api.php index 2fa8af2eb..16420d378 100644 --- a/application/controllers/Api.php +++ b/application/controllers/Api.php @@ -728,6 +728,80 @@ class API extends CI_Controller { } + // API function to check if a grid is in the logbook already + function logbook_get_worked_grids() { + $arr = array(); + header('Content-type: application/json'); + $this->load->model('api_model'); + $obj = json_decode(file_get_contents("php://input"), true); + if ($obj === NULL) { + echo json_encode(['status' => 'failed', 'reason' => "wrong JSON"]); + die(); + } + // Check rate limit + $identifier = isset($obj['key']) ? $obj['key'] : null; + $this->check_rate_limit('logbook_get_worked_grids', $identifier); + + if(!isset($obj['key']) || $this->api_model->authorize($obj['key']) == 0) { + http_response_code(401); + echo json_encode(['status' => 'failed', 'reason' => "missing api key"]); + die(); + } + $api_user_id = $this->api_model->key_userid($obj['key']); + if(!isset($obj['logbook_public_slug'])) { + http_response_code(400); + echo json_encode(['status' => 'failed', 'reason' => "missing fields"]); + return; + } + if($obj['logbook_public_slug'] != "") { + $logbook_slug = $obj['logbook_public_slug']; + if(isset($obj['band'])) { + $band = $obj['band']; + } else { + $band = null; + } + if(isset($obj['cnfm'])) { + $cnfm = $obj['cnfm']; + } else { + $cnfm = null; + } + $this->load->model('logbooks_model'); + if(!$this->logbooks_model->public_slug_belongs_to_user($logbook_slug, $api_user_id)) { + http_response_code(403); + echo json_encode(['status' => 'failed', 'reason' => "logbook does not belong to this api key"]); + die(); + } + if($this->logbooks_model->public_slug_exists($logbook_slug)) { + $logbook_id = $this->logbooks_model->public_slug_exists_logbook_id($logbook_slug); + if($logbook_id != false) + { + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($logbook_id); + if (!$logbooks_locations_array) { + http_response_code(404); + echo json_encode(['status' => 'failed', 'reason' => "Empty Logbook"]); + die(); + } + } else { + http_response_code(404); + echo json_encode(['status' => 'failed', 'reason' => $logbook_slug." has no associated station locations"]); + die(); + } + $this->load->model('logbook_model'); + + $arr = $this->api_model->get_grids_worked_in_logbook($logbooks_locations_array, $band, $cnfm); + http_response_code(201); + echo json_encode($arr); + + } else { + http_response_code(404); + echo json_encode(['status' => 'failed', 'reason' => "logbook not found"]); + die(); + } + + } + + } + /* ENDPOINT for Rig Control */ function radio() { @@ -962,7 +1036,7 @@ class API extends CI_Controller { ]; $return['callsign'] = $lookup_callsign; - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); $callsign_dxcc_lookup = $dxccobj->dxcc_lookup($lookup_callsign, $date); $last_slash_pos = strrpos($lookup_callsign, '/'); @@ -1122,7 +1196,7 @@ class API extends CI_Controller { $return['callsign'] = $lookup_callsign; // Use Wavelog\Dxcc\Dxcc for faster in-memory lookup - $dxccobj = new Dxcc($date); + $dxccobj = new Dxcc(); $callsign_dxcc_lookup = $dxccobj->dxcc_lookup($lookup_callsign, $date); $return['dxcc_id'] = $callsign_dxcc_lookup['adif'] ?? ''; @@ -1146,8 +1220,6 @@ class API extends CI_Controller { $return['qsl_manager'] = $call_lookup_results->COL_QSL_VIA; $return['state'] = $call_lookup_results->COL_STATE; $return['us_county'] = $call_lookup_results->COL_CNTY; - $return['dxcc_id'] = $call_lookup_results->COL_DXCC; - $return['cont'] = $call_lookup_results->COL_CONT; $return['workedBefore'] = true; if ($return['gridsquare'] != "") { @@ -1309,4 +1381,55 @@ class API extends CI_Controller { return $url; } + /* ** + * List members of a clubstation + * API key needs to be of a club officer (permission level 9) + * returns array of club member details + */ + function list_clubmembers() { + header('Content-type: application/json'); + + $this->load->model('api_model'); + + // Decode JSON and store + $obj = json_decode(file_get_contents("php://input"), true); + if ($obj === NULL) { + http_response_code(400); + echo json_encode(['status' => 'failed', 'reason' => "wrong JSON"]); + return; + } + + if ($this->api_model->access($obj['key']) == "No Key Found" || $this->api_model->access($obj['key']) == "Key Disabled") { + http_response_code(401); + echo json_encode(['status' => 'error', 'message' => 'Auth Error, invalid key']); + return; + } + + $this->load->model('club_model'); + $userid = $this->api_model->key_userid($obj['key']); + $created_by = $this->api_model->key_created_by($obj['key']); + $club_perm = $this->club_model->get_permission_noui($userid,$created_by); + if (($userid == $created_by) || (($club_perm ?? 0) != 9)) { // not club officer + http_response_code(401); + echo json_encode(['status' => 'error', 'message' => 'Auth Error, not enough permissions for this operation']); + return; + } + + $memberlist = $this->club_model->get_club_members($userid); + if (!empty($memberlist)) { + foreach($memberlist as $member) { + $members[] = [ + 'callsign' => $member->user_callsign, + 'user_name' => $member->user_name, + 'p_level' => $member->p_level + ]; + } + http_response_code(200); + echo json_encode(['status' => 'successful', 'members' => $members]); + } else { + http_response_code(204); + echo json_encode(['status' => 'failed', 'reason' => "No club members found", 'members' => '']); + return; + } + } } diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php index bdd98ac16..8898bcc9b 100644 --- a/application/controllers/Awards.php +++ b/application/controllers/Awards.php @@ -36,7 +36,6 @@ class Awards extends CI_Controller { public function dok () { - $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $data['user_map_custom'] = $this->optionslib->get_map_custom(); @@ -110,6 +109,9 @@ class Awards extends CI_Controller { $this->load->model('dxcc'); $this->load->model('modes'); $this->load->model('bands'); + $this->load->model('logbooks_model'); + + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $data['orbits'] = $this->bands->get_worked_orbits(); $data['sats_available'] = $this->bands->get_worked_sats(); @@ -183,16 +185,25 @@ class Awards extends CI_Controller { $postdata['dateTo'] = null; } - $dxcclist = $this->dxcc->fetchdxcc($postdata); - if ($dxcclist && $dxcclist[0]->adif == "0") { - unset($dxcclist[0]); - } - $data['dxcc_array'] = $this->dxcc->get_dxcc_array($dxcclist, $bands, $postdata); - $data['dxcc_summary'] = $this->dxcc->get_dxcc_summary($bands, $postdata); + if ($logbooks_locations_array) { + $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $dxcclist = $this->dxcc->fetchdxcc($postdata, $location_list); + if ($dxcclist && $dxcclist[0]->adif == "0") { + unset($dxcclist[0]); + } + $dxcc_result = $this->dxcc->get_dxcc_array($dxcclist, $bands, $postdata, $location_list); + // Extract bands data and summary from the result + $data['dxcc_array'] = ($dxcc_result && isset($dxcc_result['matrix'])) ? $dxcc_result['matrix'] : null; + $data['dxcc_summary'] = ($dxcc_result && isset($dxcc_result['summary'])) ? $dxcc_result['summary'] : null; + } else { + $location_list = null; + $data['dxcc_array'] = null; + $data['dxcc_summary'] = null; + } // Render Page $data['page_title'] = sprintf(__("Awards - %s"), __("DXCC")); - $data['posted_band']=$postdata['band']; + $data['posted_band'] = $postdata['band']; $this->load->view('interface_assets/header', $data); $this->load->view('awards/dxcc/index'); $this->load->view('interface_assets/footer'); @@ -200,6 +211,10 @@ class Awards extends CI_Controller { public function wapc () { $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/wapcmap.js', + 'assets/js/leaflet/L.Maidenhead.js', + ]; $this->load->model('wapc'); $this->load->model('modes'); @@ -277,7 +292,7 @@ class Awards extends CI_Controller { public function waja () { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wajamap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wajamap.js")), + 'assets/js/sections/wajamap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -357,8 +372,8 @@ class Awards extends CI_Controller { public function jcc () { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/jcc.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/jcc.js")), - 'assets/js/sections/jccmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/jccmap.js")) + 'assets/js/sections/jcc.js', + 'assets/js/sections/jccmap.js' ]; $this->load->model('jcc_model'); @@ -483,7 +498,6 @@ class Awards extends CI_Controller { public function vucc_band(){ $this->load->model('vucc'); - $data['user_map_custom'] = $this->optionslib->get_map_custom(); $band = str_replace('"', "", $this->security->xss_clean($this->input->get("Band"))); $type = str_replace('"', "", $this->security->xss_clean($this->input->get("Type"))); $data['vucc_array'] = $this->vucc->vucc_details($band, $type); @@ -558,7 +572,8 @@ class Awards extends CI_Controller { // Render Page $data['page_title'] = __("Log View")." - " . $type; - $data['filter'] = (($type != $band) ? $type : '')." ".$searchphrase.__(" and band ").$band; + $data['filter'] = (($type != $band) ? $type : '')." ".$searchphrase." ".__("and")." "; + $data['filter'] .= ($band == 'All' ? lcfirst(__("Every band (w/o SAT)")) : __("band")." ".$band); if ($band == 'SAT') { if ($sat != 'All' && $sat != null) { $data['filter'] .= __(" and satellite ").$sat; @@ -637,8 +652,8 @@ class Awards extends CI_Controller { public function cq() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), - 'assets/js/sections/cqmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap.js")) + 'assets/js/sections/cqmap_geojson.js', + 'assets/js/sections/cqmap.js' ]; $this->load->model('logbooks_model'); @@ -666,37 +681,43 @@ class Awards extends CI_Controller { $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - if($this->input->method() === 'post') { - $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); - $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); - $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); - $postdata['qrz'] = $this->security->xss_clean($this->input->post('qrz')); - $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')); - $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); - $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')); - $postdata['band'] = $this->security->xss_clean($this->input->post('band')); + if($this->input->method() === 'post') { + $postdata['qsl'] = ($this->input->post('qsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['lotw'] = ($this->input->post('lotw',true) ?? 0) == 0 ? NULL: 1; + $postdata['eqsl'] = ($this->input->post('eqsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['qrz'] = ($this->input->post('qrz',true) ?? 0) == 0 ? NULL: 1; + $postdata['clublog'] = ($this->input->post('clublog',true) ?? 0) == 0 ? NULL: 1; + $postdata['worked'] = ($this->input->post('worked',true) ?? 0) == 0 ? NULL: 1; + $postdata['confirmed'] = ($this->input->post('confirmed',true) ?? 0) == 0 ? NULL: 1; + $postdata['notworked'] = ($this->input->post('notworked',true) ?? 0) == 0 ? NULL: 1; + $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); $postdata['datefrom'] = $this->security->xss_clean($this->input->post('dateFrom')); $postdata['dateto'] = $this->security->xss_clean($this->input->post('dateTo')); - } - else { // Setting default values at first load of page - $postdata['qsl'] = 1; - $postdata['lotw'] = 1; - $postdata['eqsl'] = 0; - $postdata['qrz'] = 0; - $postdata['worked'] = 1; - $postdata['confirmed'] = 1; - $postdata['notworked'] = 1; - $postdata['band'] = 'All'; + } + else { // Setting default values at first load of page + $postdata['qsl'] = 1; + $postdata['lotw'] = 1; + $postdata['eqsl'] = NULL; + $postdata['qrz'] = NULL; + $postdata['clublog'] = NULL; + $postdata['worked'] = 1; + $postdata['confirmed'] = 1; + $postdata['notworked'] = 1; + $postdata['band'] = 'All'; $postdata['mode'] = 'All'; $postdata['datefrom'] = null; $postdata['dateto'] = null; - } + } + + $data['posted_band'] = $postdata['band']; if ($logbooks_locations_array) { $location_list = "'".implode("','",$logbooks_locations_array)."'"; - $data['cq_array'] = $this->cq->get_cq_array($bands, $postdata, $location_list); - $data['cq_summary'] = $this->cq->get_cq_summary($bands, $postdata, $location_list); + $cq_result = $this->cq->get_cq_array($bands, $postdata, $location_list); + // Extract bands data and summary from the result + $data['cq_array'] = ($cq_result && isset($cq_result['bands'])) ? $cq_result['bands'] : null; + $data['cq_summary'] = ($cq_result && isset($cq_result['summary'])) ? $cq_result['summary'] : null; } else { $location_list = null; $data['cq_array'] = null; @@ -713,7 +734,7 @@ class Awards extends CI_Controller { public function was() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wasmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wasmap.js")), + 'assets/js/sections/wasmap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -775,7 +796,7 @@ class Awards extends CI_Controller { public function rac() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/racmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/racmap.js")), + 'assets/js/sections/racmap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -837,7 +858,7 @@ class Awards extends CI_Controller { public function helvetia() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/helvetiamap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/helvetiamap.js")), + 'assets/js/sections/helvetiamap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -1367,7 +1388,7 @@ class Awards extends CI_Controller { public function wap() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wapmap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wapmap.js")), + 'assets/js/sections/wapmap.js', 'assets/js/leaflet/L.Maidenhead.js', ]; @@ -1600,8 +1621,16 @@ class Awards extends CI_Controller { $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->load->model('cq'); + $this->load->model('bands'); - $bands[] = $this->input->post('band'); + $data['worked_bands'] = $this->bands->get_worked_bands('cq'); + + if ($this->input->post('band') == 'All') { + $bands = $data['worked_bands']; + } + else { + $bands[] = $this->input->post('band'); + } $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; @@ -1613,36 +1642,15 @@ class Awards extends CI_Controller { $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - $postdata['datefrom'] = $this->security->xss_clean($this->input->post('datefrom')); - $postdata['dateto'] = $this->security->xss_clean($this->input->post('dateto')); + $postdata['datefrom'] = $this->security->xss_clean($this->input->post('dateFrom')); + $postdata['dateto'] = $this->security->xss_clean($this->input->post('dateTo')); if ($logbooks_locations_array) { $location_list = "'".implode("','",$logbooks_locations_array)."'"; - $cq_array = $this->cq->get_cq_array($bands, $postdata, $location_list, $this->user_map_color_qso, $this->user_map_color_qsoconfirm); + $zones = $this->cq->get_cq_array($bands, $postdata, $location_list, true); } else { $location_list = null; - $cq_array = null; - } - - $zones = array(); - - foreach ($cq_array as $cq => $value) { - foreach ($value as $key) { - if($key != "") { - if (strpos($key, '>W<') !== false) { - $zones[] = 'W'; - break; - } - if (strpos($key, '>C<') !== false) { - $zones[] = 'C'; - break; - } - if (strpos($key, '-') !== false) { - $zones[] = '-'; - break; - } - } - } + $zones = array(); } header('Content-Type: application/json'); @@ -1705,64 +1713,134 @@ class Awards extends CI_Controller { echo json_encode($prefectures); } + /* + function wapc_map + */ + public function wapc_map() { + $this->load->model('wapc'); + $this->load->model('bands'); + + $bands[] = $this->security->xss_clean($this->input->post('band')); + + $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; + $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; + $postdata['eqsl'] = $this->input->post('eqsl') == 0 ? NULL: 1; + $postdata['qrz'] = $this->input->post('qrz') == 0 ? NULL: 1; + $postdata['worked'] = $this->input->post('worked') == 0 ? NULL: 1; + $postdata['clublog'] = $this->input->post('clublog') == 0 ? NULL: 1; + $postdata['confirmed'] = $this->input->post('confirmed') == 0 ? NULL: 1; + $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; + $postdata['band'] = $this->input->post('band', TRUE); + $postdata['mode'] = $this->input->post('mode', TRUE); + + $wapc_array = $this->wapc->get_wapc_array($bands, $postdata); + + $provinces = array(); + + $wapcArray = array_keys($this->wapc->cnProvinces); + foreach ($wapcArray as $state) { + $provinces[$state] = '-'; + } + + foreach ($wapc_array as $wapc => $value) { + foreach ($value as $key) { + if($key != "") { + if (strpos($key, '>W<') !== false) { + $provinces[$wapc] = 'W'; + break; + } + if (strpos($key, '>C<') !== false) { + $provinces[$wapc] = 'C'; + break; + } + if (strpos($key, '-') !== false) { + $provinces[$wapc] = '-'; + break; + } + } + } + } + + header('Content-Type: application/json'); + echo json_encode($provinces); + } + /* function dxcc_map This displays the DXCC map */ public function dxcc_map() { - $this->load->model('dxcc'); - $this->load->model('bands'); + $this->load->model('dxcc'); + $this->load->model('bands'); - $bands[] = $this->security->xss_clean($this->input->post('band')); + $data['worked_bands'] = $this->bands->get_worked_bands('dxcc'); - $postdata['qsl'] = ($this->input->post('qsl',true) ?? 0) == 0 ? NULL: 1; - $postdata['lotw'] = ($this->input->post('lotw',true) ?? 0) == 0 ? NULL: 1; - $postdata['eqsl'] = ($this->input->post('eqsl',true) ?? 0) == 0 ? NULL: 1; - $postdata['qrz'] = ($this->input->post('qrz',true) ?? 0) == 0 ? NULL: 1; - $postdata['clublog'] = ($this->input->post('clublog',true) ?? 0) == 0 ? NULL: 1; - $postdata['worked'] = ($this->input->post('worked',true) ?? 0) == 0 ? NULL: 1; - $postdata['confirmed'] = ($this->input->post('confirmed',true) ?? 0) == 0 ? NULL: 1; - $postdata['notworked'] = ($this->input->post('notworked',true) ?? 0) == 0 ? NULL: 1; + if ($this->input->post('band') == 'All') { + $bands = $data['worked_bands']; + } + else { + $bands[] = $this->input->post('band'); + } - $postdata['includedeleted'] = ($this->input->post('includedeleted',true) ?? 0) == 0 ? NULL: 1; - $postdata['Africa'] = ($this->input->post('Africa',true) ?? 0) == 0 ? NULL: 1; - $postdata['Asia'] = ($this->input->post('Asia',true) ?? 0) == 0 ? NULL: 1; - $postdata['Europe'] = ($this->input->post('Europe',true) ?? 0) == 0 ? NULL: 1; - $postdata['NorthAmerica'] = ($this->input->post('NorthAmerica',true) ?? 0) == 0 ? NULL: 1; - $postdata['SouthAmerica'] = ($this->input->post('SouthAmerica',true) ?? 0) == 0 ? NULL: 1; - $postdata['Oceania'] = ($this->input->post('Oceania',true) ?? 0) == 0 ? NULL: 1; - $postdata['Antarctica'] = ($this->input->post('Antarctica',true) ?? 0) == 0 ? NULL: 1; - $postdata['band'] = $this->security->xss_clean($this->input->post('band')); - $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - $postdata['sat'] = $this->security->xss_clean($this->input->post('sat')); - $postdata['orbit'] = $this->security->xss_clean($this->input->post('orbit')); + $bands[] = $this->security->xss_clean($this->input->post('band')); + + $postdata['qsl'] = ($this->input->post('qsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['lotw'] = ($this->input->post('lotw',true) ?? 0) == 0 ? NULL: 1; + $postdata['eqsl'] = ($this->input->post('eqsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['qrz'] = ($this->input->post('qrz',true) ?? 0) == 0 ? NULL: 1; + $postdata['clublog'] = ($this->input->post('clublog',true) ?? 0) == 0 ? NULL: 1; + $postdata['worked'] = ($this->input->post('worked',true) ?? 0) == 0 ? NULL: 1; + $postdata['confirmed'] = ($this->input->post('confirmed',true) ?? 0) == 0 ? NULL: 1; + $postdata['notworked'] = ($this->input->post('notworked',true) ?? 0) == 0 ? NULL: 1; + + $postdata['includedeleted'] = ($this->input->post('includedeleted',true) ?? 0) == 0 ? NULL: 1; + $postdata['Africa'] = ($this->input->post('Africa',true) ?? 0) == 0 ? NULL: 1; + $postdata['Asia'] = ($this->input->post('Asia',true) ?? 0) == 0 ? NULL: 1; + $postdata['Europe'] = ($this->input->post('Europe',true) ?? 0) == 0 ? NULL: 1; + $postdata['NorthAmerica'] = ($this->input->post('NorthAmerica',true) ?? 0) == 0 ? NULL: 1; + $postdata['SouthAmerica'] = ($this->input->post('SouthAmerica',true) ?? 0) == 0 ? NULL: 1; + $postdata['Oceania'] = ($this->input->post('Oceania',true) ?? 0) == 0 ? NULL: 1; + $postdata['Antarctica'] = ($this->input->post('Antarctica',true) ?? 0) == 0 ? NULL: 1; + $postdata['band'] = $this->security->xss_clean($this->input->post('band')); + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + $postdata['sat'] = $this->security->xss_clean($this->input->post('sat')); + $postdata['orbit'] = $this->security->xss_clean($this->input->post('orbit')); $postdata['dateFrom'] = $this->security->xss_clean($this->input->post('dateFrom')); $postdata['dateTo'] = $this->security->xss_clean($this->input->post('dateTo')); - $dxcclist = $this->dxcc->fetchdxcc($postdata); - if ($dxcclist[0]->adif == "0") { - unset($dxcclist[0]); - } + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - $dxcc_array = $this->dxcc->get_dxcc_array($dxcclist, $bands, $postdata); + if ($logbooks_locations_array) { + $location_list = "'".implode("','",$logbooks_locations_array)."'"; + $dxcclist = $this->dxcc->fetchdxcc($postdata, $location_list); + if ($dxcclist[0]->adif == "0") { + unset($dxcclist[0]); + } + $dxcc_array = $this->dxcc->get_dxcc_array($dxcclist, $bands, $postdata, $location_list, true); + } else { + $location_list = null; + $dxcc_array = array(); + } - $i = 0; + $i = 0; - foreach ($dxcclist as $dxcc) { - $newdxcc[$i]['adif'] = $dxcc->adif; - $newdxcc[$i]['prefix'] = $dxcc->prefix; - $newdxcc[$i]['name'] = ucwords(strtolower($dxcc->name), "- (/"); - if ($dxcc->Enddate!=null) { - $newdxcc[$i]['name'] .= ' (deleted)'; - } - $newdxcc[$i]['lat'] = $dxcc->lat; - $newdxcc[$i]['long'] = $dxcc->long; - $newdxcc[$i++]['status'] = isset($dxcc_array[$dxcc->adif]) ? $this->returnStatus($dxcc_array[$dxcc->adif]) : 'x'; - } + foreach ($dxcclist as $dxcc) { + $newdxcc[$i]['adif'] = $dxcc->adif; + $newdxcc[$i]['prefix'] = $dxcc->prefix; + $newdxcc[$i]['name'] = ucwords(strtolower($dxcc->name), "- (/"); + if ($dxcc->Enddate!=null) { + $newdxcc[$i]['name'] .= ' (deleted)'; + } + $newdxcc[$i]['lat'] = $dxcc->lat; + $newdxcc[$i]['long'] = $dxcc->long; + $newdxcc[$i++]['status'] = isset($dxcc_array[$dxcc->adif]) ? $dxcc_array[$dxcc->adif] : 'x'; + } - header('Content-Type: application/json'); - echo json_encode($newdxcc); + + header('Content-Type: application/json'); + echo json_encode($newdxcc); } /* @@ -1895,7 +1973,7 @@ class Awards extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wab.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wab.js")) + 'assets/js/sections/wab.js' ]; // Render page @@ -1975,8 +2053,8 @@ class Awards extends CI_Controller { public function itu() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/sections/itumap.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap.js")) + 'assets/js/sections/itumap_geojson.js', + 'assets/js/sections/itumap.js' ]; $this->load->model('logbooks_model'); @@ -1985,9 +2063,9 @@ class Awards extends CI_Controller { $this->load->model('itu'); $this->load->model('modes'); $this->load->model('bands'); - $data['user_map_custom'] = $this->optionslib->get_map_custom(); $data['worked_bands'] = $this->bands->get_worked_bands('cq'); + $data['user_map_custom'] = $this->optionslib->get_map_custom(); $data['modes'] = $this->modes->active(); // Used in the view for mode select if ($this->input->post('band') != NULL) { // Band is not set when page first loads. @@ -2004,35 +2082,43 @@ class Awards extends CI_Controller { $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view - if($this->input->method() === 'post') { - $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); - $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); - $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); - $postdata['qrz'] = $this->security->xss_clean($this->input->post('qrz')); - $postdata['clublog'] = $this->security->xss_clean($this->input->post('clublog')); - $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')); - $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); - $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')); - $postdata['band'] = $this->security->xss_clean($this->input->post('band')); - $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); - } - else { // Setting default values at first load of page - $postdata['qsl'] = 1; - $postdata['lotw'] = 1; - $postdata['eqsl'] = 0; - $postdata['qrz'] = 0; - $postdata['clublog'] = 0; - $postdata['worked'] = 1; - $postdata['confirmed'] = 1; - $postdata['notworked'] = 1; - $postdata['band'] = 'All'; + if($this->input->method() === 'post') { + $postdata['qsl'] = ($this->input->post('qsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['lotw'] = ($this->input->post('lotw',true) ?? 0) == 0 ? NULL: 1; + $postdata['eqsl'] = ($this->input->post('eqsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['qrz'] = ($this->input->post('qrz',true) ?? 0) == 0 ? NULL: 1; + $postdata['clublog'] = ($this->input->post('clublog',true) ?? 0) == 0 ? NULL: 1; + $postdata['worked'] = ($this->input->post('worked',true) ?? 0) == 0 ? NULL: 1; + $postdata['confirmed'] = ($this->input->post('confirmed',true) ?? 0) == 0 ? NULL: 1; + $postdata['notworked'] = ($this->input->post('notworked',true) ?? 0) == 0 ? NULL: 1; + $postdata['band'] = $this->security->xss_clean($this->input->post('band')); + $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + $postdata['datefrom'] = $this->security->xss_clean($this->input->post('dateFrom')); + $postdata['dateto'] = $this->security->xss_clean($this->input->post('dateTo')); + } + else { // Setting default values at first load of page + $postdata['qsl'] = 1; + $postdata['lotw'] = 1; + $postdata['eqsl'] = NULL; + $postdata['qrz'] = NULL; + $postdata['clublog'] = NULL; + $postdata['worked'] = 1; + $postdata['confirmed'] = 1; + $postdata['notworked'] = 1; + $postdata['band'] = 'All'; $postdata['mode'] = 'All'; - } + $postdata['datefrom'] = null; + $postdata['dateto'] = null; + } + + $data['posted_band'] = $postdata['band']; if ($logbooks_locations_array) { $location_list = "'".implode("','",$logbooks_locations_array)."'"; - $data['itu_array'] = $this->itu->get_itu_array($bands, $postdata, $location_list); - $data['itu_summary'] = $this->itu->get_itu_summary($bands, $postdata, $location_list); + $itu_result = $this->itu->get_itu_array($bands, $postdata, $location_list); + // Extract bands data and summary from the result + $data['itu_array'] = ($itu_result && isset($itu_result['bands'])) ? $itu_result['bands'] : null; + $data['itu_summary'] = ($itu_result && isset($itu_result['summary'])) ? $itu_result['summary'] : null; } else { $location_list = null; $data['itu_array'] = null; @@ -2055,8 +2141,16 @@ class Awards extends CI_Controller { $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->load->model('itu'); + $this->load->model('bands'); - $bands[] = $this->input->post('band'); + $data['worked_bands'] = $this->bands->get_worked_bands('cq'); + + if ($this->input->post('band') == 'All') { + $bands = $data['worked_bands']; + } + else { + $bands[] = $this->input->post('band'); + } $postdata['qsl'] = $this->input->post('qsl') == 0 ? NULL: 1; $postdata['lotw'] = $this->input->post('lotw') == 0 ? NULL: 1; @@ -2068,34 +2162,15 @@ class Awards extends CI_Controller { $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); + $postdata['datefrom'] = $this->security->xss_clean($this->input->post('dateFrom')); + $postdata['dateto'] = $this->security->xss_clean($this->input->post('dateTo')); if ($logbooks_locations_array) { $location_list = "'".implode("','",$logbooks_locations_array)."'"; - $itu_array = $this->itu->get_itu_array($bands, $postdata, $location_list); + $zones = $this->itu->get_itu_array($bands, $postdata, $location_list, true); } else { $location_list = null; - $itu_array = null; - } - - $zones = array(); - - foreach ($itu_array as $itu => $value) { - foreach ($value as $key) { - if($key != "") { - if (strpos($key, '>W<') !== false) { - $zones[] = 'W'; - break; - } - if (strpos($key, '>C<') !== false) { - $zones[] = 'C'; - break; - } - if (strpos($key, '-') !== false) { - $zones[] = '-'; - break; - } - } - } + $zones = array(); } header('Content-Type: application/json'); @@ -2133,30 +2208,34 @@ class Awards extends CI_Controller { $data['bands'] = $bands; // Used for displaying selected band(s) in the table in the view if($this->input->method() === 'post') { - $postdata['qsl'] = $this->security->xss_clean($this->input->post('qsl')); - $postdata['lotw'] = $this->security->xss_clean($this->input->post('lotw')); - $postdata['eqsl'] = $this->security->xss_clean($this->input->post('eqsl')); - $postdata['qrz'] = $this->security->xss_clean($this->input->post('qrz')); - $postdata['worked'] = $this->security->xss_clean($this->input->post('worked')); - $postdata['confirmed'] = $this->security->xss_clean($this->input->post('confirmed')); - $postdata['notworked'] = $this->security->xss_clean($this->input->post('notworked')); + $postdata['qsl'] = ($this->input->post('qsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['lotw'] = ($this->input->post('lotw',true) ?? 0) == 0 ? NULL: 1; + $postdata['eqsl'] = ($this->input->post('eqsl',true) ?? 0) == 0 ? NULL: 1; + $postdata['qrz'] = ($this->input->post('qrz',true) ?? 0) == 0 ? NULL: 1; + $postdata['clublog'] = ($this->input->post('clublog',true) ?? 0) == 0 ? NULL: 1; $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); $postdata['sat'] = $this->security->xss_clean($this->input->post('sats')); $postdata['orbit'] = $this->security->xss_clean($this->input->post('orbits')); + $postdata['worked'] = ($this->input->post('worked',true) ?? 0) == 0 ? NULL: 1; + $postdata['confirmed'] = ($this->input->post('confirmed',true) ?? 0) == 0 ? NULL: 1; + $postdata['notworked'] = ($this->input->post('notworked',true) ?? 0) == 0 ? NULL: 1; + $postdata['band'] = $this->security->xss_clean($this->input->post('band')); } else { // Setting default values at first load of page $postdata['qsl'] = 1; $postdata['lotw'] = 1; - $postdata['eqsl'] = 0; - $postdata['qrz'] = 0; - $postdata['worked'] = 1; - $postdata['confirmed'] = 1; - $postdata['notworked'] = 1; + $postdata['eqsl'] = null; + $postdata['qrz'] = null; + $postdata['clublog'] = null; $postdata['band'] = 'All'; $postdata['mode'] = 'All'; $postdata['sat'] = 'All'; $postdata['orbit'] = 'All'; + $postdata['worked'] = 1; + $postdata['confirmed'] = 1; + $postdata['notworked'] = 1; + $postdata['band'] = 'All'; } if ($logbooks_locations_array) { @@ -2169,11 +2248,18 @@ class Awards extends CI_Controller { $data['wac_summary'] = null; } + $data['posted_band'] = $postdata['band']; + + $footerData = []; + $footerData['scripts'] = [ + 'assets/js/sections/wac.js', + ]; + // Render page $data['page_title'] = sprintf(__("Awards - %s"), __("Worked All Continents (WAC)")); $this->load->view('interface_assets/header', $data); $this->load->view('awards/wac/index'); - $this->load->view('interface_assets/footer'); + $this->load->view('interface_assets/footer', $footerData); } public function wae () { @@ -2212,17 +2298,14 @@ class Awards extends CI_Controller { $postdata['notworked'] = $this->input->post('notworked') == 0 ? NULL: 1; $postdata['includedeleted'] = $this->security->xss_clean($this->input->post('includedeleted')); - $postdata['Africa'] = $this->security->xss_clean($this->input->post('Africa')); - $postdata['Asia'] = $this->security->xss_clean($this->input->post('Asia')); - $postdata['Europe'] = $this->security->xss_clean($this->input->post('Europe')); - $postdata['NorthAmerica'] = $this->security->xss_clean($this->input->post('NorthAmerica')); - $postdata['SouthAmerica'] = $this->security->xss_clean($this->input->post('SouthAmerica')); - $postdata['Oceania'] = $this->security->xss_clean($this->input->post('Oceania')); - $postdata['Antarctica'] = $this->security->xss_clean($this->input->post('Antarctica')); $postdata['band'] = $this->security->xss_clean($this->input->post('band')); $postdata['mode'] = $this->security->xss_clean($this->input->post('mode')); $postdata['sat'] = $this->security->xss_clean($this->input->post('sats')); $postdata['orbit'] = $this->security->xss_clean($this->input->post('orbits')); + + $postdata['dateFrom'] = $this->security->xss_clean($this->input->post('dateFrom')); + $postdata['dateTo'] = $this->security->xss_clean($this->input->post('dateTo')); + } else { // Setting default values at first load of page $postdata['qsl'] = 1; $postdata['lotw'] = 1; @@ -2232,21 +2315,19 @@ class Awards extends CI_Controller { $postdata['confirmed'] = 1; $postdata['notworked'] = 1; $postdata['includedeleted'] = 0; - $postdata['Africa'] = 1; - $postdata['Asia'] = 1; - $postdata['Europe'] = 1; - $postdata['NorthAmerica'] = 1; - $postdata['SouthAmerica'] = 1; - $postdata['Oceania'] = 1; - $postdata['Antarctica'] = 1; $postdata['band'] = 'All'; $postdata['mode'] = 'All'; $postdata['sat'] = 'All'; $postdata['orbit'] = 'All'; + + $postdata['dateFrom'] = null; + $postdata['dateTo'] = null; } - $data['wae_array'] = $this->wae->get_wae_array($bands, $postdata); - $data['wae_summary'] = $this->wae->get_wae_summary($bands, $postdata); + $result = $this->wae->get_wae_array($bands, $postdata); + $data['wae_array'] = $result['matrix'] ?? null; + $data['wae_summary'] = $result['summary'] ?? null; + $data['posted_band'] = $postdata['band']; // Render Page $data['page_title'] = sprintf(__("Awards - %s"), __("WAE")); @@ -2271,7 +2352,7 @@ class Awards extends CI_Controller { public function wpx () { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/wpx.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/wpx.js")), + 'assets/js/sections/wpx.js', ]; $this->load->model('wpx'); @@ -2385,7 +2466,7 @@ class Awards extends CI_Controller { public function pl_polska() { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/award_pl_polska.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/award_pl_polska.js")), + 'assets/js/sections/award_pl_polska.js', 'assets/js/leaflet/L.Maidenhead.js', ]; diff --git a/application/controllers/Band.php b/application/controllers/Band.php index 3afe7ef72..181287cef 100644 --- a/application/controllers/Band.php +++ b/application/controllers/Band.php @@ -36,7 +36,7 @@ class Band extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/bandedges.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/bandedges.js")), + 'assets/js/sections/bandedges.js', ]; // Render Page diff --git a/application/controllers/Bandmap.php b/application/controllers/Bandmap.php index 15788d870..8336fab4f 100644 --- a/application/controllers/Bandmap.php +++ b/application/controllers/Bandmap.php @@ -10,27 +10,6 @@ class Bandmap extends CI_Controller { $this->load->model('bands'); } - function index() { - $this->load->model('cat'); - $this->load->model('bands'); - $data['radios'] = $this->cat->radios(true); - $data['bands'] = $this->bands->get_user_bands_for_qso_entry(); - - $footerData = []; - $footerData['scripts'] = [ - 'assets/js/highcharts/highcharts.js', - 'assets/js/highcharts/timeline.js', - 'assets/js/highcharts/exporting.js', - 'assets/js/highcharts/accessibility.js', - 'assets/js/sections/bandmap.js', - ]; - - $data['page_title'] = __("DXCluster"); - $this->load->view('interface_assets/header', $data); - $this->load->view('bandmap/index'); - $this->load->view('interface_assets/footer', $footerData); - } - function list() { $this->load->model('cat'); $this->load->model('bands'); @@ -41,13 +20,13 @@ class Bandmap extends CI_Controller { $footerData = []; $footerData['scripts'] = [ 'assets/js/moment.min.js', - 'assets/js/datetime-moment.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/datetime-moment.js")), - 'assets/js/cat.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/cat.js")), - 'assets/js/leaflet/leaflet.geodesic.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet/leaflet.geodesic.js")), - 'assets/js/leaflet.polylineDecorator.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet.polylineDecorator.js")), - 'assets/js/leaflet/L.Terminator.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet/L.Terminator.js")), - 'assets/js/sections/callstats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/callstats.js")), - 'assets/js/sections/bandmap_list.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/bandmap_list.js")), + 'assets/js/datetime-moment.js', + 'assets/js/cat.js', + 'assets/js/leaflet/leaflet.geodesic.js', + 'assets/js/leaflet.polylineDecorator.js', + 'assets/js/leaflet/L.Terminator.js', + 'assets/js/sections/callstats.js', + 'assets/js/sections/bandmap_list.js', ]; // Get Date format @@ -60,18 +39,20 @@ class Bandmap extends CI_Controller { } switch ($pageData['custom_date_format']) { - case "d/m/y": $pageData['custom_date_format'] = 'DD/MM/YY'; break; - case "d/m/Y": $pageData['custom_date_format'] = 'DD/MM/YYYY'; break; - case "m/d/y": $pageData['custom_date_format'] = 'MM/DD/YY'; break; - case "m/d/Y": $pageData['custom_date_format'] = 'MM/DD/YYYY'; break; - case "d.m.Y": $pageData['custom_date_format'] = 'DD.MM.YYYY'; break; - case "y/m/d": $pageData['custom_date_format'] = 'YY/MM/DD'; break; - case "Y-m-d": $pageData['custom_date_format'] = 'YYYY-MM-DD'; break; - case "M d, Y": $pageData['custom_date_format'] = 'MMM DD, YYYY'; break; - case "M d, y": $pageData['custom_date_format'] = 'MMM DD, YY'; break; - default: $pageData['custom_date_format'] = 'DD/MM/YYYY'; + case "d/m/y": $pageData['custom_date_format'] = 'DD/MM/YY'; break; + case "d/m/Y": $pageData['custom_date_format'] = 'DD/MM/YYYY'; break; + case "m/d/y": $pageData['custom_date_format'] = 'MM/DD/YY'; break; + case "m/d/Y": $pageData['custom_date_format'] = 'MM/DD/YYYY'; break; + case "d.m.Y": $pageData['custom_date_format'] = 'DD.MM.YYYY'; break; + case "y/m/d": $pageData['custom_date_format'] = 'YY/MM/DD'; break; + case "Y-m-d": $pageData['custom_date_format'] = 'YYYY-MM-DD'; break; + case "M d, Y": $pageData['custom_date_format'] = 'MMM DD, YYYY'; break; + case "M d, y": $pageData['custom_date_format'] = 'MMM DD, YY'; break; + default: $pageData['custom_date_format'] = 'DD/MM/YYYY'; } + $data['dxcluster_refresh_time'] = $this->config->item('dxcluster_refresh_time') ?? 30; + $data['page_title'] = __("DXCluster"); $this->load->view('interface_assets/header', $data); $this->load->view('bandmap/list',$pageData); diff --git a/application/controllers/Callstats.php b/application/controllers/Callstats.php index b813a60d1..e80cb1c68 100644 --- a/application/controllers/Callstats.php +++ b/application/controllers/Callstats.php @@ -74,7 +74,7 @@ class Callstats extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/callstats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/callstats.js")), + 'assets/js/sections/callstats.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Calltester.php b/application/controllers/Calltester.php index f1088151e..078bb9753 100644 --- a/application/controllers/Calltester.php +++ b/application/controllers/Calltester.php @@ -13,7 +13,6 @@ class Calltester extends CI_Controller { if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); } } - public function index() { set_time_limit(3600); @@ -26,7 +25,7 @@ class Calltester extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/calltester.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/calltester.js")) + 'assets/js/sections/calltester.js', ]; $data['page_title'] = __("Call Tester"); @@ -40,28 +39,30 @@ class Calltester extends CI_Controller { $de = $this->input->post('de', true); $compare = $this->input->post('compare', true); + $this->load->model('dxcc'); + + $qsos = $this->dxcc->getQsos($de); + if ($compare == "true") { - $result = $this->doClassCheck($de); - $result2 = $this->doDxccCheckModel($de); + $result = $this->doClassCheck($de, $qsos); + $result2 = $this->doDxccCheckModel($de, $qsos); return $this->compareDxccChecks($result, $result2); } - $result = $this->doClassCheck($de); + $result = $this->doClassCheck($de, $qsos); $this->loadView($result); } /* Uses DXCC Class. Much faster */ - function doClassCheck($de) { + function doClassCheck($de, $callarray) { ini_set('memory_limit', '-1'); $i = 0; $result = array(); - $callarray = $this->getQsos($de); - // Starting clock time in seconds $start_time = microtime(true); - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($callarray->result() as $call) { @@ -99,18 +100,18 @@ class Calltester extends CI_Controller { } /* Uses the normal dxcc lookup, which is slow */ - function doDxccCheckModel($de) { + function doDxccCheckModel($de, $callarray) { $i = 0; $result = array(); - $callarray = $this->getQsos($de); - // Starting clock time in seconds $start_time = microtime(true); + $this->load->model('dxcc'); + foreach ($callarray->result() as $call) { $i++; - $dxcc = $this->dxcc_lookup($call->col_call, $call->date); + $dxcc = $this->dxcc->dxcc_lookup($call->col_call, $call->date); $dxcc['adif'] = (isset($dxcc['adif'])) ? $dxcc['adif'] : 0; $dxcc['entity'] = (isset($dxcc['entity'])) ? $dxcc['entity'] : 0; @@ -183,70 +184,6 @@ class Calltester extends CI_Controller { $this->load->view('calltester/comparison_result', $comparisonData); } - function getQsos($station_id) { - ini_set('memory_limit', '-1'); - $sql = 'select distinct col_country, col_call, col_dxcc, date(col_time_on) date, station_profile.station_profile_name, col_primary_key - from ' . $this->config->item('table_name') . ' - join station_profile on ' . $this->config->item('table_name') . '.station_id = station_profile.station_id - where station_profile.user_id = ?'; - $params[] = $this->session->userdata('user_id'); - - if ($station_id && is_numeric($station_id)) { - $sql .= ' and ' . $this->config->item('table_name') . '.station_id = ?'; - $params[] = $station_id; - } - - $sql .= ' order by station_profile.station_profile_name asc, date desc'; - - $query = $this->db->query($sql, $params); - - return $query; - } - - function array_to_table($table) { - echo ' '; - - echo ''; - - // Table header - foreach ($table[0] as $key=>$value) { - echo ""; - } - - // Table body - foreach ($table as $value) { - echo ""; - foreach ($value as $val) { - echo ""; - } - echo ""; - } - echo "
".$key."
".$val."
"; - } - function csv() { set_time_limit(3600); @@ -256,19 +193,21 @@ class Calltester extends CI_Controller { $file = 'uploads/calls.csv'; $handle = fopen($file,"r"); - $data = fgetcsv($handle,1000,","); // Skips firsts line, usually that is the header - $data = fgetcsv($handle,1000,","); + $data = fgetcsv($handle,1000,",",'"',"\\"); // Skips firsts line, usually that is the header + $data = fgetcsv($handle,1000,",",'"',"\\"); $result = array(); $i = 0; + $this->load->model('dxcc'); + do { if ($data[0]) { // COL_CALL,COL_DXCC,COL_TIME_ON $i++; - $dxcc = $this->dxcc_lookup($data[0], $data[2]); + $dxcc = $this->dxcc->dxcc_lookup($data[0], $data[2]); $dxcc['adif'] = (isset($dxcc['adif'])) ? $dxcc['adif'] : 0; $dxcc['entity'] = (isset($dxcc['entity'])) ? $dxcc['entity'] : 0; @@ -285,7 +224,7 @@ class Calltester extends CI_Controller { ); } } - } while ($data = fgetcsv($handle,1000,",")); + } while ($data = fgetcsv($handle,1000,",",'"',"\\")); // End clock time in seconds $end_time = microtime(true); @@ -293,13 +232,16 @@ class Calltester extends CI_Controller { // Calculate script execution time $execution_time = ($end_time - $start_time); - echo " Execution time of script = ".$execution_time." sec
"; - echo $i . " calls tested.
"; - $count = 0; + $viewData = []; + $viewData['result'] = $result; + $viewData['execution_time'] = $execution_time; + $viewData['calls_tested'] = $i; + + $viewData['page_title'] = __("CSV Call Tester"); + $this->load->view('interface_assets/header', $viewData); + $this->load->view('calltester/call'); + $this->load->view('interface_assets/footer'); - if ($result) { - $this->array_to_table($result); - } } /* @@ -314,19 +256,21 @@ class Calltester extends CI_Controller { $file = 'uploads/calls.csv'; $handle = fopen($file,"r"); - $data = fgetcsv($handle,1000,","); // Skips firsts line, usually that is the header - $data = fgetcsv($handle,1000,","); + $data = fgetcsv($handle,1000,",",'"',"\\"); // Skips firsts line, usually that is the header + $data = fgetcsv($handle,1000,",",'"',"\\"); $result = array(); $i = 0; + $this->load->model('dxcc'); + do { if ($data[0]) { // COL_CALL,COL_DXCC,COL_TIME_ON $i++; - $dxcc = $this->check_dxcc_table($data[0], $data[2]); + $dxcc = $this->dxcc->check_dxcc_table($data[0], $data[2]); $data[1] = $data[1] == "NULL" ? 0 : $data[1]; @@ -340,7 +284,7 @@ class Calltester extends CI_Controller { ); } } - } while ($data = fgetcsv($handle,1000,",")); + } while ($data = fgetcsv($handle,1000,",",'"',"\\")); // End clock time in seconds $end_time = microtime(true); @@ -348,13 +292,15 @@ class Calltester extends CI_Controller { // Calculate script execution time $execution_time = ($end_time - $start_time); - echo " Execution time of script = ".$execution_time." sec
"; - echo $i . " calls tested.
"; - $count = 0; + $viewData = []; + $viewData['result'] = $result; + $viewData['execution_time'] = $execution_time; + $viewData['calls_tested'] = $i; - if ($result) { - $this->array_to_table($result); - } + $viewData['page_title'] = __("CSV Call Tester"); + $this->load->view('interface_assets/header', $viewData); + $this->load->view('calltester/call'); + $this->load->view('interface_assets/footer'); } function call() { @@ -364,147 +310,147 @@ class Calltester extends CI_Controller { 'Callsign' => 'WJ7R/C6A', 'Country' => 'Bahamas', 'Adif' => 60, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'WJ7R/KH6', 'Country' => 'Hawaii', 'Adif' => 110, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'WJ7R/C6', 'Country' => 'Bahamas', 'Adif' => 60, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VE3EY/VP9', 'Country' => 'Bermuda', 'Adif' => 64, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2MDG', 'Country' => 'Montserrat', 'Adif' => 96, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2EY', 'Country' => 'Anguilla', 'Adif' => 12, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2VI', 'Country' => 'British Virgin Islands.', 'Adif' => 65, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP2V/AA7V', 'Country' => 'British Virgin Islands', 'Adif' => 65, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'W8LR/R', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'SO1FH', 'Country' => 'Poland', 'Adif' => 269, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KZ1H/PP', 'Country' => 'Brazil', 'Adif' => 108, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'K1KW/AM', 'Country' => 'None', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'K1KW/MM', 'Country' => 'None', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/P', 'Country' => 'Iceland', 'Adif' => 242, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'OZ1ALS/A', 'Country' => 'Denmark', 'Adif' => 221, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LA1K', 'Country' => 'Norway', 'Adif' => 266, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'K1KW/M', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/M', 'Country' => 'Iceland', 'Adif' => 242, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/MM', 'Country' => 'None', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'TF/DL2NWK/P', 'Country' => 'Iceland', 'Adif' => 242, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '2M0SQL/P', 'Country' => 'Scotland', 'Adif' => 279, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -518,42 +464,42 @@ class Calltester extends CI_Controller { 'Callsign' => 'RV0AL/0/P', 'Country' => 'Asiatic Russia', 'Adif' => 15, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'OH/DJ1YFK', 'Country' => 'Finland', 'Adif' => 224, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'N6TR/7', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KH0CW', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'R2FM/P', 'Country' => 'kaliningrad', 'Adif' => 126, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'R2FM', 'Country' => 'kaliningrad', 'Adif' => 126, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -581,56 +527,56 @@ class Calltester extends CI_Controller { 'Callsign' => 'CX/PR8KW', 'Country' => 'Uruguay', 'Adif' => 144, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IQ3MV/LH', 'Country' => 'Italy', 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LA1K/QRP', 'Country' => 'Norway', 'Adif' => 266, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LA1K/LGT', 'Country' => 'Norway', 'Adif' => 266, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'SM1K/LH', 'Country' => 'Sweden', 'Adif' => 284, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KG4W', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KG4WW', 'Country' => 'Guantanamo Bay', 'Adif' => 105, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KG4WWW', 'Country' => 'United States Of America', 'Adif' => 291, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -658,7 +604,7 @@ class Calltester extends CI_Controller { 'Callsign' => 'PT7BZ/PY0F', 'Country' => 'Fernando De Noronha', 'Adif' => 56, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -686,7 +632,7 @@ class Calltester extends CI_Controller { 'Callsign' => 'G4SGX/6Y', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -707,7 +653,7 @@ class Calltester extends CI_Controller { 'Callsign' => 'N2JBY/4X', 'Country' => 'Israel', 'Adif' => 336, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -721,98 +667,98 @@ class Calltester extends CI_Controller { 'Callsign' => 'HB/DK9TA', 'Country' => 'Switzerland', 'Adif' => 287, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'OE5DI/500', 'Country' => 'Austria', 'Adif' => 206, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'YI6SUL', 'Country' => 'Invalid', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '3DA8/DF8LY/P', 'Country' => 'Kingdom Of Eswatini', 'Adif' => 468, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '3X/DL5DAB', 'Country' => 'Invalid', 'Adif' => 0, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '3X/DL5DA', 'Country' => 'Guinea', 'Adif' => 107, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'KN5H/6YA', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'DL2AAZ/6Y5', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '6Y5WJ', 'Country' => 'Jamaica', 'Adif' => 82, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'R20RRC/0', 'Country' => 'Asiatic Russia', 'Adif' => 15, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'G4KJV/2K/P', 'Country' => 'England', 'Adif' => 223, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP8ADR/40', 'Country' => 'Falkland Islands', 'Adif' => 141, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VP8ADR/400', 'Country' => 'Falkland Islands', 'Adif' => 141, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'LU7CC/E', 'Country' => 'Argentina', 'Adif' => 100, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( @@ -826,105 +772,105 @@ class Calltester extends CI_Controller { 'Callsign' => 'A6050Y/5', 'Country' => 'United Arab Emirates', 'Adif' => 391, - 'Date' => $date = date('Y-m-d', time()) + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '9H5G/C6A', - 'Country' => 'Bahamas', - 'Adif' => 60, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Bahamas', + 'Adif' => 60, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'A45XR/0', - 'Country' => 'Oman', - 'Adif' => 370, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Oman', + 'Adif' => 370, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'RAEM', - 'Country' => 'Asiatic Russia', - 'Adif' => 54, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Asiatic Russia', + 'Adif' => 54, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'DJ1YFK/VE1', - 'Country' => 'Canada', - 'Adif' => 1, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Canada', + 'Adif' => 1, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'HD1QRC90', - 'Country' => 'Ecuador', - 'Adif' => 120, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Ecuador', + 'Adif' => 120, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'PJ6A', - 'Country' => 'Saba & St. Eustatius', - 'Adif' => 519, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Saba & St. Eustatius', + 'Adif' => 519, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'PJ4D', - 'Country' => 'Bonaire', - 'Adif' => 520, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Bonaire', + 'Adif' => 520, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => '4X50CZ/SK', - 'Country' => 'Israel', - 'Adif' => 336, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Israel', + 'Adif' => 336, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'RK3BY/0', - 'Country' => 'Asiatic Russia', - 'Adif' => 15, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Asiatic Russia', + 'Adif' => 15, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IU0KNS/ERA', - 'Country' => 'Italy', - 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Italy', + 'Adif' => 248, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IU8BPS/AWD', - 'Country' => 'Italy', - 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Italy', + 'Adif' => 248, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'IK7XNF/GIRO', - 'Country' => 'Italy', - 'Adif' => 248, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Italy', + 'Adif' => 248, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VJ5A', - 'Country' => 'Australia', - 'Adif' => 150, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Australia', + 'Adif' => 150, + 'Date' => date('Y-m-d', time()) ); $testarray[] = array( 'Callsign' => 'VL2IG', - 'Country' => 'Australia', - 'Adif' => 150, - 'Date' => $date = date('Y-m-d', time()) + 'Country' => 'Australia', + 'Adif' => 150, + 'Date' => date('Y-m-d', time()) ); set_time_limit(3600); @@ -937,7 +883,7 @@ class Calltester extends CI_Controller { $i = 0; - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($testarray as $call) { $i++; @@ -974,339 +920,4 @@ class Calltester extends CI_Controller { $this->load->view('interface_assets/footer'); } - public function dxcc_lookup($call, $date) { - - $date = date("Y-m-d", strtotime($date)); - $csadditions = '/^X$|^D$|^T$|^P$|^R$|^B$|^A$|^M$|^LH$|^L$|^J$|^SK$/'; - - $dxcc_exceptions = $this->db->select('`entity`, `adif`, `cqz`,`cont`,`long`,`lat`') - ->where('`call`', $call) - ->where('(start <= ', $date) - ->or_where('start is null)', NULL, false) - ->where('(end >= ', $date) - ->or_where('end is null)', NULL, false) - ->get('dxcc_exceptions'); - if ($dxcc_exceptions->num_rows() > 0) { - $row = $dxcc_exceptions->row_array(); - return $row; - } else { - - if (preg_match('/(^KG4)[A-Z09]{3}/', $call)) { // KG4/ and KG4 5 char calls are Guantanamo Bay. If 4 or 6 char, it is USA - $call = "K"; - } elseif (preg_match('/(^OH\/)|(\/OH[1-9]?$)/', $call)) { # non-Aland prefix! - $call = "OH"; # make callsign OH = finland - } elseif (preg_match('/(^CX\/)|(\/CX[1-9]?$)/', $call)) { # non-Antarctica prefix! - $call = "CX"; # make callsign CX = Uruguay - } elseif (preg_match('/(^3D2R)|(^3D2.+\/R)/', $call)) { # seems to be from Rotuma - $call = "3D2/R"; # will match with Rotuma - } elseif (preg_match('/^3D2C/', $call)) { # seems to be from Conway Reef - $call = "3D2/C"; # will match with Conway - } elseif (preg_match('/(^LZ\/)|(\/LZ[1-9]?$)/', $call)) { # LZ/ is LZ0 by DXCC but this is VP8h - $call = "LZ"; - } elseif (preg_match('/(^KG4)[A-Z09]{2}/', $call)) { - $call = "KG4"; - } elseif (preg_match('/(^KG4)[A-Z09]{1}/', $call)) { - $call = "K"; - } elseif (preg_match('/\w\/\w/', $call)) { - if (preg_match_all('/^((\d|[A-Z])+\/)?((\d|[A-Z]){3,})(\/(\d|[A-Z])+)?(\/(\d|[A-Z])+)?$/', $call, $matches)) { - $prefix = $matches[1][0]; - $callsign = $matches[3][0]; - $suffix = $matches[5][0]; - if ($prefix) { - $prefix = substr($prefix, 0, -1); # Remove the / at the end - } - if ($suffix) { - $suffix = substr($suffix, 1); # Remove the / at the beginning - }; - if (preg_match($csadditions, $suffix)) { - if ($prefix) { - $call = $prefix; - } else { - $call = $callsign; - } - } else { - $result = $this->wpx($call, 1); # use the wpx prefix instead - if ($result == '') { - $row['adif'] = 0; - $row['cont'] = ''; - $row['entity'] = '- NONE -'; - $row['ituz'] = 0; - $row['cqz'] = 0; - $row['long'] = '0'; - $row['lat'] = '0'; - return $row; - } else { - $call = $result . "AA"; - } - } - } - } - - $len = strlen($call); - $dxcc_array = []; - - // Fetch all candidates in one shot instead of looping - $dxcc_result = $this->db->query("SELECT `dxcc_prefixes`.`record`, `dxcc_prefixes`.`call`, `dxcc_prefixes`.`entity`, `dxcc_prefixes`.`adif`, `dxcc_prefixes`.`cqz`, `dxcc_entities`.`ituz`, `dxcc_prefixes`.`cont`, `dxcc_prefixes`.`long`, `dxcc_prefixes`.`lat`, `dxcc_prefixes`.`start`, `dxcc_prefixes`.`end` - FROM `dxcc_prefixes` - LEFT JOIN `dxcc_entities` ON `dxcc_entities`.`adif` = `dxcc_prefixes`.`adif` - WHERE ? like concat(`call`,'%') - and `dxcc_prefixes`.`call` like ? - AND (`dxcc_prefixes`.`start` <= ? OR `dxcc_prefixes`.`start` is null) - AND (`dxcc_prefixes`.`end` >= ? OR `dxcc_prefixes`.`end` is null) order by length(`call`) desc limit 1", array($call, substr($call, 0, 1) . '%', $date, $date)); - - foreach ($dxcc_result->result_array() as $row) { - $dxcc_array[$row['call']] = $row; - } - - // query the table, removing a character from the right until a match - for ($i = $len; $i > 0; $i--) { - //printf("searching for %s\n", substr($call, 0, $i)); - if (array_key_exists(substr($call, 0, $i), $dxcc_array)) { - $row = $dxcc_array[substr($call, 0, $i)]; - // $row = $dxcc_result->row_array(); - return $row; - } - } - } - - return array( - 'adif' => 0, - 'cqz' => 0, - 'ituz' => 0, - 'long' => '', - 'lat' => '', - 'entity' => 'None', - ); - } - - function wpx($testcall, $i) { - $prefix = ''; - $a = ''; - $b = ''; - $c = ''; - - $lidadditions = '/^QRP$|^LGT$/'; - $csadditions = '/^X$|^D$|^T$|^P$|^R$|^B$|^A$|^M$|^LH$|^L$|^J$|^SK$/'; - $noneadditions = '/^MM$|^AM$/'; - - # First check if the call is in the proper format, A/B/C where A and C - # are optional (prefix of guest country and P, MM, AM etc) and B is the - # callsign. Only letters, figures and "/" is accepted, no further check if the - # callsign "makes sense". - # 23.Apr.06: Added another "/X" to the regex, for calls like RV0AL/0/P - # as used by RDA-DXpeditions.... - - if (preg_match_all('/^((\d|[A-Z])+\/)?((\d|[A-Z]){3,})(\/(\d|[A-Z])+)?(\/(\d|[A-Z])+)?$/', $testcall, $matches)) { - - # Now $1 holds A (incl /), $3 holds the callsign B and $5 has C - # We save them to $a, $b and $c respectively to ensure they won't get - # lost in further Regex evaluations. - $a = $matches[1][0]; - $b = $matches[3][0]; - $c = $matches[5][0]; - - if ($a) { - $a = substr($a, 0, -1); # Remove the / at the end - } - if ($c) { - $c = substr($c, 1); # Remove the / at the beginning - }; - - # In some cases when there is no part A but B and C, and C is longer than 2 - # letters, it happens that $a and $b get the values that $b and $c should - # have. This often happens with liddish callsign-additions like /QRP and - # /LGT, but also with calls like DJ1YFK/KP5. ~/.yfklog has a line called - # "lidadditions", which has QRP and LGT as defaults. This sorts out half of - # the problem, but not calls like DJ1YFK/KH5. This is tested in a second - # try: $a looks like a call (.\d[A-Z]) and $b doesn't (.\d), they are - # swapped. This still does not properly handle calls like DJ1YFK/KH7K where - # only the OP's experience says that it's DJ1YFK on KH7K. - if (!$c && $a && $b) { # $a and $b exist, no $c - if (preg_match($lidadditions, $b)) { # check if $b is a lid-addition - $b = $a; - $a = null; # $a goes to $b, delete lid-add - } elseif ((preg_match('/\d[A-Z]+$/', $a)) && (preg_match('/\d$/', $b) || preg_match('/^[A-Z]\d[A-Z]$/', $b))) { # check for call in $a - $temp = $b; - $b = $a; - $a = $temp; - } - } - - # *** Added later *** The check didn't make sure that the callsign - # contains a letter. there are letter-only callsigns like RAEM, but not - # figure-only calls. - - if (preg_match('/^[0-9]+$/', $b)) { # Callsign only consists of numbers. Bad! - return null; # exit, undef - } - - # Depending on these values we have to determine the prefix. - # Following cases are possible: - # - # 1. $a and $c undef --> only callsign, subcases - # 1.1 $b contains a number -> everything from start to number - # 1.2 $b contains no number -> first two letters plus 0 - # 2. $a undef, subcases: - # 2.1 $c is only a number -> $a with changed number - # 2.2 $c is /P,/M,/MM,/AM -> 1. - # 2.3 $c is something else and will be interpreted as a Prefix - # 3. $a is defined, will be taken as PFX, regardless of $c - - if (($a == null) && ($c == null)) { # Case 1 - if (preg_match('/\d/', $b)) { # Case 1.1, contains number - preg_match('/(.+\d)[A-Z]*/', $b, $matches); # Prefix is all but the last - $prefix = $matches[1]; # Letters - } else { # Case 1.2, no number - $prefix = substr($b, 0, 2) . "0"; # first two + 0 - } - } elseif (($a == null) && (isset($c))) { # Case 2, CALL/X - if (preg_match('/^(\d)/', $c)) { # Case 2.1, number - preg_match('/(.+\d)[A-Z]*/', $b, $matches); # regular Prefix in $1 - # Here we need to find out how many digits there are in the - # prefix, because for example A45XR/0 is A40. If there are 2 - # numbers, the first is not deleted. If course in exotic cases - # like N66A/7 -> N7 this brings the wrong result of N67, but I - # think that's rather irrelevant cos such calls rarely appear - # and if they do, it's very unlikely for them to have a number - # attached. You can still edit it by hand anyway.. - if (preg_match('/^([A-Z]\d{2,})$/', $matches[1])) { # e.g. A45 $c = 0 - $prefix = $matches[1] . $c; # -> A40 - } else { # Otherwise cut all numbers - preg_match('/(.*[A-Z])\d+/', $matches[1], $match); # Prefix w/o number in $1 - $prefix = $match[1] . $c; # Add attached number - } - } elseif (preg_match($csadditions, $c)) { - preg_match('/(.+\d)[A-Z]*/', $b, $matches); # Known attachment -> like Case 1.1 - $prefix = $matches[1]; - } elseif (preg_match($noneadditions, $c)) { - return ''; - } elseif (preg_match('/^\d\d+$/', $c)) { # more than 2 numbers -> ignore - preg_match('/(.+\d)[A-Z]* /', $b, $matches); # see above - $prefix = $matches[1][0]; - } else { # Must be a Prefix! - if (preg_match('/\d$/', $c)) { # ends in number -> good prefix - $prefix = $c; - } else { # Add Zero at the end - $prefix = $c . "0"; - } - } - } elseif (($a) && (preg_match($noneadditions, $c))) { # Case 2.1, X/CALL/X ie TF/DL2NWK/MM - DXCC none - return ''; - } elseif ($a) { - # $a contains the prefix we want - if (preg_match('/\d$/', $a)) { # ends in number -> good prefix - $prefix = $a; - } else { # add zero if no number - $prefix = $a . "0"; - } - } - # In very rare cases (right now I can only think of KH5K and KH7K and FRxG/T - # etc), the prefix is wrong, for example KH5K/DJ1YFK would be KH5K0. In this - # case, the superfluous part will be cropped. Since this, however, changes the - # DXCC of the prefix, this will NOT happen when invoked from with an - # extra parameter $_[1]; this will happen when invoking it from &dxcc. - - if (preg_match('/(\w+\d)[A-Z]+\d/', $prefix, $matches) && $i == null) { - $prefix = $matches[1][0]; - } - return $prefix; - } else { - return ''; - } - } - - /* - * Check the dxcc_prefixes table and return (dxcc, country) - */ - public function check_dxcc_table($call, $date) { - - $date = date("Y-m-d", strtotime($date)); - $csadditions = '/^X$|^D$|^T$|^P$|^R$|^B$|^A$|^M$|^LH$|^L$|^J$|^SK$/'; - - $dxcc_exceptions = $this->db->select('`entity`, `adif`, `cqz`, `cont`') - ->where('`call`', $call) - ->where('(start <= ', $date) - ->or_where('start is null)', NULL, false) - ->where('(end >= ', $date) - ->or_where('end is null)', NULL, false) - ->get('dxcc_exceptions'); - - if ($dxcc_exceptions->num_rows() > 0) { - $row = $dxcc_exceptions->row_array(); - return array($row['adif'], $row['entity'], $row['cqz'], $row['cont']); - } - if (preg_match('/(^KG4)[A-Z09]{3}/', $call)) { // KG4/ and KG4 5 char calls are Guantanamo Bay. If 4 or 6 char, it is USA - $call = "K"; - } elseif (preg_match('/(^OH\/)|(\/OH[1-9]?$)/', $call)) { # non-Aland prefix! - $call = "OH"; # make callsign OH = finland - } elseif (preg_match('/(^CX\/)|(\/CX[1-9]?$)/', $call)) { # non-Antarctica prefix! - $call = "CX"; # make callsign CX = Uruguay - } elseif (preg_match('/(^3D2R)|(^3D2.+\/R)/', $call)) { # seems to be from Rotuma - $call = "3D2/R"; # will match with Rotuma - } elseif (preg_match('/^3D2C/', $call)) { # seems to be from Conway Reef - $call = "3D2/C"; # will match with Conway - } elseif (preg_match('/(^LZ\/)|(\/LZ[1-9]?$)/', $call)) { # LZ/ is LZ0 by DXCC but this is VP8h - $call = "LZ"; - } elseif (preg_match('/(^KG4)[A-Z09]{2}/', $call)) { - $call = "KG4"; - } elseif (preg_match('/(^KG4)[A-Z09]{1}/', $call)) { - $call = "K"; - } elseif (preg_match('/\w\/\w/', $call)) { - if (preg_match_all('/^((\d|[A-Z])+\/)?((\d|[A-Z]){3,})(\/(\d|[A-Z])+)?(\/(\d|[A-Z])+)?$/', $call, $matches)) { - $prefix = $matches[1][0]; - $callsign = $matches[3][0]; - $suffix = $matches[5][0]; - if ($prefix) { - $prefix = substr($prefix, 0, -1); # Remove the / at the end - } - if ($suffix) { - $suffix = substr($suffix, 1); # Remove the / at the beginning - }; - if (preg_match($csadditions, $suffix)) { - if ($prefix) { - $call = $prefix; - } else { - $call = $callsign; - } - } else { - $result = $this->wpx($call, 1); # use the wpx prefix instead - if ($result == '') { - $row['adif'] = 0; - $row['entity'] = '- NONE -'; - $row['cqz'] = 0; - $row['cont'] = ''; - return array($row['adif'], $row['entity'], $row['cqz'], $row['cont']); - } else { - $call = $result . "AA"; - } - } - } - } - - $len = strlen($call); - $dxcc_array = []; - // Fetch all candidates in one shot instead of looping - $dxcc_result = $this->db->query("SELECT `call`, `entity`, `adif`, `cqz`, `cont` - FROM `dxcc_prefixes` - WHERE ? like concat(`call`,'%') - and `call` like ? - AND (`start` <= ? OR start is null) - AND (`end` >= ? OR end is null) order by length(`call`) desc limit 1", array($call, substr($call, 0, 1) . '%', $date, $date)); - - foreach ($dxcc_result->result_array() as $row) { - $dxcc_array[$row['call']] = $row; - } - - // query the table, removing a character from the right until a match - for ($i = $len; $i > 0; $i--) { - //printf("searching for %s\n", substr($call, 0, $i)); - if (array_key_exists(substr($call, 0, $i), $dxcc_array)) { - $row = $dxcc_array[substr($call, 0, $i)]; - // $row = $dxcc_result->row_array(); - return array($row['adif'], $row['entity'], $row['cqz'], $row['cont']); - } - } - - return array("Not Found", "Not Found"); - } } diff --git a/application/controllers/Club.php b/application/controllers/Club.php index eb8daf0e6..b736e2114 100644 --- a/application/controllers/Club.php +++ b/application/controllers/Club.php @@ -8,7 +8,7 @@ class Club extends CI_Controller * 3 - Member * * These permission levels are independent of the codeigniter permission levels and managed in the club_permissions table! - * https://github.com/wavelog/wavelog/wiki/Clubstations + * https://docs.wavelog.org/admin-guide/administration/clubstations/ */ /** @@ -61,7 +61,7 @@ class Club extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/club_permissions.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/club_permissions.js")), + 'assets/js/sections/club_permissions.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Clublog.php b/application/controllers/Clublog.php index 47dab8ebb..163d32b9c 100644 --- a/application/controllers/Clublog.php +++ b/application/controllers/Clublog.php @@ -96,7 +96,7 @@ class Clublog extends CI_Controller $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/clublog.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/clublog.js")), + 'assets/js/sections/clublog.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Contestcalendar.php b/application/controllers/Contestcalendar.php index 6979a21af..9a9e1ce9a 100644 --- a/application/controllers/Contestcalendar.php +++ b/application/controllers/Contestcalendar.php @@ -36,7 +36,7 @@ class Contestcalendar extends CI_Controller { } $footerData['scripts'] = [ - 'assets/js/sections/dxcalendar.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/dxcalendar.js")) + 'assets/js/sections/dxcalendar.js' ]; } else { $data['contestsToday']=''; diff --git a/application/controllers/Contesting.php b/application/controllers/Contesting.php index 63ebe9c47..94e44ed13 100644 --- a/application/controllers/Contesting.php +++ b/application/controllers/Contesting.php @@ -45,7 +45,7 @@ class Contesting extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/contesting.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/contesting.js")), + 'assets/js/sections/contesting.js', ]; $this->load->library('form_validation'); @@ -121,7 +121,7 @@ class Contesting extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/contesting.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/contesting.js")), + 'assets/js/sections/contesting.js', ]; // Render Page @@ -143,7 +143,7 @@ class Contesting extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/contesting.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/contesting.js")), + 'assets/js/sections/contesting.js', ]; $this->form_validation->set_rules('name', 'Contest Name', 'required'); diff --git a/application/controllers/Cron.php b/application/controllers/Cron.php index 20a489f13..d318048bc 100644 --- a/application/controllers/Cron.php +++ b/application/controllers/Cron.php @@ -31,8 +31,8 @@ class cron extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/cronstrue.min.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/cronstrue.min.js")), - 'assets/js/sections/cron.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cron.js")) + 'assets/js/cronstrue.min.js', + 'assets/js/sections/cron.js' ]; $data['page_title'] = __("Cron Manager"); diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php index 02bab2fb5..a7a04fd89 100644 --- a/application/controllers/Dashboard.php +++ b/application/controllers/Dashboard.php @@ -160,7 +160,7 @@ class Dashboard extends CI_Controller { $dxcc = $this->dxcc->list_current(); $footerData['scripts'] = [ - 'assets/js/sections/dashboard.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/dashboard.js")), + 'assets/js/sections/dashboard.js', ]; // First Login Wizard @@ -189,7 +189,7 @@ class Dashboard extends CI_Controller { $this->load->model('dxcc'); $viewdata['dxcc_list'] = $this->dxcc->list(); - $footerData['scripts'][] = 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")); + $footerData['scripts'][] = 'assets/js/bootstrap-multiselect.js'; $this->load->library('form_validation'); diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index 175c766a2..825342704 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -109,10 +109,10 @@ class Debug extends CI_Controller $cache_info = $this->Debug_model->get_cache_info(); $data['cache_available_adapters'] = $cache_info['adapters']; $data['cache_path'] = $cache_info['config']['cache_path'] ?: 'application/cache'; - $data['cache_adapter'] = ucfirst($cache_info['config']['cache_adapter'] ?? 'file'); - $data['cache_backup'] = ucfirst($cache_info['config']['cache_backup'] ?? 'file'); + $data['cache_adapter'] = strtolower($cache_info['config']['cache_adapter'] ?? 'file'); + $data['cache_backup'] = strtolower($cache_info['config']['cache_backup'] ?? 'file'); $data['cache_key_prefix'] = $cache_info['config']['cache_key_prefix'] ?: __("(empty)"); - $data['active_adapter'] = ucfirst($cache_info['active']['adapter'] ?? ($cache_info['config']['cache_adapter'] ?? 'file')); + $data['active_adapter'] = strtolower($cache_info['active']['adapter'] ?? ($cache_info['config']['cache_adapter'] ?? 'file')); $data['using_backup'] = !empty($cache_info['active']['using_backup']); $data['details_cache_size'] = $cache_info['details']['size'] ?? '0 B'; $data['details_cache_keys_count'] = $cache_info['details']['keys_count'] ?? 0; diff --git a/application/controllers/Distances.php b/application/controllers/Distances.php index af4957501..7de8d6fd4 100644 --- a/application/controllers/Distances.php +++ b/application/controllers/Distances.php @@ -80,7 +80,7 @@ class Distances extends CI_Controller { // Render Page $data['page_title'] = "Log View - " . $distance; - $data['filter'] = __("QSOs with") . " " . $distance . " " . __("and band"). " " . $band. __("and propagation"). " " . $propagation; + $data['filter'] = __("QSOs with") . " " . $distance . " " . __("and band"). " " . $band. " " . __("and propagation"). " " . $propagation; $this->load->view('awards/details', $data); } } diff --git a/application/controllers/Dxcalendar.php b/application/controllers/Dxcalendar.php index ea024e577..cdb51a0d4 100644 --- a/application/controllers/Dxcalendar.php +++ b/application/controllers/Dxcalendar.php @@ -18,7 +18,7 @@ class Dxcalendar extends CI_Controller { 'backup' => $this->config->item('cache_backup') ?? 'file', 'key_prefix' => $this->config->item('cache_key_prefix') ?? '' ]); - $rssUrl = 'http://www.ng3k.com/adxo.xml'; + $rssUrl = 'https://www.ng3k.com/adxo.xml'; if (!$rssRawData = $this->cache->get('RssRawDxCal')) { $rssRawData = file_get_contents($rssUrl, true); $this->cache->save('RssRawDxCal', $rssRawData, (60*60*12)); @@ -39,7 +39,7 @@ class Dxcalendar extends CI_Controller { $custom_date_format = $this->config->item('qso_date_format'); } - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($rssdata->channel->item as $item) { $dxped=(object)[]; $title = explode('--', $item->title); @@ -85,7 +85,7 @@ class Dxcalendar extends CI_Controller { $footerData['scripts'] = [ - 'assets/js/sections/dxcalendar.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/dxcalendar.js")) + 'assets/js/sections/dxcalendar.js' ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Dxcluster.php b/application/controllers/Dxcluster.php index 8d42eb6b2..a4dd909f9 100644 --- a/application/controllers/Dxcluster.php +++ b/application/controllers/Dxcluster.php @@ -66,7 +66,7 @@ class Dxcluster extends CI_Controller { // TODO: Is this used anywhere? If not, remove it! public function call($call) { $date = date('Y-m-d', time()); - $dxccobj = new Dxcc($date); + $dxccobj = new Dxcc(); $dxcc = $dxccobj->dxcc_lookup($call, $date); diff --git a/application/controllers/Generic_qsl.php b/application/controllers/Generic_qsl.php index 37198bdd1..ba773ef6f 100644 --- a/application/controllers/Generic_qsl.php +++ b/application/controllers/Generic_qsl.php @@ -21,8 +21,8 @@ class Generic_qsl extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), - 'assets/js/sections/qsl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qsl.js")), + 'assets/js/bootstrap-multiselect.js', + 'assets/js/sections/qsl.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Gridmap.php b/application/controllers/Gridmap.php index 9beae0b32..30df7a4e1 100644 --- a/application/controllers/Gridmap.php +++ b/application/controllers/Gridmap.php @@ -44,11 +44,11 @@ class Gridmap extends CI_Controller { $footerData = []; $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', - 'assets/js/sections/gridmap.js?', + 'assets/js/sections/gridmap.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/sections/itumap_geojson.js', + 'assets/js/sections/cqmap_geojson.js', + 'assets/js/bootstrap-multiselect.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Hamsat.php b/application/controllers/Hamsat.php index 306ec89e0..9ccfb4e77 100644 --- a/application/controllers/Hamsat.php +++ b/application/controllers/Hamsat.php @@ -15,7 +15,7 @@ class Hamsat extends CI_Controller { public function index() { $data['scripts'] = [ - 'assets/js/sections/hamsat.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/hamsat.js")), + 'assets/js/sections/hamsat.js', 'assets/js/moment.min.js', 'assets/js/datetime-moment.js' ]; diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 395953d86..d7ca6ee6a 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -146,10 +146,11 @@ class Labels extends CI_Controller { $qslmsg = $this->input->post('qslmsg') === "true" ? 1 : 0; $tnxmsg = $this->input->post('tnxmsg') === "true" ? 1 : 0; $reference = $this->input->post('reference') == "true" ? 1 : 0; + $mycall = $this->input->post('mycall') == "true" ? 1 : 0; $this->load->model('labels_model'); $result = $this->labels_model->export_printrequestedids($ids); - $this->prepareLabel($result, true, $offset, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->prepareLabel($result, true, $offset, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); } public function print($station_id) { @@ -160,22 +161,22 @@ class Labels extends CI_Controller { $qslmsg = xss_clean($this->input->post('qslmsg') ?? 0); $tnxmsg = xss_clean($this->input->post('tnxmsg') ?? 0); $reference = xss_clean($this->input->post('reference') ?? 0); + $mycall = $this->input->post('mycall') ?? 0; $this->load->model('stations'); if ($this->stations->check_station_is_accessible($station_id)) { $this->load->model('labels_model'); $result = $this->labels_model->export_printrequested($clean_id); - $this->prepareLabel($result, false, $offset, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->prepareLabel($result, false, $offset, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); } else { redirect('labels'); } } - function prepareLabel($qsos, $jscall = false, $offset = 1, $grid = false, $via = false, $reference = false, $qslmsg = false, $tnxmsg = true) { + function prepareLabel($qsos, $jscall = false, $offset = 1, $grid = false, $via = false, $reference = false, $qslmsg = false, $tnxmsg = true, $mycall = false) { $this->load->model('labels_model'); $label = $this->labels_model->getDefaultLabel(); - try { if ($label) { $label->font='DejaVuSans'; // Fix font to DejaVuSans @@ -247,9 +248,9 @@ class Labels extends CI_Controller { if ($qsos->num_rows() > 0) { if ($label->qsos == 1) { - $this->makeMultiQsoLabel($qsos->result(), $pdf, 1, $offset, $ptype->orientation, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->makeMultiQsoLabel($qsos->result(), $pdf, 1, $offset, $ptype->orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); } else { - $this->makeMultiQsoLabel($qsos->result(), $pdf, $label->qsos, $offset, $ptype->orientation, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->makeMultiQsoLabel($qsos->result(), $pdf, $label->qsos, $offset, $ptype->orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); } } else { $this->session->set_flashdata('message', __('0 QSOs found for print!')); @@ -258,7 +259,7 @@ class Labels extends CI_Controller { $pdf->Output(); } - function makeMultiQsoLabel($qsos, $pdf, $numberofqsos, $offset, $orientation, $grid, $via, $reference, $qslmsg, $tnxmsg) { + function makeMultiQsoLabel($qsos, $pdf, $numberofqsos, $offset, $orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall) { $text = ''; $current_callsign = ''; $current_sat = ''; @@ -275,7 +276,7 @@ class Labels extends CI_Controller { ( ($qso->COL_BAND_RX !== $current_sat_bandrx) && ($this->pretty_sat_mode($qso->COL_SAT_MODE) !== '')) ) { // ((($qso->COL_SAT_NAME ?? '' !== $current_sat) || ($qso->COL_CALL !== $current_callsign)) && ($qso->COL_SAT_NAME ?? '' !== '') && ($col->COL_BAND_RX ?? '' !== $current_sat_bandrx))) { if (!empty($qso_data)) { - $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); $qso_data = []; } $current_callsign = $qso->COL_CALL; @@ -307,7 +308,7 @@ class Labels extends CI_Controller { ]; } if (!empty($qso_data)) { - $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->finalizeData($pdf, $current_callsign, $qso_data, $numberofqsos, $orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); } } // New begin @@ -315,7 +316,7 @@ class Labels extends CI_Controller { return(strlen($sat_mode ?? '') == 2 ? (strtoupper($sat_mode[0]).'/'.strtoupper($sat_mode[1])) : strtoupper($sat_mode ?? '')); } - function finalizeData($pdf, $current_callsign, &$preliminaryData, $qso_per_label,$orientation, $grid, $via, $reference, $qslmsg, $tnxmsg) { + function finalizeData($pdf, $current_callsign, &$preliminaryData, $qso_per_label,$orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall) { $tableData = []; $count_qso = 0; @@ -333,9 +334,8 @@ class Labels extends CI_Controller { $tableData[] = $rowData; $count_qso++; - if($count_qso == $qso_per_label){ - $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); $tableData = []; // reset the data $count_qso = 0; // reset the counter } @@ -343,12 +343,12 @@ class Labels extends CI_Controller { } // generate label for remaining QSOs if($count_qso > 0){ - $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via, $reference, $qslmsg, $tnxmsg); + $this->generateLabel($pdf, $current_callsign, $tableData,$count_qso,$qso,$orientation, $grid, $via, $reference, $qslmsg, $tnxmsg, $mycall); $preliminaryData = []; // reset the data } } - function generateLabel($pdf, $current_callsign, $tableData,$numofqsos,$qso,$orientation,$grid=true, $via=false, $reference = false, $qslmsg = false, $tnxmsg = true){ + function generateLabel($pdf, $current_callsign, $tableData,$numofqsos,$qso,$orientation,$grid=true, $via=false, $reference = false, $qslmsg = false, $tnxmsg = true, $mycall = false){ $builder = new \AsciiTable\Builder(); $builder->addRows($tableData); $toradio = "To Radio: "; @@ -372,7 +372,11 @@ class Labels extends CI_Controller { } } $text.="\n"; - if ($grid) { $text .= "My call: ".$qso['mycall']." Grid: ".$qso['mygrid']."\n"; } + if ($mycall) { $text .= "My call: ".$qso['mycall'] . ' '; } + if ($mycall && !$grid) { + $text .= "\n"; + } + if ($grid) { $text .= "Grid: ".$qso['mygrid']."\n"; } if ($reference) { $ref_text = ""; $ref_avail = false; diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 2a7b06b27..1a650805f 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -166,18 +166,22 @@ class Logbook extends CI_Controller { // Get user's lookup priority preference $lookup_priority = $this->get_lookup_priority(); - $return['callsign_name'] = $this->nval($this->logbook_model->call_name($callsign), $callbook['name'] ?? '', $lookup_priority); - $return['callsign_qra'] = $this->nval($this->logbook_model->call_qra($callsign), $callbook['gridsquare'] ?? '', $lookup_priority); + // Consolidated callsign lookup - reduces queries from 11 to 2 + $callsign_info = $this->logbook_model->get_callsign_all_info($callsign); + $return['callsign_name'] = $this->nval($callsign_info['name'], $callbook['name'] ?? '', $lookup_priority); + $return['callsign_qra'] = $this->nval($callsign_info['qra'], $callbook['gridsquare'] ?? '', $lookup_priority); $return['callsign_geoloc'] = $callbook['geoloc'] ?? ''; $return['callsign_distance'] = $this->distance($return['callsign_qra'], $station_id); - $return['callsign_qth'] = $this->nval($this->logbook_model->call_qth($callsign), $callbook['city'] ?? '', $lookup_priority); - $return['callsign_iota'] = $this->nval($this->logbook_model->call_iota($callsign), $callbook['iota'] ?? '', $lookup_priority); - $return['callsign_email'] = $this->nval($this->logbook_model->call_email($callsign), $callbook['email'] ?? '', $lookup_priority); - $return['qsl_manager'] = $this->nval($this->logbook_model->call_qslvia($callsign), $callbook['qslmgr'] ?? '', $lookup_priority); - $return['callsign_state'] = $this->nval($this->logbook_model->call_state($callsign), $callbook['state'] ?? '', $lookup_priority); - $return['callsign_us_county'] = $this->nval($this->logbook_model->call_us_county($callsign), $callbook['us_county'] ?? '', $lookup_priority); - $return['callsign_ituz'] = $this->nval($this->logbook_model->call_ituzone($callsign), $callbook['ituz'] ?? '', $lookup_priority); - $return['callsign_cqz'] = $this->nval($this->logbook_model->call_cqzone($callsign), $callbook['cqz'] ?? '', $lookup_priority); + $return['callsign_qth'] = $this->nval($callsign_info['qth'], $callbook['city'] ?? '', $lookup_priority); + $return['callsign_iota'] = $this->nval($callsign_info['iota'], $callbook['iota'] ?? '', $lookup_priority); + $return['callsign_email'] = $this->nval($callsign_info['email'], $callbook['email'] ?? '', $lookup_priority); + $return['qsl_manager'] = $this->nval($callsign_info['qslvia'], $callbook['qslmgr'] ?? '', $lookup_priority); + $return['callsign_state'] = $this->nval($callsign_info['state'], $callbook['state'] ?? '', $lookup_priority); + $return['callsign_us_county'] = $this->nval($callsign_info['us_county'], $callbook['us_county'] ?? '', $lookup_priority); + $return['callsign_ituz'] = $this->nval($callsign_info['ituz'], $callbook['ituz'] ?? '', $lookup_priority); + $return['callsign_cqz'] = $this->nval($callsign_info['cqz'], $callbook['cqz'] ?? '', $lookup_priority); + // call_darc_dok remains separate due to different query pattern (uses logbooks_relationships) + $return['callsign_darc_dok'] = $this->nval($this->logbook_model->call_darc_dok($callsign), $callbook['darc_dok'] ?? '', $lookup_priority); $return['workedBefore'] = $this->worked_grid_before($return['callsign_qra'], $band, $mode); $return['confirmed'] = $this->confirmed_grid_before($return['callsign_qra'], $band, $mode); $return['timesWorked'] = $this->logbook_model->times_worked($lookupcall); @@ -1256,7 +1260,7 @@ class Logbook extends CI_Controller { if ($date == ''){ $date = date("Y-m-d"); } - $dxccobj = new Dxcc($date); + $dxccobj = new Dxcc(); $ans = $dxccobj->dxcc_lookup($call, $date); return $ans; diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 5c0e926be..30c9a0c19 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -91,15 +91,15 @@ class Logbookadvanced extends CI_Controller { $footerData['scripts'] = [ 'assets/js/moment.min.js', 'assets/js/datetime-moment.js', - 'assets/js/sections/logbookadvanced.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced.js")), - 'assets/js/sections/logbookadvanced_edit.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced_edit.js")), - 'assets/js/sections/logbookadvanced_map.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/logbookadvanced_map.js")), - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/leaflet/L.Terminator.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/leaflet/L.Terminator.js")), + 'assets/js/sections/logbookadvanced.js', + 'assets/js/sections/logbookadvanced_edit.js', + 'assets/js/sections/logbookadvanced_map.js', + 'assets/js/sections/cqmap_geojson.js', + 'assets/js/sections/itumap_geojson.js', + 'assets/js/leaflet/L.Terminator.js', 'assets/js/leaflet/geocoding.js', - 'assets/js/globe/globe.gl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/globe/globe.gl.js")), - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/globe/globe.gl.js', + 'assets/js/bootstrap-multiselect.js', 'assets/js/leaflet/L.MaidenheadColouredGridMap.js', ]; @@ -161,7 +161,8 @@ class Logbookadvanced extends CI_Controller { 'qrzReceived' => xss_clean($this->input->post('qrzReceived')), 'distance' => xss_clean($this->input->post('distance')), 'sortcolumn' => xss_clean($this->input->post('sortcolumn')), - 'sortdirection' => xss_clean($this->input->post('sortdirection')) + 'sortdirection' => xss_clean($this->input->post('sortdirection')), + 'duration' => xss_clean($this->input->post('duration')) ); } @@ -394,7 +395,8 @@ class Logbookadvanced extends CI_Controller { 'ids' => json_decode(xss_clean($this->input->post('ids'))), 'qsoids' => xss_clean($this->input->post('qsoids')), 'sortcolumn' => 'qsotime', - 'sortdirection' => 'desc' + 'sortdirection' => 'desc', + 'duration' => '*' ); $result = $this->logbookadvanced_model->getSearchResultArray($searchCriteria); @@ -622,6 +624,7 @@ class Logbookadvanced extends CI_Controller { $json_string['frequency']['show'] = $this->def_boolean($this->input->post('frequency')); $json_string['dcl']['show'] = $this->def_boolean($this->input->post('dcl')); $json_string['last_modification']['show'] = $this->def_boolean($this->input->post('last_modification')); + $json_string['duration']['show'] = $this->def_boolean($this->input->post('duration')); $obj['column_settings']= json_encode($json_string); @@ -653,7 +656,7 @@ class Logbookadvanced extends CI_Controller { $data['stateDxcc'] = $this->logbookadvanced_model->getPrimarySubdivisonsDxccs(); - $data['modes'] = $this->modes->active(); + $data['modes'] = $this->modes->all(); $data['bands'] = $this->bands->get_user_bands_for_qso_entry(); $data['contests'] = $this->contesting_model->getActivecontests(); $this->load->view('logbookadvanced/edit', $data); @@ -729,10 +732,6 @@ class Logbookadvanced extends CI_Controller { $this->load->view('logbookadvanced/help'); } - public function continentDialog() { - $this->load->view('logbookadvanced/continentdialog'); - } - public function stateDialog() { $this->load->library('Geojson'); @@ -782,7 +781,9 @@ class Logbookadvanced extends CI_Controller { public function fixContinent() { $this->load->model('logbookadvanced_model'); - $result = $this->logbookadvanced_model->check_missing_continent(); + + $stationid = $this->input->post('stationid', true); + $result = $this->logbookadvanced_model->check_missing_continent($stationid); $data['result'] = $result; @@ -829,8 +830,10 @@ class Logbookadvanced extends CI_Controller { public function updateDistances() { if(!clubaccess_check(9)) return; + $stationid = $this->input->post('stationid', true); + $this->load->model('logbookadvanced_model'); - $result = $this->logbookadvanced_model->update_distances_batch(); + $result = $this->logbookadvanced_model->update_distances_batch($stationid); $data['result'] = $result; @@ -844,16 +847,20 @@ class Logbookadvanced extends CI_Controller { } public function dbtoolsDialog() { - $this->load->view('logbookadvanced/dbtoolsdialog'); + $this->load->model('stations'); + $data['station_profile'] = $this->stations->all_of_user(); + + $this->load->view('logbookadvanced/dbtoolsdialog', $data); } public function checkDb() { if(!clubaccess_check(9)) return; $type = $this->input->post('type', true); + $stationid = $this->input->post('stationid', true); $this->load->model('logbookadvanced_model'); - $data['result'] = $this->logbookadvanced_model->runCheckDb($type); + $data['result'] = $this->logbookadvanced_model->runCheckDb($type, $stationid); if ($type == 'checkstate') { $this->load->view('logbookadvanced/statecheckresult', $data); } else { @@ -870,10 +877,11 @@ class Logbookadvanced extends CI_Controller { $this->load->model('logbookadvanced_model'); $dxcc = $this->input->post('dxcc', true); + $stationid = $this->input->post('stationid', true); $data['country'] = $this->input->post('country', true); // Process for batch QSO state fix - $result = $this->logbookadvanced_model->fixStateBatch($dxcc); + $result = $this->logbookadvanced_model->fixStateBatch($dxcc, $stationid); $data['result'] = $result; @@ -889,19 +897,21 @@ class Logbookadvanced extends CI_Controller { $data['dxcc'] = $this->input->post('dxcc', true); $data['country'] = $this->input->post('country', true); + $data['stationid'] = $this->input->post('stationid', true); // Process for batch QSO state fix - $data['qsos'] = $this->logbookadvanced_model->getStateListQsos($data['dxcc']); + $data['qsos'] = $this->logbookadvanced_model->getStateListQsos($data['dxcc'], $data['stationid']); $this->load->view('logbookadvanced/showStateQsos', $data); } - public function batchFix() { + public function fixMissingGrids() { if(!clubaccess_check(9)) return; $type = $this->input->post('type', true); + $stationid = $this->input->post('stationid', true); $this->load->model('logbookadvanced_model'); - $result = $this->logbookadvanced_model->batchFix($type); + $result = $this->logbookadvanced_model->check_missing_grid($stationid); $data['result'] = $result; $data['type'] = $type; diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php index 68e21242c..196904fb0 100644 --- a/application/controllers/Lookup.php +++ b/application/controllers/Lookup.php @@ -158,24 +158,6 @@ class Lookup extends CI_Controller { } } - public function dok($call) { - session_write_close(); - - if($call) { - $call = str_replace("-","/",$call); - $uppercase_callsign = strtoupper($call); - } - - // DOK results from logbook - $this->load->model('logbook_model'); - - $query = $this->logbook_model->get_dok($uppercase_callsign); - - if ($query->row()) { - echo $query->row()->COL_DARC_DOK; - } - } - public function ham_of_note($call = '') { session_write_close(); @@ -184,9 +166,9 @@ class Lookup extends CI_Controller { $uppercase_callsign = strtoupper($call); $this->load->model('Pota'); $query = $this->Pota->ham_of_note($uppercase_callsign); - if ($query->row()) { + if ($query->num_rows() > 0) { header('Content-Type: application/json'); - echo json_encode($query->row()); + echo json_encode($query->result()); } else { return null; } diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 8529d255c..9848f14f6 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -257,10 +257,6 @@ class Lotw extends CI_Controller { echo $data['lotw_cert_info']->callsign.": QSO start date of LoTW certificate not reached yet!
"; continue; } - if ($current_date > $data['lotw_cert_info']->qso_end_date) { - echo $data['lotw_cert_info']->callsign.": QSO end date of LoTW certificate exceeded!
"; - continue; - } if ($current_date < $data['lotw_cert_info']->date_created) { echo $data['lotw_cert_info']->callsign.": LoTW certificate not valid yet!
"; continue; @@ -445,7 +441,7 @@ class Lotw extends CI_Controller { unlink($file); // OpenSSL error:11800071:PKCS12 routines::mac verify failure is most likely an (unknown) password set on the exported certificate if (str_contains($openssl_error_pkcs12_read, 'mac verify failure')) { - $this->session->set_flashdata('warning', sprintf(__("The certificate found in file %s contains a password and cannot be processed. %sPlease make sure you export the LoTW certificate from tqsl application without password!%s For further information please visit the %sLoTW FAQ page%s in the Wavelog Wiki."), basename($file), '', '', '', '')); + $this->session->set_flashdata('warning', sprintf(__("The certificate found in file %s contains a password and cannot be processed. %sPlease make sure you export the LoTW certificate from tqsl application without password!%s For further information please visit the %sLoTW FAQ page%s in the Wavelog Wiki."), basename($file), '', '', '', '')); } else { $this->session->set_flashdata('warning', sprintf(__("Generic error extracting the certificate from file %s. If the filename contains 'key-only' this is typically a certificate request which has not been processed by LoTW yet."), basename($file))); } @@ -719,77 +715,200 @@ class Lotw extends CI_Controller { $q = $url_query->row(); $lotw_base_url = $q->lotw_download_url; - foreach ($query->result() as $user) { - if ( ($sync_user_id != null) && ($sync_user_id != $user->user_id) ) { continue; } - $station_ids=$this->Stations->all_station_ids_of_user($user->user_id); - if ($station_ids == '') { continue; } // User has no Station-ID! next one + // Single-user mode: fall back to sequential download + if ($sync_user_id != null) { + foreach ($query->result() as $user) { + if ($sync_user_id != $user->user_id) { continue; } + $station_ids=$this->Stations->all_station_ids_of_user($user->user_id); + if ($station_ids == '') { continue; } + + if ($user->user_lotw_password == '') { + $result = "You have not defined your ARRL LoTW credentials!"; + continue; + } + + $config['upload_path'] = './uploads/'; + $file = $config['upload_path'] . 'lotwreport_download_'.$user->user_id.'_auto.adi'; + if (file_exists($file) && ! is_writable($file)) { + $result = "Temporary download file ".$file." is not writable. Aborting!"; + continue; + } + + $lotw_last_qsl_date = date('Y-m-d', strtotime($this->logbook_model->lotw_last_qsl_date($user->user_id))); + + $lotw_url = $lotw_base_url."?"; + $lotw_url .= "login=" . urlencode($user->user_lotw_name); + $lotw_url .= "&password=" . urlencode($user->user_lotw_password); + $lotw_url .= "&qso_query=1&qso_qsl='yes'&qso_qsldetail='yes'&qso_mydetail='yes'"; + $lotw_url .= "&qso_qslsince="; + $lotw_url .= "$lotw_last_qsl_date"; + + if (! is_writable(dirname($file))) { + $result = "Temporary download directory ".dirname($file)." is not writable. Aborting!"; + continue; + } + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $lotw_url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); + $content = curl_exec($ch); + if(curl_errno($ch)) { + $result = "LoTW download failed for user ".$user->user_lotw_name.": ".curl_strerror(curl_errno($ch))." (".curl_errno($ch).")."; + continue; + } else if(str_contains(substr($content,0 , 2000),"Username/password incorrect")) { + $result = "LoTW download failed for user ".$user->user_lotw_name.": Username/password incorrect"; + log_message('error', 'LoTW download failed for user '.$user->user_name.': Username/password incorrect'); + if ($this->Lotw_model->remove_lotw_credentials($user->user_id)) { + log_message('error', 'LoTW credentials deleted for user '.$user->user_name); + } else { + log_message('error', 'Deleting LoTW credentials for user '.$user->user_name.' failed'); + } + continue; + } else if (str_contains(substr($content, 0, 2000),"Page Request Limit!")) { + $result = "LoTW download hit a rate limit for user ".$user->user_lotw_name; + log_message('error', 'LoTW download hit a rate limit for user '.$user->user_name); + continue; + } + file_put_contents($file, $content); + if (file_get_contents($file, false, null, 0, 39) != "ARRL Logbook of the World Status Report") { + $result = "Downloaded LoTW report for user ".$user->user_lotw_name." is invalid. Check your credentials."; + log_message('error', 'Downloaded LoTW report is invalid for user '.$user->user_name); + continue; + } + + ini_set('memory_limit', '-1'); + $result = $this->loadFromFile($file, $station_ids, false); + } + return $result; + } else { + + // Multi-user mode (sync_user_id == null): parallel download via curl_multi only triggered by cron - so message-return is omitted + // Pass 1: collect eligible users and prepare download queue + $max_parallel = 5; + $queue = array(); + + foreach ($query->result() as $user) { + $station_ids = $this->Stations->all_station_ids_of_user($user->user_id); + if ($station_ids == '') { continue; } - // Validate that LoTW credentials are not empty - // TODO: We don't actually see the error message if ($user->user_lotw_password == '') { - $result = "You have not defined your ARRL LoTW credentials!"; continue; } $config['upload_path'] = './uploads/'; $file = $config['upload_path'] . 'lotwreport_download_'.$user->user_id.'_auto.adi'; if (file_exists($file) && ! is_writable($file)) { - $result = "Temporary download file ".$file." is not writable. Aborting!"; + log_message("Error","LoTW Multidownload: UID: ".$user->user_id." - Temporary download file ".$file." is not writable. Aborting!"); + continue; + } + if (! is_writable(dirname($file))) { + log_message("Error","LoTW Multidownload: UID: ".$user->user_id." - Temporary download directory ".dirname($file)." is not writable. Aborting!"); continue; } $lotw_last_qsl_date = date('Y-m-d', strtotime($this->logbook_model->lotw_last_qsl_date($user->user_id))); - // Build URL for LoTW report file $lotw_url = $lotw_base_url."?"; $lotw_url .= "login=" . urlencode($user->user_lotw_name); $lotw_url .= "&password=" . urlencode($user->user_lotw_password); $lotw_url .= "&qso_query=1&qso_qsl='yes'&qso_qsldetail='yes'&qso_mydetail='yes'"; - $lotw_url .= "&qso_qslsince="; $lotw_url .= "$lotw_last_qsl_date"; - if (! is_writable(dirname($file))) { - $result = "Temporary download directory ".dirname($file)." is not writable. Aborting!"; - continue; - } + $queue[] = array( + 'url' => $lotw_url, + 'user' => $user, + 'file' => $file, + 'station_ids' => $station_ids, + ); + } + + // Download in batches of $max_parallel, process completed ones before next batch + $mh = curl_multi_init(); + $active_handles = array(); // maps curl resource id => queue entry + handle + $queue_index = 0; + + // Seed initial batch + while ($queue_index < count($queue) && count($active_handles) < $max_parallel) { + $entry = $queue[$queue_index]; $ch = curl_init(); - curl_setopt($ch, CURLOPT_URL, $lotw_url); + curl_setopt($ch, CURLOPT_URL, $entry['url']); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); - $content = curl_exec($ch); - if(curl_errno($ch)) { - $result = "LoTW download failed for user ".$user->user_lotw_name.": ".curl_strerror(curl_errno($ch))." (".curl_errno($ch).")."; - if (curl_errno($ch) == 28) { // break on timeout - $result .= "
Timeout reached. Stopping subsequent downloads."; - break; - } - continue; - } else if(str_contains(substr($content,0 , 2000),"Username/password incorrect")) { - $result = "LoTW download failed for user ".$user->user_lotw_name.": Username/password incorrect"; - log_message('error', 'LoTW download failed for user '.$user->user_name.': Username/password incorrect'); - if ($this->Lotw_model->remove_lotw_credentials($user->user_id)) { - log_message('error', 'LoTW credentials deleted for user '.$user->user_name); + curl_multi_add_handle($mh, $ch); + $active_handles[(int)$ch] = array_merge($entry, array('ch' => $ch)); + log_message('debug', 'LoTW parallel download started for UID '.$entry['user']->user_id.' ('.$entry['user']->user_lotw_name.')'); + $queue_index++; + } + + // Process downloads as they complete, refill slots from queue + while (count($active_handles) > 0) { + curl_multi_exec($mh, $running); + + // Check for completed handles + while ($info = curl_multi_info_read($mh)) { + $ch = $info['handle']; + $dl = $active_handles[(int)$ch]; + unset($active_handles[(int)$ch]); + + $user = $dl['user']; + $file = $dl['file']; + $station_ids = $dl['station_ids']; + + $errno = curl_errno($ch); + log_message('debug', 'LoTW parallel download finished for UID '.$user->user_id.' ('.$user->user_lotw_name.')'.($errno ? ' with error: '.curl_strerror($errno) : '')); + if ($errno) { + log_message('error', 'LoTW download failed for user '.$user->user_name.': '.curl_strerror($errno)); + curl_multi_remove_handle($mh, $ch); + curl_close($ch); } else { - log_message('error', 'Deleting LoTW credentials for user '.$user->user_name.' failed'); + $content = curl_multi_getcontent($ch); + curl_multi_remove_handle($mh, $ch); + curl_close($ch); + + if (str_contains(substr($content, 0, 2000), "Username/password incorrect")) { + log_message('error', 'LoTW download failed for user '.$user->user_name.': Username/password incorrect'); + if ($this->Lotw_model->remove_lotw_credentials($user->user_id)) { + log_message('error', 'LoTW credentials deleted for user '.$user->user_name); + } else { + log_message('error', 'Deleting LoTW credentials for user '.$user->user_name.' failed'); + } + } else if (str_contains(substr($content, 0, 2000), "Page Request Limit!")) { + log_message('error', 'LoTW download hit a rate limit for user '.$user->user_name); + } else { + file_put_contents($file, $content); + if (file_get_contents($file, false, null, 0, 39) != "ARRL Logbook of the World Status Report") { + log_message('error', 'Downloaded LoTW report is invalid for user '.$user->user_name); + } else { + ini_set('memory_limit', '-1'); + log_message('debug', 'LoTW parallel download passing to loadFromFile for UID '.$user->user_id.' ('.$user->user_lotw_name.')'); + $this->loadFromFile($file, $station_ids, false); + } + } + } + + // Refill slot from queue + if ($queue_index < count($queue)) { + $entry = $queue[$queue_index]; + $new_ch = curl_init(); + curl_setopt($new_ch, CURLOPT_URL, $entry['url']); + curl_setopt($new_ch, CURLOPT_RETURNTRANSFER, true); + curl_setopt($new_ch, CURLOPT_CONNECTTIMEOUT, 30); + curl_multi_add_handle($mh, $new_ch); + $active_handles[(int)$new_ch] = array_merge($entry, array('ch' => $new_ch)); + log_message('debug', 'LoTW parallel download started for UID '.$entry['user']->user_id.' ('.$entry['user']->user_lotw_name.')'); + $queue_index++; } - continue; - } else if (str_contains(substr($content, 0, 2000),"Page Request Limit!")) { - $result = "LoTW download hit a rate limit for user ".$user->user_lotw_name; - log_message('error', 'LoTW download hit a rate limit for user '.$user->user_name); - continue; - } - file_put_contents($file, $content); - if (file_get_contents($file, false, null, 0, 39) != "ARRL Logbook of the World Status Report") { - $result = "Downloaded LoTW report for user ".$user->user_lotw_name." is invalid. Check your credentials."; - log_message('error', 'Downloaded LoTW report is invalid for user '.$user->user_name); - continue; } - ini_set('memory_limit', '-1'); - $result = $this->loadFromFile($file, $station_ids, false); + if (count($active_handles) > 0) { + curl_multi_select($mh, 1.0); + } } + + curl_multi_close($mh); return $result; + } // end else (multi-user parallel mode) } else { return "No LoTW User details found to carry out matches."; } diff --git a/application/controllers/Map.php b/application/controllers/Map.php index cc3c3838c..41ba2ff2b 100644 --- a/application/controllers/Map.php +++ b/application/controllers/Map.php @@ -51,9 +51,9 @@ class Map extends CI_Controller { $footerData['scripts'] = [ 'assets/js/leaflet/geocoding.js', 'assets/js/leaflet/L.Maidenhead.js', - 'assets/js/sections/qso_map.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qso_map.js")), - 'assets/js/sections/itumap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/itumap_geojson.js")), - 'assets/js/sections/cqmap_geojson.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/cqmap_geojson.js")), + 'assets/js/sections/qso_map.js', + 'assets/js/sections/itumap_geojson.js', + 'assets/js/sections/cqmap_geojson.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Qrz.php b/application/controllers/Qrz.php index cb13bb7c2..836576345 100644 --- a/application/controllers/Qrz.php +++ b/application/controllers/Qrz.php @@ -27,7 +27,7 @@ class Qrz extends CI_Controller { public function qrz_apitest() { $apikey = xss_clean($this->input->post('APIKEY')); - $url = 'http://logbook.qrz.com/api'; // TODO: Move this to database + $url = 'https://logbook.qrz.com/api'; // TODO: Move this to database $post_data['KEY'] = $apikey; $post_data['ACTION'] = 'STATUS'; @@ -362,7 +362,7 @@ class Qrz extends CI_Controller { $result = "Temporary download file ".$file." is not writable. Aborting!"; return false; } - $url = 'http://logbook.qrz.com/api'; + $url = 'https://logbook.qrz.com/api'; $post_data['KEY'] = $qrz_api_key; $post_data['ACTION'] = 'FETCH'; diff --git a/application/controllers/Qsl.php b/application/controllers/Qsl.php index c93d3e4e3..91b22e91d 100644 --- a/application/controllers/Qsl.php +++ b/application/controllers/Qsl.php @@ -27,7 +27,7 @@ class Qsl extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/qsl.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/qsl.js")), + 'assets/js/sections/qsl.js', ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 8da599501..b38b62057 100644 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -99,6 +99,13 @@ class QSO extends CI_Controller { $data['user_station_to_qso_tab'] = 0; } + $qkey_opt = $this->user_options_model->get_options('qso_tab', array('option_name' => 'map', 'option_key' => 'show'))->result(); + if (count($qkey_opt) > 0) { + $data['user_qso_show_map'] = $qkey_opt[0]->option_value; + } else { + $data['user_qso_show_map'] = 1; // default: show map + } + // Get status of DX Waterfall enable option $qkey_opt=$this->user_options_model->get_options('dxwaterfall',array('option_name'=>'enable','option_key'=>'boolean'))->result(); if (count($qkey_opt)>0) { diff --git a/application/controllers/Radio.php b/application/controllers/Radio.php index 2af84a353..83003c661 100644 --- a/application/controllers/Radio.php +++ b/application/controllers/Radio.php @@ -18,7 +18,7 @@ class Radio extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/radio.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/radio.js")), + 'assets/js/sections/radio.js', ]; $this->load->view('interface_assets/header', $data); @@ -36,6 +36,9 @@ class Radio extends CI_Controller { $this->load->model('cat'); $query = $this->cat->status(); + // Get the default radio + $default_user_radio = $this->user_options_model->get_options('cat', array('option_name' => $this->_get_optionname()), $this->_get_correct_uid())->row()->option_value ?? NULL; + if ($query->num_rows() > 0) { echo ""; echo "" . __("Radio") . ""; @@ -50,6 +53,23 @@ class Radio extends CI_Controller { echo "" . __("Settings") . ""; echo ""; echo ""; + + // WebSocket as first row + echo ""; + echo "" . __("WebSocket") . ""; + echo "-"; // Frequency + echo "-"; // Mode + echo "-"; // Timestamp + echo ''; // Last updated + if ($default_user_radio === 'ws') { + echo ''; + } else { + echo ''; + } + echo ''; // Settings (no edit for WebSocket) + echo ''; // Delete (no delete for WebSocket) + echo ""; + foreach ($query->result() as $row) { echo ""; echo "" . $row->radio . ""; @@ -68,6 +88,8 @@ class Radio extends CI_Controller { echo "- / -"; } elseif (empty($row->frequency_rx) || $row->frequency_rx == "0") { echo "" . $this->frequency->qrg_conversion($row->frequency) . ""; + } elseif ($this->frequency->frequencies_are_equal($row->frequency, $row->frequency_rx)) { + echo "" . $this->frequency->qrg_conversion($row->frequency) . ""; } else { echo "" . $this->frequency->qrg_conversion($row->frequency_rx) . " / " . $this->frequency->qrg_conversion($row->frequency) . ""; } @@ -100,17 +122,10 @@ class Radio extends CI_Controller { echo ''; } - if ($this->session->userdata('clubstation') != 1) { - $defaul_user_radio = $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? NULL; - if (!$defaul_user_radio) { - echo '"; echo "id . "\" class=\"btn btn-sm btn-danger\"> " . __("Delete") . ""; @@ -118,8 +133,18 @@ class Radio extends CI_Controller { } echo ""; } else { + // No radios found - show WebSocket button + if ($default_user_radio === 'ws') { + $websocket_button = ''; + } else { + $websocket_button = ''; + } echo ""; - echo "
" . __("No CAT interfaced radios found.") . "
"; + echo "
"; + echo __("No CAT interfaced radios found."); + echo "

" . __("You can still set the WebSocket option as your default radio.") . "

"; + echo $websocket_button; + echo "
"; echo ""; } } @@ -302,11 +327,11 @@ class Radio extends CI_Controller { $this->cat->delete($clean_id); - if ($clean_id == $this->user_options_model->get_options('cat', array('option_name' => 'default_radio'))->row()->option_value ?? '') { + if ($clean_id == $this->user_options_model->get_options('cat', array('option_name' => $this->_get_optionname()), $this->_get_correct_uid())->row()->option_value ?? '') { $this->release_default_radio(); } - $this->session->set_flashdata('message', 'Radio Profile Deleted'); + $this->session->set_flashdata('message', __("Radio removed successfully")); session_write_close(); redirect('radio'); @@ -315,8 +340,8 @@ class Radio extends CI_Controller { function set_default_radio() { // get the radio_id from POST - $clean_radio_id = $this->security->xss_clean($this->input->post('radio_id')); - + $clean_radio_id = $this->input->post('radio_id', TRUE); + // Check Auth $this->load->model('user_model'); if (!$this->user_model->authorize(3)) { @@ -328,7 +353,7 @@ class Radio extends CI_Controller { $this->release_default_radio(); // Set the user_option and session data - $this->user_options_model->set_option('cat', 'default_radio', array('radio_id' => $clean_radio_id)); + $this->user_options_model->set_option('cat', $this->_get_optionname(), array('radio_id' => $clean_radio_id), $this->_get_correct_uid()); $this->session->set_userdata('radio', $clean_radio_id); } @@ -341,7 +366,27 @@ class Radio extends CI_Controller { } // Unset the user_option and session data - $this->user_options_model->del_option('cat', 'default_radio'); + $this->user_options_model->del_option('cat', $this->_get_optionname(), NULL, $this->_get_correct_uid()); $this->session->unset_userdata('radio'); } + + private function _get_correct_uid() { + if ($this->_is_clubstation()) { + return $this->session->userdata('source_uid'); + } else { + return $this->session->userdata('user_id'); + } + } + + private function _is_clubstation() { + return $this->session->userdata('clubstation') == 1; + } + + private function _get_optionname() { + if ($this->_is_clubstation() && ($this->session->userdata('source_uid') ?? '') != '') { + return 'default_clubradio_' . $this->session->userdata('user_id'); + } else { + return 'default_radio'; + } + } } diff --git a/application/controllers/Satellite.php b/application/controllers/Satellite.php index f3b887011..658e8560d 100644 --- a/application/controllers/Satellite.php +++ b/application/controllers/Satellite.php @@ -34,7 +34,7 @@ class Satellite extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/satellite.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite.js")), + 'assets/js/sections/satellite.js', ]; // Render Page @@ -184,10 +184,10 @@ class Satellite extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/satellite.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite.js")), - 'assets/js/sections/three-orbit-controls.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/three-orbit-controls.js")), - 'assets/js/sections/satellite_functions.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satellite_functions.js")), - 'assets/js/sections/flightpath.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/flightpath.js")), + 'assets/js/sections/satellite.js', + 'assets/js/sections/three-orbit-controls.js', + 'assets/js/sections/satellite_functions.js', + 'assets/js/sections/flightpath.js', 'assets/js/leaflet/L.Maidenhead.js', 'assets/js/leaflet/geocoding.js', ]; @@ -245,8 +245,8 @@ class Satellite extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), - 'assets/js/sections/satpasses.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/satpasses.js")), + 'assets/js/bootstrap-multiselect.js', + 'assets/js/sections/satpasses.js', ]; // Render Page diff --git a/application/controllers/Sattimers.php b/application/controllers/Sattimers.php index 4d51b45f1..ea3f3473f 100644 --- a/application/controllers/Sattimers.php +++ b/application/controllers/Sattimers.php @@ -13,7 +13,7 @@ class Sattimers extends CI_Controller { $this->load->model('stations'); $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/sattimers.js?' + 'assets/js/sections/sattimers.js' ]; $url = 'https://www.df2et.de/tevel/api2.php?grid='.strtoupper($this->stations->find_gridsquare()); diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index 5cbd7e3f6..51b142677 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -27,7 +27,7 @@ class SimpleFLE extends CI_Controller { $footerData['scripts'] = [ 'assets/js/moment.min.js', 'assets/js/datetime-moment.js', - 'assets/js/sections/simplefle.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/simplefle.js")) + 'assets/js/sections/simplefle.js' ]; $this->load->view('interface_assets/header', $data); diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php index 9b7456365..2f4b04d0e 100644 --- a/application/controllers/Stationsetup.php +++ b/application/controllers/Stationsetup.php @@ -32,7 +32,7 @@ class Stationsetup extends CI_Controller { $footerData['scripts'] = [ 'assets/js/moment.min.js', 'assets/js/datetime-moment.js', - 'assets/js/sections/stationsetup.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/stationsetup.js")), + 'assets/js/sections/stationsetup.js', ]; // Get Date format @@ -259,7 +259,7 @@ class Stationsetup extends CI_Controller { $result = $this->logbooks_model->show_all()->result(); foreach ($result as $entry) { $single=(Object)[]; - $single->logbook_id = $entry->logbook_id; + $single->logbook_id = ''.$entry->logbook_id.''; $single->logbook_name = $this->lbname2html($entry->logbook_id, $entry->logbook_name); $single->logbook_state = $this->lbstate2html($entry->logbook_id); $single->logbook_edit = $this->lbedit2html($entry->logbook_id); diff --git a/application/controllers/Statistics.php b/application/controllers/Statistics.php index 074f0383a..328d2c620 100644 --- a/application/controllers/Statistics.php +++ b/application/controllers/Statistics.php @@ -321,9 +321,9 @@ class Statistics extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/chart.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/chart.js")), - 'assets/js/sections/antennastats.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/antennastats.js")), - 'assets/js/bootstrap-multiselect.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/bootstrap-multiselect.js")), + 'assets/js/chart.js', + 'assets/js/sections/antennastats.js', + 'assets/js/bootstrap-multiselect.js', ]; // Load Views @@ -389,7 +389,7 @@ class Statistics extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/initials.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/initials.js")), + 'assets/js/sections/initials.js', ]; // Load Views diff --git a/application/controllers/Timeline.php b/application/controllers/Timeline.php index 34cbc6742..091e39c01 100644 --- a/application/controllers/Timeline.php +++ b/application/controllers/Timeline.php @@ -101,7 +101,7 @@ class Timeline extends CI_Controller { $data['onlynew'] = $onlynew; $data['selectedyear'] = $year; - $footerData['scripts'] = [ 'assets/js/sections/timeline.js?' ]; + $footerData['scripts'] = [ 'assets/js/sections/timeline.js' ]; $this->load->view('interface_assets/header', $data); $this->load->view('timeline/index'); $this->load->view('interface_assets/footer', $footerData); diff --git a/application/controllers/Update.php b/application/controllers/Update.php index 855e713fd..0c2808586 100644 --- a/application/controllers/Update.php +++ b/application/controllers/Update.php @@ -272,6 +272,8 @@ class Update extends CI_Controller { $this->db->query($sql); $this->db->trans_complete(); + $this->_invalidate_dxcc_cache(); + $this->update_status(__("DONE")); echo 'success'; @@ -292,6 +294,26 @@ class Update extends CI_Controller { } + private function _invalidate_dxcc_cache() { + $this->load->is_loaded('cache') ?: $this->load->driver('cache', [ + 'adapter' => $this->config->item('cache_adapter') ?? 'file', + 'backup' => $this->config->item('cache_backup') ?? 'file', + 'key_prefix' => $this->config->item('cache_key_prefix') ?? '' + ]); + + $possible_cachekeys = [ + 'dxcc_exceptions', + 'dxcc_prefixes', + ]; + + foreach ($possible_cachekeys as $cache_key) { + if ($this->cache->get($cache_key) !== false) { + $this->cache->delete($cache_key); + log_message('info', "Deleted cache for key: " . $cache_key); + } + } + } + public function update_status($done=""){ if(!$this->load->is_loaded('Paths')) { diff --git a/application/controllers/User.php b/application/controllers/User.php index 92631c434..d166dd10a 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -44,7 +44,7 @@ class User extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/user.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/user.js")), + 'assets/js/sections/user.js', ]; $data['page_title'] = __("User Accounts"); @@ -174,7 +174,7 @@ class User extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/user.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/user.js")), + 'assets/js/sections/user.js', ]; // Get timezones @@ -239,6 +239,7 @@ class User extends CI_Controller { $data['user_sig_to_qso_tab'] = $this->input->post('user_sig_to_qso_tab'); $data['user_dok_to_qso_tab'] = $this->input->post('user_dok_to_qso_tab'); $data['user_station_to_qso_tab'] = $this->input->post('user_station_to_qso_tab'); + $data['user_qso_show_map'] = $this->input->post('user_qso_show_map') ?? 1; $data['user_language'] = $this->input->post('user_language'); $data['global_oqrs_text'] = $this->input->post('global_oqrs_text') ?? ''; $data['oqrs_grouped_search'] = $this->input->post('oqrs_grouped_search') ?? 'off'; @@ -312,7 +313,8 @@ class User extends CI_Controller { $this->input->post('oqrs_grouped_search_show_station_name') ?? 'off', $this->input->post('oqrs_auto_matching') ?? 'on', $this->input->post('oqrs_direct_auto_matching') ?? 'on', - $this->input->post('user_dxwaterfall_enable') ?? 'N', + $this->input->post('user_dxwaterfall_enable') ?? 'N', + $this->input->post('user_qso_show_map') ?? 1, $this->input->post('clubstation') == '1' ? true : false) ) { // Check for errors @@ -418,7 +420,7 @@ class User extends CI_Controller { $footerData = []; $footerData['scripts'] = [ - 'assets/js/sections/user.js?' . filemtime(realpath(__DIR__ . "/../../assets/js/sections/user.js")), + 'assets/js/sections/user.js', ]; // Get timezones @@ -714,7 +716,7 @@ class User extends CI_Controller { } if($this->input->post('user_dashboard_map')) { - $data['user_dashboard_map'] = $this->input->post('user_dashboard_map', false); + $data['user_dashboard_map'] = $this->input->post('user_dashboard_map', true); } else { $dkey_opt=$this->user_options_model->get_options('dashboard',array('option_name'=>'show_map','option_key'=>'boolean'), $this->uri->segment(3))->result(); if (count($dkey_opt)>0) { @@ -822,6 +824,17 @@ class User extends CI_Controller { } } + if ($this->input->post('user_qso_show_map')) { + $data['user_qso_show_map'] = $this->input->post('user_qso_show_map', true); + } else { + $qkey_opt = $this->user_options_model->get_options('qso_tab', array('option_name' => 'map', 'option_key' => 'show'), $this->uri->segment(3))->result(); + if (count($qkey_opt) > 0) { + $data['user_qso_show_map'] = $qkey_opt[0]->option_value; + } else { + $data['user_qso_show_map'] = 1; // default: show + } + } + if($this->input->post('global_oqrs_text')) { $data['global_oqrs_text'] = $this->input->post('global_oqrs_text', false); } else { diff --git a/application/controllers/Widgets.php b/application/controllers/Widgets.php index 4ca159bbe..3c4cbeae2 100644 --- a/application/controllers/Widgets.php +++ b/application/controllers/Widgets.php @@ -501,6 +501,14 @@ class Widgets extends CI_Controller { ); $mode_string = empty($cat_data->mode) ? "" : $cat_data->mode; + return trim(sprintf("%s %s", $tx_frequency, $mode_string)); + } elseif ($this->frequency->frequencies_are_equal($cat_data->frequency, $cat_data->frequency_rx)) { + // Frequencies are equal, show only one + $tx_frequency = $this->frequency->qrg_conversion( + $cat_data->frequency, $r_option, $source_unit, $target_unit + ); + $mode_string = empty($cat_data->mode) ? "" : $cat_data->mode; + return trim(sprintf("%s %s", $tx_frequency, $mode_string)); } else { $rx_frequency = $this->frequency->qrg_conversion( diff --git a/application/libraries/Callbook.php b/application/libraries/Callbook.php index d3bbe6ab1..cb047ddc2 100644 --- a/application/libraries/Callbook.php +++ b/application/libraries/Callbook.php @@ -10,8 +10,55 @@ class Callbook { private $ci; + // Duration of session keys + + // QRZ.com + // They write that session keys have no guaranteed lifetime. We should cache it to reuse it, but also be prepared + // to get a new one if the session key is invalid. + // Older documents showed that the duration was between 12-24 hours. So we set it to 4 hours to be on the safe side. + // Ref.: https://www.qrz.com/docs/xml/current_spec.html + const QRZ_SESSION_DURATION = 14400; // 4 hours + private $qrz_session_cachekey = null; + + // QRZCQ.com + // I could not find any information about session key duration on their website. Let's cache it for at least 55 minutes. + // In code we are prepared for an invalid session key, so if the session key is invalid we will get a new one and retry the search. + // Ref.: https://www.qrzcq.com/docs/api/xml/ + const QRZCQ_SESSION_DURATION = 3300; // 55 minutes + private $qrzcq_session_cachekey = null; + + // HamQTH.com + // Session Key is valid for 1 hour according to their documentation. We set it just a few moments below that to 55 Minutes. + // Ref.: https://www.hamqth.com/developers.php + const HAMQTH_SESSION_DURATION = 3300; // 55 minutes + private $hamqth_session_cachekey = null; + + // QRZRU.com + // Session Key is valid for 1 hour according to their documentation. We set it just a few moments below that to 55 Minutes. + // Ref.: https://www.qrz.ru/help/api/xml + const QRZRU_SESSION_DURATION = 3300; // 55 minutes + private $qrzru_session_cachekey = null; + + // Some generic stuff + private $logbook_not_configured; + private $error_obtaining_sessionkey; + public function __construct() { $this->ci = & get_instance(); + + $this->ci->load->is_loaded('cache') ?: $this->ci->load->driver('cache', [ + 'adapter' => $this->ci->config->item('cache_adapter') ?? 'file', + 'backup' => $this->ci->config->item('cache_backup') ?? 'file', + 'key_prefix' => $this->ci->config->item('cache_key_prefix') ?? '' + ]); + + $this->qrz_session_cachekey = 'qrz_session_key_'.$this->ci->config->item('qrz_username'); + $this->qrzcq_session_cachekey = 'qrzcq_session_key_'.$this->ci->config->item('qrzcq_username'); + $this->hamqth_session_cachekey = 'hamqth_session_key_'.$this->ci->config->item('hamqth_username'); + $this->qrzru_session_cachekey = 'qrzru_session_key_'.$this->ci->config->item('qrzru_username'); + + $this->logbook_not_configured = __("Lookup not configured. Please review configuration."); + $this->error_obtaining_sessionkey = __("Error obtaining a session key for callbook. Error: %s"); } // TODO: @@ -31,7 +78,7 @@ class Callbook { break; } else { $callbook_errors['error_'.$source] = $callbook['error']; - $callbook_errors['error_'.$source.'_name'] = $callbook['source']; + $callbook_errors['error_'.$source.'_name'] = $callbook['source'] ?? ''; } } } else { @@ -66,179 +113,225 @@ class Callbook { function queryCallbook($callsign, $source) { switch ($source) { case 'qrz': - $callbook = $this->qrz($callsign, $this->ci->config->item('use_fullname')); + $callbook = $this->_qrz($callsign, $this->ci->config->item('use_fullname')); break; case 'qrzcq': - $callbook = $this->qrzcq($callsign); + $callbook = $this->_qrzcq($callsign); break; case 'hamqth': - $callbook = $this->hamqth($callsign); + $callbook = $this->_hamqth($callsign); break; case 'qrzru': - $callbook = $this->qrzru($callsign); + $callbook = $this->_qrzru($callsign); break; default: - $callbook['error'] = 'No callbook defined. Please review configuration.'; + $callbook['error'] = $this->logbook_not_configured; } log_message('debug', 'Callbook lookup for '.$callsign.' using '.$source.': '.((($callbook['error'] ?? '' ) != '') ? $callbook['error'] : 'Success')); return $callbook; } - function qrz($callsign, $fullname) { - if (!$this->ci->load->is_loaded('qrz')) { - $this->ci->load->library('qrz'); - } - if ($this->ci->config->item('qrz_username') == null || $this->ci->config->item('qrz_password') == null) { - $callbook['error'] = 'Lookup not configured. Please review configuration.'; - $callbook['source'] = $this->ci->qrz->sourcename(); - } else { - $username = $this->ci->config->item('qrz_username'); - $password = $this->ci->config->item('qrz_password'); + private function _qrz($callsign, $fullname) { + $this->ci->load->is_loaded('qrz') ?: $this->ci->load->library('qrz'); - if (!$this->ci->session->userdata('qrz_session_key')) { + $callbook['source'] = $this->ci->qrz->sourcename(); + $username = trim($this->ci->config->item('qrz_username') ?? ''); + $password = trim($this->ci->config->item('qrz_password') ?? ''); + + if ($username == '' || $password == '') { + $callbook['error'] = $this->logbook_not_configured; + } else { + + if (!$this->ci->cache->get($this->qrz_session_cachekey)) { $qrz_session_key = $this->ci->qrz->session($username, $password); - $this->ci->session->set_userdata('qrz_session_key', $qrz_session_key); + if (!$this->_validate_sessionkey($qrz_session_key)) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $qrz_session_key); + $this->ci->cache->delete($this->qrz_session_cachekey); + return $callbook; + } + $this->ci->cache->save($this->qrz_session_cachekey, $qrz_session_key, self::QRZ_SESSION_DURATION); } - $callbook = $this->ci->qrz->search($callsign, $this->ci->session->userdata('qrz_session_key'), $fullname); + $callbook = $this->ci->qrz->search($callsign, $this->ci->cache->get($this->qrz_session_cachekey), $fullname); if ($callbook['error'] ?? '' == 'Invalid session key') { $qrz_session_key = $this->ci->qrz->session($username, $password); - $this->ci->session->set_userdata('qrz_session_key', $qrz_session_key); - $callbook = $this->ci->qrz->search($callsign, $this->ci->session->userdata('qrz_session_key'), $fullname); + if (!$this->_validate_sessionkey($qrz_session_key)) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $qrz_session_key); + $this->ci->cache->delete($this->qrz_session_cachekey); + return $callbook; + } + $this->ci->cache->save($this->qrz_session_cachekey, $qrz_session_key, self::QRZ_SESSION_DURATION); + $callbook = $this->ci->qrz->search($callsign, $this->ci->cache->get($this->qrz_session_cachekey), $fullname); } if (strpos($callbook['error'] ?? '', 'Not found') !== false && strpos($callsign, "/") !== false) { $plaincall = $this->get_plaincall($callsign); // Now try again but give back reduced data, as we can't validate location and stuff (true at the end) - $callbook = $this->ci->qrz->search($plaincall, $this->ci->session->userdata('qrz_session_key'), $fullname, true); + $callbook = $this->ci->qrz->search($plaincall, $this->ci->cache->get($this->qrz_session_cachekey), $fullname, true); } } - $callbook['source'] = $this->ci->qrz->sourcename(); return $callbook; } - function qrzcq($callsign) { - if (!$this->ci->load->is_loaded('qrzcq')) { - $this->ci->load->library('qrzcq'); - } - if ($this->ci->config->item('qrzcq_username') == null || $this->ci->config->item('qrzcq_password') == null) { - $callbook['error'] = 'Lookup not configured. Please review configuration.'; - $callbook['source'] = $this->ci->qrzcq->sourcename(); - } else { - $username = $this->ci->config->item('qrzcq_username'); - $password = $this->ci->config->item('qrzcq_password'); + private function _qrzcq($callsign) { + $this->ci->load->is_loaded('qrzcq') ?: $this->ci->load->library('qrzcq'); - if (!$this->ci->session->userdata('qrzcq_session_key')) { + $callbook['source'] = $this->ci->qrzcq->sourcename(); + $username = trim($this->ci->config->item('qrzcq_username') ?? ''); + $password = trim($this->ci->config->item('qrzcq_password') ?? ''); + + if ($username == '' || $password == '') { + $callbook['error'] = $this->logbook_not_configured; + } else { + + if (!$this->ci->cache->get($this->qrzcq_session_cachekey)) { $result = $this->ci->qrzcq->session($username, $password); + if (!$this->_validate_sessionkey($result[1])) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $result[1]); + $this->ci->cache->delete($this->qrzcq_session_cachekey); + return $callbook; + } if ($result[0] == 0) { - $this->ci->session->set_userdata('qrzcq_session_key', $result[1]); + $this->ci->cache->save($this->qrzcq_session_cachekey, $result[1], self::QRZCQ_SESSION_DURATION); } else { - $data['error'] = __("QRZCQ Error").": ".$result[1]; - $data['source'] = $this->ci->qrzcq->sourcename(); - return $data; + $callbook['error'] = __("QRZCQ Error").": ".$result[1]; + return $callbook; } } - $callbook = $this->ci->qrzcq->search($callsign, $this->ci->session->userdata('qrzcq_session_key')); + $callbook = $this->ci->qrzcq->search($callsign, $this->ci->cache->get($this->qrzcq_session_cachekey)); if ($callbook['error'] ?? '' == 'Invalid session key') { $qrzcq_session_key = $this->ci->qrzcq->session($username, $password); - $this->ci->session->set_userdata('qrzcq_session_key', $qrzcq_session_key); - $callbook = $this->ci->qrzcq->search($callsign, $this->ci->session->userdata('qrzcq_session_key')); + if (!$this->_validate_sessionkey($qrzcq_session_key[1])) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $qrzcq_session_key[1]); + $this->ci->cache->delete($this->qrzcq_session_cachekey); + return $callbook; + } + $this->ci->cache->save($this->qrzcq_session_cachekey, $qrzcq_session_key[1], self::QRZCQ_SESSION_DURATION); + $callbook = $this->ci->qrzcq->search($callsign, $this->ci->cache->get($this->qrzcq_session_cachekey)); } if (strpos($callbook['error'] ?? '', 'Not found') !== false && strpos($callsign, "/") !== false) { $plaincall = $this->get_plaincall($callsign); // Now try again but give back reduced data, as we can't validate location and stuff (true at the end) - $callbook = $this->ci->qrzcq->search($plaincall, $this->ci->session->userdata('qrzcq_session_key'), true); + $callbook = $this->ci->qrzcq->search($plaincall, $this->ci->cache->get($this->qrzcq_session_cachekey), true); } } - $callbook['source'] = $this->ci->qrzcq->sourcename(); return $callbook; } - function hamqth($callsign) { - // Load the HamQTH library - if (!$this->ci->load->is_loaded('hamqth')) { - $this->ci->load->library('hamqth'); - } - if ($this->ci->config->item('hamqth_username') == null || $this->ci->config->item('hamqth_password') == null) { - $callbook['error'] = 'Lookup not configured. Please review configuration.'; - $callbook['source'] = $this->ci->hamqth->sourcename(); - } else { - $username = $this->ci->config->item('hamqth_username'); - $password = $this->ci->config->item('hamqth_password'); + private function _hamqth($callsign) { + $this->ci->load->is_loaded('hamqth') ?: $this->ci->load->library('hamqth'); - if (!$this->ci->session->userdata('hamqth_session_key')) { + $callbook['source'] = $this->ci->hamqth->sourcename(); + $username = trim($this->ci->config->item('hamqth_username') ?? ''); + $password = trim($this->ci->config->item('hamqth_password') ?? ''); + + if ($username == '' || $password == '') { + $callbook['error'] = $this->logbook_not_configured; + } else { + + if (!$this->ci->cache->get($this->hamqth_session_cachekey)) { $hamqth_session_key = $this->ci->hamqth->session($username, $password); - if ($hamqth_session_key == false) { - $callbook['error'] = __("Error obtaining a session key for HamQTH query"); - $callbook['source'] = $this->ci->hamqth->sourcename(); + if (!$this->_validate_sessionkey($hamqth_session_key)) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $hamqth_session_key); + $this->ci->cache->delete($this->hamqth_session_cachekey); return $callbook; } else { - $this->ci->session->set_userdata('hamqth_session_key', $hamqth_session_key); + $this->ci->cache->save($this->hamqth_session_cachekey, $hamqth_session_key, self::HAMQTH_SESSION_DURATION); } } - $callbook = $this->ci->hamqth->search($callsign, $this->ci->session->userdata('hamqth_session_key')); + $callbook = $this->ci->hamqth->search($callsign, $this->ci->cache->get($this->hamqth_session_cachekey)); // If HamQTH session has expired, start a new session and retry the search. if ($callbook['error'] == "Session does not exist or expired") { $hamqth_session_key = $this->ci->hamqth->session($username, $password); - $this->ci->session->set_userdata('hamqth_session_key', $hamqth_session_key); - $callbook = $this->ci->hamqth->search($callsign, $this->ci->session->userdata('hamqth_session_key')); + if (!$this->_validate_sessionkey($hamqth_session_key)) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $hamqth_session_key); + $this->ci->cache->delete($this->hamqth_session_cachekey); + return $callbook; + } + $this->ci->cache->save($this->hamqth_session_cachekey, $hamqth_session_key, self::HAMQTH_SESSION_DURATION); + $callbook = $this->ci->hamqth->search($callsign, $this->ci->cache->get($this->hamqth_session_cachekey)); } if (strpos($callbook['error'] ?? '', 'Not found') !== false && strpos($callsign, "/") !== false) { $plaincall = $this->get_plaincall($callsign); // Now try again but give back reduced data, as we can't validate location and stuff (true at the end) - $callbook = $this->ci->hamqth->search($plaincall, $this->ci->session->userdata('hamqth_session_key'), true); + $callbook = $this->ci->hamqth->search($plaincall, $this->ci->cache->get($this->hamqth_session_cachekey), true); } } - $callbook['source'] = $this->ci->hamqth->sourcename(); return $callbook; } - function qrzru($callsign) { - if (!$this->ci->load->is_loaded('qrzru')) { - $this->ci->load->library('qrzru'); - } - if ($this->ci->config->item('qrzru_username') == null || $this->ci->config->item('qrzru_password') == null) { - $callbook['error'] = 'Lookup not configured. Please review configuration.'; - $callbook['source'] = $this->ci->qrzru->sourcename(); - } else { - $username = $this->ci->config->item('qrzru_username'); - $password = $this->ci->config->item('qrzru_password'); + private function _qrzru($callsign) { + $this->ci->load->is_loaded('qrzru') ?: $this->ci->load->library('qrzru'); - if (!$this->ci->session->userdata('qrzru_session_key')) { + $callbook['source'] = $this->ci->qrzru->sourcename(); + $username = trim($this->ci->config->item('qrzru_username') ?? ''); + $password = trim($this->ci->config->item('qrzru_password') ?? ''); + + if ($username == '' || $password == '') { + $callbook['error'] = $this->logbook_not_configured; + } else { + + if (!$this->ci->cache->get($this->qrzru_session_cachekey)) { $result = $this->ci->qrzru->session($username, $password); - $this->ci->session->set_userdata('qrzru_session_key', $result); + if (!$this->_validate_sessionkey($result)) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $result); + $this->ci->cache->delete($this->qrzru_session_cachekey); + return $callbook; + } + $this->ci->cache->save($this->qrzru_session_cachekey, $result, self::QRZRU_SESSION_DURATION); } - $callbook = $this->ci->qrzru->search($callsign, $this->ci->session->userdata('qrzru_session_key')); + $callbook = $this->ci->qrzru->search($callsign, $this->ci->cache->get($this->qrzru_session_cachekey)); if ($callbook['error'] ?? '' == 'Session does not exist or expired') { $qrzru_session_key = $this->ci->qrzru->session($username, $password); - $this->ci->session->set_userdata('qrzru_session_key', $qrzru_session_key); - $callbook = $this->ci->qrzru->search($callsign, $this->ci->session->userdata('qrzru_session_key')); + if (!$this->_validate_sessionkey($qrzru_session_key)) { + $callbook['error'] = sprintf($this->error_obtaining_sessionkey, $qrzru_session_key); + $this->ci->cache->delete($this->qrzru_session_cachekey); + return $callbook; + } + $this->ci->cache->save($this->qrzru_session_cachekey, $qrzru_session_key, self::QRZRU_SESSION_DURATION); + $callbook = $this->ci->qrzru->search($callsign, $this->ci->cache->get($this->qrzru_session_cachekey)); } if (strpos($callbook['error'] ?? '', 'Callsign not found') !== false && strpos($callsign, "/") !== false) { $plaincall = $this->get_plaincall($callsign); // Now try again but give back reduced data, as we can't validate location and stuff (true at the end) - $callbook = $this->ci->qrzru->search($plaincall, $this->ci->session->userdata('qrzru_session_key'), true); + $callbook = $this->ci->qrzru->search($plaincall, $this->ci->cache->get($this->qrzru_session_cachekey), true); } } - $callbook['source'] = $this->ci->qrzru->sourcename(); return $callbook; } + private function _validate_sessionkey($key) { + // Session key must be a non-empty string + if ($key == false || $key == '' || !is_string($key)) { + return false; + } + + // All session keys should be at least 10 characters. Regarding to their documentation all keys have aprox. the same format + // "2331uf894c4bd29f3923f3bacf02c532d7bd9" + // Since it can differ and we want to don't overcomplicate things we simply check if the key is at least 10 characters long. + // If not, we consider it as invalid. + if (strlen($key) < 10) { + return false; + } + + return true; + } + function get_plaincall($callsign) { $split_callsign = explode('/', $callsign); if (count($split_callsign) == 1) { // case of plain callsign --> return callsign diff --git a/application/libraries/DxclusterCache.php b/application/libraries/DxclusterCache.php index c6d9d4816..1a3bd2a73 100644 --- a/application/libraries/DxclusterCache.php +++ b/application/libraries/DxclusterCache.php @@ -80,7 +80,7 @@ class DxclusterCache { $this->_delete_from_cache($this->get_worked_call_key($logbook_key, $callsign)); // Look up DXCC and continent from callsign - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); $dxcc_info = $dxccobj->dxcc_lookup($callsign, date('Y-m-d')); if (!empty($dxcc_info['adif'])) { diff --git a/application/libraries/EqslImporter.php b/application/libraries/EqslImporter.php index 24fb550ac..ada4c634b 100644 --- a/application/libraries/EqslImporter.php +++ b/application/libraries/EqslImporter.php @@ -153,11 +153,6 @@ class EqslImporter // The report from eQSL should only contain entries that have been confirmed via eQSL // If there's a match for the QSO from the report in our log, it's confirmed via eQSL. - // If we have a positive match from eQSL, record it in the DB according to the user's preferences - if ( (array_key_exists('qsl_sent',$record)) && ($record['qsl_sent'] == "Y")) { - $record['qsl_sent'] = $config['eqsl_rcvd_mark']; - } - // SAT-Name not given? Create array-key and fill with null if (!(array_key_exists('sat_name', $record))) { $record['sat_name']=null; diff --git a/application/libraries/Frequency.php b/application/libraries/Frequency.php index 1b62663bd..42f9348ad 100644 --- a/application/libraries/Frequency.php +++ b/application/libraries/Frequency.php @@ -337,5 +337,25 @@ class Frequency { } return $unit; } + + /** + * Check if two frequencies are equal (handles different formats and empty values) + * + * @param mixed $freq1 First frequency (TX) + * @param mixed $freq2 Second frequency (RX) + * @return bool True if frequencies are equal or if one is empty/zero + */ + function frequencies_are_equal($freq1, $freq2) { + // Treat empty, null, or zero as "not set" + if (empty($freq1) || $freq1 === '0' || $freq1 === 0) { + return true; + } + if (empty($freq2) || $freq2 === '0' || $freq2 === 0) { + return true; + } + + // Compare as floats to handle different string representations + return (float)$freq1 === (float)$freq2; + } } /* End of file Frequency.php */ diff --git a/application/libraries/Hamqth.php b/application/libraries/Hamqth.php index de0c34e03..bddaca7b7 100644 --- a/application/libraries/Hamqth.php +++ b/application/libraries/Hamqth.php @@ -100,6 +100,7 @@ class Hamqth { $data['error'] = (string)$xml->session->error; $data['ituz'] = (string)$xml->search->itu; $data['cqz'] = (string)$xml->search->cq; + $data['darc_dok'] = (string)$xml->search->dok; if ($xml->search->country == "United States") { $data['us_county'] = (string)$xml->search->us_county; @@ -120,11 +121,13 @@ class Hamqth { $data['error'] = (string)$xml->session->error; $data['ituz'] = ''; $data['cqz'] = ''; + $data['darc_dok'] = ''; $data['us_county'] = ''; } } finally { + $data['source'] = $this->sourcename(); return $data; } } diff --git a/application/libraries/Paths.php b/application/libraries/Paths.php index 9d4d262aa..1b86af470 100644 --- a/application/libraries/Paths.php +++ b/application/libraries/Paths.php @@ -32,4 +32,30 @@ class Paths } return $datadir . "/" . $path; } + + function cache_buster($filepath) { + // make sure $filepath starts with a slash + if (substr($filepath, 0, 1) !== '/') $filepath = '/' . $filepath; + + // These files are not existent on purpose and should not trigger error logs + $err_exceptions = [ + '/assets/json/datatables_languages/en-US.json', + ]; + + $CI = & get_instance(); + $fullpath = empty($CI->config->item('directory')) ? $_SERVER['DOCUMENT_ROOT'] . $filepath : $_SERVER['DOCUMENT_ROOT'] . '/' . $CI->config->item('directory') . $filepath; + + // We comment out this line because latest teste at LA8AJA's XAMPP setup showed that it works even without it + // So we will keep it simple and just use the $filepath as is, since it seems to work fine on both Linux and Windows setups + // $fullpath = rtrim($_SERVER['DOCUMENT_ROOT'], '/\\') . str_replace('/', DIRECTORY_SEPARATOR, $filepath); + + if (file_exists($fullpath)) { + return base_url($filepath) . '?v=' . filemtime($fullpath); + } else { + if (!in_array($filepath, $err_exceptions)) { + log_message('error', 'CACHE BUSTER: File does not exist: ' . $fullpath); + } + } + return base_url($filepath); + } } diff --git a/application/libraries/Qrz.php b/application/libraries/Qrz.php index 161f2e00a..48d51d07c 100644 --- a/application/libraries/Qrz.php +++ b/application/libraries/Qrz.php @@ -182,6 +182,7 @@ class Qrz { $data['cqzone'] = ''; } } finally { + $data['source'] = $this->sourcename(); return $data; } } diff --git a/application/libraries/Qrzcq.php b/application/libraries/Qrzcq.php index 4518e072b..d8f99f241 100644 --- a/application/libraries/Qrzcq.php +++ b/application/libraries/Qrzcq.php @@ -143,6 +143,7 @@ class Qrzcq { } } finally { + $data['source'] = $this->sourcename(); return $data; } } diff --git a/application/libraries/Qrzru.php b/application/libraries/Qrzru.php index 63e423aef..fe659e13b 100644 --- a/application/libraries/Qrzru.php +++ b/application/libraries/Qrzru.php @@ -114,6 +114,7 @@ class Qrzru { $data['cqz'] = ''; } } finally { + $data['source'] = $this->sourcename(); return $data; } } diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 4cfaac1be..ac95027b6 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17352,169 +17598,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17522,85 +17772,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17984,7 +18234,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18012,119 +18262,125 @@ msgstr "Общо разстояние" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL картичката е изпратена чрез бюрото" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL картичката е изпратена директно" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL картичката е получена директно" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Това QSO беше потвърдено на" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Качване на лице на QSL картичка" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Качване на изображения на QSL картичка" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Качване на гръб на QSL картичка" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Маркирайте получено QSL (електронно)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/bs/LC_MESSAGES/messages.po b/application/locale/bs/LC_MESSAGES/messages.po index 7f703d672..4682c20a8 100644 --- a/application/locale/bs/LC_MESSAGES/messages.po +++ b/application/locale/bs/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-11-16 17:03+0000\n" "Last-Translator: Samir \n" "Language-Team: Bosnian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17370,169 +17616,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17540,85 +17790,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -18002,7 +18252,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18030,119 +18280,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/cnr/LC_MESSAGES/messages.po b/application/locale/cnr/LC_MESSAGES/messages.po index ae68b9d06..7c28c520e 100644 --- a/application/locale/cnr/LC_MESSAGES/messages.po +++ b/application/locale/cnr/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Montenegrin Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17365,169 +17611,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17535,85 +17785,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17997,7 +18247,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18025,119 +18275,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index 56e67d483..d7574ff45 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-09-23 14:46+0000\n" "Last-Translator: Filip Melik \n" "Language-Team: Czech Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17384,40 +17630,44 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Globální text" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Tento text je nepovinný text, který lze zobrazit na horní části stránky OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Seskupené vyhledávání" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -17425,131 +17675,131 @@ msgstr "" "Když je tato možnost zapnutá, budou všechny stanice s aktivním OQRS " "vyhledávány najednou." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Výchozí pásma" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Přihlašovací jméno Logbook of The World (LoTW)" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Heslo Logbook of The World (LoTW)" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Uživatelské jméno eQSL.cc" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Heslo eQSL.cc" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Heslo Club Logu" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17557,85 +17807,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Nahrávání stavu AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Nahrávání stavu SAT QSOs na" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodon server" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL Mastodon serveru" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Uložit změny účtu" @@ -18023,7 +18273,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18051,119 +18301,125 @@ msgstr "Celková vzdálenost" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Elevace antény" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Tato stanice používá LOTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Toto QSO bylo potvrzeno" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Více QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Detaily" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Označit QSL přijato (Elektronicky)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "obrázek eQSL" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 36b79337d..32774d550 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 e6f88ad60..a0b3f0c9f 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -26,9 +26,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-06 07:35+0000\n" -"Last-Translator: Fabian Berg \n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-13 11:47+0000\n" +"Last-Translator: Florian Wolters \n" "Language-Team: German \n" "Language: de_DE\n" @@ -36,7 +36,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -89,8 +89,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -101,11 +101,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -136,11 +136,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -161,8 +161,8 @@ msgid "Activated Gridsquare Map" msgstr "Karte der aktivierten Locator" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -324,51 +324,51 @@ msgstr "API-Schlüssel %s wurde gelöscht" msgid "Awards" msgstr "Diplome" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Diplome – %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -377,13 +377,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -395,29 +395,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Diplome - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Diplome – WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Log Ansicht – VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -430,43 +430,58 @@ msgstr "Log Ansicht – VUCC" msgid "Log View" msgstr "Log-Ansicht" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " und Band " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "und" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Alle Bänder (ohne SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "Band" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " und Satellit " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " und Orbit-Typ " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " und Ausbreitungsart " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " und Mode " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " und " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -487,14 +502,14 @@ msgstr " und " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -509,16 +524,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -532,111 +547,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Islands On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Log Ansicht – Counties" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Diplome - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Gearbeitete Locator" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Auf LoTW bestätigte Locator" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Per Papier QSL bestätigte Locator" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Summe gearbeiteter Locator" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Diplome - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "ITU-Zonen" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -667,8 +682,7 @@ msgstr "Erstelle Mode" msgid "Edit Band" msgstr "Bearbeite Band" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -701,15 +715,24 @@ msgstr "CBR-Daten importiert" msgid "Callsign statistics" msgstr "Rufzeichenstatistik" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " und Band " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " und Sat " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Rufzeichentester" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "CSV-Rufzeichentester" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Rufzeichen Tester" @@ -794,28 +817,31 @@ msgid "No user has configured Clublog." msgstr "Kein Benutzer hat Clublog konfiguriert." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -847,7 +873,7 @@ msgid "Update Contest" msgstr "Aktualisiere Contest" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -865,12 +891,12 @@ msgstr "Bearbeite Cronjob" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "nie" @@ -945,14 +971,14 @@ msgstr "DCL Schlüssel importiert" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1201,7 +1227,7 @@ msgstr "Keine QSOs zum hochladen gefunden." msgid "KML Export" msgstr "KML-Export" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "QSL-Karten Etiketten" @@ -1209,59 +1235,59 @@ msgstr "QSL-Karten Etiketten" msgid "Create Label Type" msgstr "Erstelle Etikettentyp" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Etikettenname" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Papiertyp" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Maßeinheit" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Oberer Abstand" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Linker Abstand" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSLs im Querformat" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSLs im Hochformat" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Horizontaler Abstand" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Vertikaler Abstand" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Etikettenbreite" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Etikettenhöhe" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Schriftgröße" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Anzahl von QSOs auf einem Etikett" @@ -1270,22 +1296,22 @@ msgid "Create Paper Type" msgstr "Erstelle Papiertyp" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Papierbezeichnung" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Papierbreite" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Papierhöhe" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1293,19 +1319,19 @@ msgstr "" "Dein Papier konnte nicht gespeichert werden. Denk daran, dass es nicht den " "gleichen Namen haben kann, wie ein bereits existierender Papier Typ." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "" "Du musst einen Papier Typ dem Etikett zuweisen, bevor du drucken kannst" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "Du musst ein Etikett erstellen und es für den Druck auswählen." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1313,31 +1339,31 @@ msgstr "" "Da ist was schief gelaufen! Das Etikett konnte nicht generiert werden. " "Überprüfe Etiketten- und Schrift-Größe." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "0 QSOs für den Druck gefunden!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Bearbeite Etikett" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Etikett wurde gespeichert." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Etikett wurde gelöscht." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Bearbeite Papier" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Papier wurde gespeichert." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Papier wurde gelöscht." @@ -1360,55 +1386,55 @@ msgstr "Stationslogbücher" msgid "Logbook" msgstr "Logbuch" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1416,95 +1442,97 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "" "Alle Rufzeichenlistensuchen sind fehlgeschlagen oder lieferten keine " "Ergebnisse." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1512,7 +1540,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1529,13 +1557,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1574,15 +1602,15 @@ msgstr "" msgid "Mode" msgstr "Mode" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1603,15 +1631,15 @@ msgstr "Mode" msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1633,7 +1661,7 @@ msgstr "RST (S)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1642,29 +1670,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1677,7 +1705,7 @@ msgstr "Land" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1685,7 +1713,7 @@ msgstr "Land" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1694,12 +1722,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1708,7 +1736,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1716,7 +1744,7 @@ msgstr "IOTA" msgid "State" msgstr "Staat" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1725,19 +1753,19 @@ msgstr "Staat" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1753,20 +1781,20 @@ msgstr "Staat" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Locator" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1776,9 +1804,9 @@ msgstr "Locator" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1796,18 +1824,18 @@ msgstr "Locator" msgid "Distance" msgstr "Distanz" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1815,25 +1843,26 @@ msgstr "Distanz" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1844,13 +1873,13 @@ msgstr "Distanz" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1889,13 +1918,14 @@ msgstr "Distanz" msgid "Band" msgstr "Band" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1916,13 +1946,13 @@ msgstr "Band" msgid "Frequency" msgstr "Frequenz" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1935,21 +1965,21 @@ msgstr "Frequenz" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operator" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1958,14 +1988,14 @@ msgstr "Operator" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "Gelöschtes DXCC" @@ -1973,12 +2003,12 @@ msgstr "Gelöschtes DXCC" msgid "Advanced logbook" msgstr "Erweitertes Logbuch" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC für %d QSO(s) aktualisiert." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Karte für DXCC %s und Planquadrat %s." @@ -1993,7 +2023,7 @@ msgstr "Schnellsuche" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -2005,11 +2035,11 @@ msgstr "Zertifikat importiert." msgid "Certificate Updated." msgstr "Zertifikat aktualisiert." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Zertifikat gelöscht." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2022,7 +2052,7 @@ msgstr "" "der tqsl-Applikation ohne Passwort exportierst!%s Für weitere Informationen " "besuche bitte die %sLoTW FAQ Seite%s im Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2033,53 +2063,53 @@ msgstr "" "der Dateiname 'key-only' enthält, handelt es sich typischerweise um eine " "Zertifikatsanforderung, die noch nicht von LoTW prozessiert wurde." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "" "Generischer Fehler bei der Verarbeitung des Zertifikats aus der Datei %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Generischer Fehler bei der Extraktion des privaten Schlüssels aus dem " "Zertifikat in der Datei %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Information" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Verbindung zu LoTW fehlgeschlagen." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-Login für Benutzer %s fehlgeschlagen: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Benutzername/Passwort falsch" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW derzeit nicht verfügbar. Versuche es später noch einmal." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "LoTW-Login OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Keine LoTW-Logindaten angegeben." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-Import" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Du hast deine ARRL LoTW Zugangsdaten nicht definiert!" @@ -2104,7 +2134,7 @@ msgstr "Bearbeite Mode" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Notizen" @@ -2423,19 +2453,19 @@ msgstr "QSL-Karten Upload" msgid "Print Requested QSLs" msgstr "Druck angefragter QSLs" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Logge QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Du musst eingeloggt sein, um auf diese URL zugreifen zu können." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Rufzeichen Transfer" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Kein Rufzeichen angegeben." @@ -2444,18 +2474,18 @@ msgstr "Kein Rufzeichen angegeben." msgid "Hardware Interfaces" msgstr "Hardware-Schnittstellen" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Funkgerät" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Zeitstempel" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2463,61 +2493,65 @@ msgstr "Zeitstempel" msgid "Options" msgstr "Optionen" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Einstellungen" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Standardgerät (klicken zum freigeben)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Setze als Standardgerät" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "UNBEKANNT" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "zuletzt aktualisiert" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Setze als Standardgerät" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Standardgerät (klicken zum freigeben)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Bearbeiten" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2526,22 +2560,40 @@ msgstr "Bearbeiten" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Löschen" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket ist derzeit das Standard-Funkgerät (klicken, um freizugeben)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "WebSocket als Standard-Funkgerät festlegen" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Keine CAT-verbundenen Funkgeräte gefunden." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Du kannst trotzdem die WebSocket-Option als dein Standard-Funkgerät " +"festlegen." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "CAT-Einstellungen bearbeiten" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Funkgerät erfolgreich entfernt" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Exportiere EDI" @@ -2609,7 +2661,7 @@ msgstr "Du hast keine Stations-Standorte. Klicke %s um eine zu erstellen!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2620,13 +2672,13 @@ msgstr "hier" msgid "Satellite Timers" msgstr "Satelliten-Timer" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2681,7 +2733,8 @@ msgstr "Bearbeite Stationsstandort: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2689,7 +2742,7 @@ msgstr "Bearbeite Stationsstandort: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2702,7 +2755,7 @@ msgid "Duplicate Station Location:" msgstr "Doppelter Stationsstandort:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Bitte den Wert für den Locator (%s) überprüfen" @@ -2765,7 +2818,8 @@ msgstr "Fehler. Link existiert bereits!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2773,19 +2827,19 @@ msgid "Disabled" msgstr "Ausgeschaltet" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Setze als aktives Logbuch" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Aktives Logbuch" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2795,16 +2849,16 @@ msgstr "" "alle hier verknüpften Standorte mit einem anderen Logbuch verknüpfen." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Zeige die öffentl. Seite für das Logbuch: " #: application/controllers/Stationsetup.php:307 msgid "Are you sure you want to delete the public slug?" -msgstr "Bist Du Dir sicher die Kurz-URL zu löschen?" +msgstr "Bist du dir sicher, die Kurz-URL zu löschen?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" @@ -2813,12 +2867,12 @@ msgstr "" "möchtest?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Aktivieren" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Aktive Station" @@ -2826,33 +2880,33 @@ msgstr "Aktive Station" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 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?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Lösche Log" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Kopieren" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2865,7 +2919,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Bitte wähle eines" @@ -2945,103 +2999,103 @@ msgstr "Bereite DXCC-Ausnahmen vor: " msgid "Preparing DXCC Prefixes: " msgstr "Bereite DXCC-Präfixe vor: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "FERTIG" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Aktualisierung läuft ..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC-Entitäten:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "DXCC-Ausnahmen:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "DXCC-Präfixe:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-Benutzer-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-Benutzer-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE-Update abgeschlossen. Ergebnis: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE-Update fehlgeschlagen. Ergebnis: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT-Aktualisierung" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Update von 'Hams of Note'" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Update der VUCC-Planquadat-Datei erfolgt. Ergebnis: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Update der VUCC-Planquadrat-Datei fehlgeschlagen. Ergebnis: " @@ -3075,61 +3129,61 @@ msgstr "Ungültige Parameter!" msgid "Add User" msgstr "Füge Benutzer hinzu" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Benutzername %s bereits vergeben!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-Mail %s wird bereits verwendet!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Ungültiges Passwort!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Benutzer %s hinzugefügt!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Benutzer" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Bearbeite Benutzer" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Benutzer %s bearbeitet" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profil" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Benutzer löschen" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Benutzer gelöscht" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Benutzer konnte nicht gelöscht werden!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Datenbankfehler:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3137,29 +3191,29 @@ msgstr "" "Herzlichen Glückwunsch! Wavelog wurde erfolgreich installiert. Du kannst " "dich nun anmelden." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Das ist nicht erlaubt!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Login fehlgeschlagen. Bitte erneut versuchen." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Anmeldung" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Du kannst dich nicht direkt bei einer Clubstation einloggen. Verwende " "stattdessen deinen persönlichen Account." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3167,7 +3221,7 @@ msgstr "" "Dein Konto ist gesperrt, da es zu viele fehlgeschlagene Anmeldeversuche gab. " "Bitte setze dein Passwort zurück." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3178,52 +3232,52 @@ msgstr "" "kontaktiere bitte den Administrator. Nur Administratoren können sich derzeit " "einloggen." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Falscher Benutzername oder Passwort!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Benutzer %s ausgeloggt." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Stationsname" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Stationsrufzeichen" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "Stations-DXCC" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Station CQ-Zone" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Station ITU-Zone" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Station Locator" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3232,35 +3286,35 @@ msgstr "" "Station erfolgreich erstellt! Willkommen bei Wavelog! Um die Einrichtung " "deiner Station abzuschliessen, klicke %shier%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "Stationssetup fehlgeschlagen! Bitte richte deine Station manuell ein." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "Passwort Reset ist in der Demo nicht verfügbar!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Passwort vergessen" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "E-Mail Einstellungen sind nicht korrekt." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Passwort Zurücksetzen angefordert." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Passwort zurücksetzen" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3268,7 +3322,7 @@ msgstr "" "Konnte das Konto nicht auf diesen Benutzernamen setzen. Bitte versuche einen " "anderen als \"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3276,7 +3330,7 @@ msgstr "" "Konnte das Konto nicht auf diese E-Mail-Adresse setzen. Bitte versuche eine " "andere Adresse als \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3285,7 +3339,7 @@ msgstr "" "Du kannst derzeit keinen anderen Benutzer imitieren. Du musst %s auf %s in " "deiner config.php setzen!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3294,15 +3348,15 @@ msgstr "" "Du kannst derzeit keinen anderen Benutzer imitieren. Bitte ändere zuerst den " "encryption_key in deiner config.php Datei!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Ungültiger Hash" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "Der Übernahme-Hash ist zu alt. Bitte versuche es erneut." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3310,15 +3364,15 @@ msgstr "" "Du kannst keinen Benutzer imitieren, solange du nicht als Ausgangs-Benutzer " "eingeloggt bist" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Es gab ein Problem mit deiner Sitzung. Bitte versuche es erneut." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "Der angeforderte Benutzer zum Imitieren existiert nicht" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3326,13 +3380,13 @@ msgstr "" "Konnte die korrekte Berechtigungsstufe für die Clubstation nicht bestimmen. " "Logge dich aus und wieder ein. Versuche es danach noch einmal." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Ups.. Etwas ist schiefgelaufen. Versuch, dich nochmal einzuloggen." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3340,7 +3394,7 @@ msgstr "" "Die Möglichkeit, schnell zurückzukehren, wurde deaktiviert, nachdem der " "Sicherheitsschlüssel abgelaufen ist. Bitte melde dich erneut an." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3354,7 +3408,7 @@ msgid "Satellite Gridsquare Map" msgstr "Satelliten Locator-Karte" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Öffentl. Suche" @@ -3407,14 +3461,19 @@ msgstr "Mehrere Nutzer über Kurz-URL gefunden" msgid "Gridsquare Zone finder" msgstr "Planquadrat-Zonen-Finder" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Lookup nicht konfiguriert. Bitte Konfiguration überprüfen." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "Fehler beim Abrufen eines Sessionkeys für das Callbook. Fehler: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "QRZCQ Fehler" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Fehler bei der Sessionerzeugung für HamQTH" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3572,27 +3631,27 @@ msgstr "HRDlog: Keine Stationsstandorte mit HRDlog Zugangsdaten gefunden." msgid "Station not accessible" msgstr "Station nicht verfügbar" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "Stations ID nicht erlaubt" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Kein Rufzeichen angegeben" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC muss numerisch sein" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Falscher Stationscall %s im QSO mit %s für das Stationsprofil %s: Nicht " "importiert" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3600,11 +3659,11 @@ msgstr "" "Du hast versucht, ein QSO mit ungültigem Datum zu importieren. Dieses QSO " "wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3612,7 +3671,7 @@ msgstr "" "Du hast versucht, ein QSO ohne angegebenes Rufzeichen zu importieren. Dieses " "QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3621,64 +3680,64 @@ msgstr "" "QSO um %s: Du hast versucht, ein QSO ohne Bandinformationen zu importieren. " "Dieses QSO wurde nicht importiert. Es ist ungültig" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "POTA Referenz bereits im Log" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO aktualisiert" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3692,7 +3751,7 @@ msgstr "QSO aktualisiert" msgid "Bearing" msgstr "Peilung" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "VuccGrids Tabelle ist leer. Bitte aktualisiere die VUCC-Grid-Daten." @@ -3830,42 +3889,40 @@ msgstr "Differenz" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3894,33 +3951,33 @@ msgstr "Differenz" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3941,7 +3998,7 @@ msgstr "Differenz" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Alle" @@ -3985,12 +4042,12 @@ msgstr "Zeitraum" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Ausbreitungsart" @@ -4006,7 +4063,7 @@ msgstr "Alle außer SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Keine/Leer" @@ -4016,11 +4073,11 @@ msgstr "Keine/Leer" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Flugzeug-Scatter" @@ -4030,11 +4087,11 @@ msgstr "Flugzeug-Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4044,11 +4101,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4058,11 +4115,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Rückwärts-Scatter" @@ -4072,11 +4129,11 @@ msgstr "Rückwärts-Scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4086,11 +4143,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Erde-Mond-Erde" @@ -4100,11 +4157,11 @@ msgstr "Erde-Mond-Erde" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadic E" @@ -4114,11 +4171,11 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "feldausgerichtete Irregularitäten" @@ -4128,11 +4185,11 @@ msgstr "feldausgerichtete Irregularitäten" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2-Reflexion" @@ -4142,11 +4199,11 @@ msgstr "F2-Reflexion" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Internet-gestützt" @@ -4156,11 +4213,11 @@ msgstr "Internet-gestützt" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4170,11 +4227,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4184,11 +4241,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor-Scatter" @@ -4198,11 +4255,11 @@ msgstr "Meteor-Scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" @@ -4212,11 +4269,11 @@ msgstr "Terrestrische oder atmosphärische Repeater oder Transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Regen-Scatter" @@ -4226,11 +4283,11 @@ msgstr "Regen-Scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satellit" @@ -4240,11 +4297,11 @@ msgstr "Satellit" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Transequatorial" @@ -4254,11 +4311,11 @@ msgstr "Transequatorial" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "troposphärisches Ducting" @@ -4267,18 +4324,18 @@ msgstr "troposphärisches Ducting" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4290,21 +4347,21 @@ msgstr "troposphärisches Ducting" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Anzeigen" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4315,7 +4372,7 @@ msgstr "Anzeigen" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4324,19 +4381,25 @@ msgstr "Anzeigen" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satellit" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4356,22 +4419,22 @@ msgstr "Bestätigung" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4417,11 +4480,11 @@ msgstr "Minimale Anzahl" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4430,11 +4493,10 @@ msgstr "Minimale Anzahl" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4454,7 +4516,8 @@ msgstr "Nichts gefunden!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4470,12 +4533,13 @@ msgstr "Nichts gefunden!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4499,7 +4563,7 @@ msgstr "Nichts gefunden!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Rufzeichen" @@ -4510,12 +4574,12 @@ msgstr "Zähler" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "QSOs anzeigen" @@ -4582,7 +4646,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4606,11 +4670,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4624,12 +4688,12 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4644,7 +4708,7 @@ msgstr "Datum" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4657,7 +4721,7 @@ msgstr "Zeit" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4712,20 +4776,20 @@ msgstr "Wichtig" msgid "Log Files must have the file type *.adi" msgstr "Die Logdatei muss im *.adi Format vorliegen" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Die max. Dateigröße für Uploads beträgt " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4787,8 +4851,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "GEFAHR" @@ -5064,8 +5128,8 @@ msgid "" "If you or your partner only sometimes exchange serial numbers, please leave " "this unchecked." msgstr "" -"Wenn du, oder dein QSO-Partner nur manchmal Seriennummern austauscht, lass " -"hier bitte unausgewählt." +"Wenn du oder dein QSO-Partner nur manchmal Seriennummern austauschen, lass " +"dies bitte unausgewählt." #: application/views/adif/import.php:435 msgid "" @@ -5182,8 +5246,8 @@ msgstr "POTA-Referenzen im ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Status" @@ -5202,7 +5266,7 @@ msgstr "Einfacher Name, um zu beschreiben, wofür du diese API verwendest." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5268,7 +5332,7 @@ msgstr "Die API-URL für diese Wavelog-Instanz ist" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5322,7 +5386,7 @@ msgstr "Berechtigungen" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5367,7 +5431,7 @@ msgstr "Erstelle einen Nur-Lesen-Schlüssel" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5376,8 +5440,8 @@ msgstr "Erstelle einen Nur-Lesen-Schlüssel" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5394,14 +5458,14 @@ msgstr "Erstelle einen Nur-Lesen-Schlüssel" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5457,9 +5521,9 @@ msgid "Filtering on" msgstr "Filtern auf" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "County" @@ -5514,19 +5578,14 @@ msgid "Counties Confirmed" msgstr "Bestätigte Counties" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5548,22 +5607,23 @@ msgid "Total" msgstr "Gesamt" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5617,10 +5677,12 @@ msgid "Awards - CQ WAZ" msgstr "Diplome - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filter" @@ -5630,92 +5692,114 @@ msgid "Show CQ Zone Map" msgstr "Zeige CQ-Zonen-Karte" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Standarddaten" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Heute" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Gestern" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Letzte 7 Tage" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Letzte 30 Tage" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Dieser Monat" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Letzter Monat" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Dieses Jahr" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "Letztes Jahr" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Zurücksetzen" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5723,7 +5807,9 @@ msgid "Date from" msgstr "Datum von" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5731,11 +5817,10 @@ msgid "Date to" msgstr "Datum bis" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5745,9 +5830,8 @@ msgid "Confirmed" msgstr "Bestätigt" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5757,67 +5841,64 @@ msgstr "Gearbeitet" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Zeige gearbeitete" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Zeige bestätigte" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Zeige nicht gearbeitete" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5825,95 +5906,161 @@ msgstr "QSO mit QSL-Typ anzeigen" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL-Karte" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabelle" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Karte" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legende:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL-Papierkarte" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "LoTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-\"Bestätigung\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) Gearbeitet" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Zusammenfassung" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Total (ohne SAT)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Gesamt gearbeitet" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5977,15 +6124,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Gearbeitet / Bestätigt" @@ -5994,11 +6141,9 @@ msgstr "Gearbeitet / Bestätigt" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Jedes Band" @@ -6006,23 +6151,20 @@ msgstr "Jedes Band" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Zurücksetzen" @@ -6078,161 +6220,127 @@ msgstr "" "Für diesen Award berücksichtigte Felder: DXCC (muss ein valider Eintrag " "gemäß DXCC-Liste der ADIF Spezifikation sein)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Zeige DXCC Karte" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Inklusive gelöschte" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antarktis" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Afrika" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Asien" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Nordamerika" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Südamerika" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Ozeanien" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Alle Bänder (ohne SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legende:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL-Papierkarte" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "LoTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-\"Bestätigung\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) Gearbeitet" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "DXCC Name" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Präfix" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" "Für deine Suchkriterien wurden keine Ergebnisse gefunden. Bitte versuche es " @@ -6506,23 +6614,23 @@ msgstr "Zeige IOTA Karte" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Name" @@ -6531,14 +6639,14 @@ msgid "Deleted" msgstr "Gelöscht" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6548,7 +6656,7 @@ msgstr "Gelöscht" msgid "ITU Zone" msgstr "ITU Zone" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6560,21 +6668,21 @@ msgstr "" "Telekommunikationsunion (ITU) definiert sind, an Land basierende " "Amateurfunkstationen kontaktiert wurden." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Du findest weitere Informationen auf der Webseite von %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Für diesen Award berücksichtigte Felder: ITU-Zone (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Diplome - ITU Zonen" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Zeige Karte der ITU-Zonen" @@ -6632,7 +6740,7 @@ msgstr "Resultate" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Stadt" @@ -6641,8 +6749,10 @@ msgstr "Stadt" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6777,7 +6887,7 @@ msgstr "Woiwodschaft" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Code" @@ -6793,7 +6903,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6831,8 +6941,8 @@ msgid "Band Categories" msgstr "Band-Kategorien" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Aktualisiere Staaten" @@ -6905,8 +7015,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "POTA Referenznummer(n)" @@ -6917,6 +7027,7 @@ msgstr "Provinz" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Bewege die Maus über eine Provinz" @@ -6984,7 +7095,7 @@ msgid "Reference" msgstr "Referenz" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -7052,7 +7163,7 @@ msgstr "" "und bestätigten Gitterquadraten auf einem gewünschten Band verliehen." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "Offizielle Informationen und Regeln findest du in diesem Dokument: %s." @@ -7137,25 +7248,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Diplome - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Kontinent" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "Keine QSOs gefunden, die den Kriterien dieses Awards entsprechen!" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "WAE Award" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7165,7 +7281,7 @@ msgstr "" "Amateurfunkstationen in europäischen Ländern und auf Inseln, die in der WAE-" "Länderliste aufgeführt sind, auf verschiedenen Bändern vergeben." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7175,11 +7291,11 @@ msgstr "" "RTTY, FT8, Digital und Mixed Modes. Es wird in fünf Klassen vergeben: WAE " "III, WAE II, WAE I, WAE TOP und die WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Für diesen Award berücksichtigte Felder: Region, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "WAE Name" @@ -7229,7 +7345,7 @@ msgid "Show WAJA Map" msgstr "Zeige WAJA-Karte" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Präfektur" @@ -7295,15 +7411,20 @@ msgid "Show WAP Map" msgstr "Zeige WAP-Karte" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Provinz" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Provinz" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Worked All Provinces of China" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7315,7 +7436,7 @@ msgstr "" "Provinzen, Gemeinden, autonomen Regionen und Sonderverwaltungsregionen " "Chinas zu fördern, um ein tieferes Verständnis für China zu schaffen." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7324,7 +7445,7 @@ msgstr "" "oder in einem einzigen Versuch während des jährlichen WAPC-Wettbewerbs " "erreicht werden." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7334,6 +7455,10 @@ msgstr "" "HongKong/321, Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506 " "sein) und STATE (ADIF: DXCC and STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Zeige WAPC Karte" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7449,8 +7574,8 @@ msgstr "Für diesen Award berücksichtigte Felder: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "WWFF Referenznummer" @@ -7506,215 +7631,215 @@ msgstr "" "Die Datensicherung der Notizen wurde erfolgreich abgeschlossen. Die " "Sicherungsdatei findest du hier" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klicken, um das Loggen vorzubereiten." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "um die Frequenz einzustellen" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Pop-up blockiert" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Pop-up wurde blockiert! Bitte erlaube Pop-ups für diese Seite dauerhaft." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT-Verbindung erforderlich" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "CAT-Verbindung aktivieren, um das Funkgerät abzustimmen" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Filter löschen" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Bandfilter erhalten (Bandsperre ist aktiv)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Kein Funkgerät ausgewählt - CAT-Verbindung deaktiviert" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio eingestellt" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Eingestellt auf" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Abstimmung fehlgeschlagen" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Abstimmen des Funkgeräts auf Frequenz fehlgeschlagen" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO vorbereitet" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" -msgstr "zum QSO Fenster gesendet" +msgstr "zum QSO-Fenster gesendet" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT-Verbindung" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Klicke, um die CAT-Steuerung zu aktivieren" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT folgt Funkgerät - Klicke zum Deaktivieren" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klicke, um die Bandsperre zu aktivieren (erfordert CAT-Verbindung)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Bandsperre aktiv - Klicke, um zu deaktivieren" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Bandsperre" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Bandsperre aktiv - Bandfilter folgt Band des Funkgeräts" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Bandfilter geändert zu" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "durch Transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Frequenzfilter eingestellt auf" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frequenz außerhalb bekannter Bänder - alle Bänder anzeigen" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Warte auf Funkgerätedaten..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Meine Favoriten" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Konnte Favoriten nicht laden" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Modi angewendet. Bandfilter erhalten (CAT-Steuerung ist aktiv)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Bevorzugte Bänder und Modi angewendet" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Meine Sub-Modes" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Sub-Mode-Filter aktiviert" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Sub-Mode-Filter deaktiviert - Zeige alle" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Erforderliche Sub-Modes" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Konfiguriere in Benutzereinstellungen - Modi" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Keine Sub-Modes konfiguriert - Konfiguriere in Benutzereinstellungen - Modi" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "Keine Sub-Modes aktiviert in den Einstellungen - Zeige alle Spots" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Deaktiviert - In den Benutzereinstellungen keine Sub-Modes aktiviert für " "diesen Mode" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Schalte CW-Mode Filter an/aus" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Schalte Digi-Mode Filter an/aus" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Schalte Fonie-Mode filter an/aus" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favoriten" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Speichere aktuelle Filter..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Gebe einen Namen für diese Filtervoreinstellung:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Filtervoreinstellung gespeichert" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Filtervoreinstellung geladen" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Filtervoreinstellungen gelöscht" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Bist du sicher, dass du diese Filtervoreinstellung löschen willst?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Keine gespeicherten Filtervoreinstellungen" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7722,64 +7847,64 @@ msgstr "" "Maximum von 20 Filtervoreinstellungen erreicht. Bitte lösche welche, bevor " "du neue hinzufügst." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Lade Daten vom DX-Cluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Zuletzt geladen für" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Max. Alter" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Geladen um" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Nächstes Update in" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "Minuten" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "Sekunden" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "Spots abgerufen" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "zeigen" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "alles anzeigen" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktive Filter" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Laden..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Nicht gearbeitet" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Gearbeitet, nicht bestätigt" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7787,268 +7912,271 @@ msgstr "Gearbeitet, nicht bestätigt" msgid "LoTW User" msgstr "LoTW-Benutzer" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Neues Call" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Neuer Kontinent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Neues Land" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Bereits gearbeitet" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Gearbeitet auf %s mit %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "von" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "gespotted" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Frischer Spot (<5 Minuten alt)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Contest" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klicke zum Anzeigen" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "auf QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klicke, um %s auf QRZ.com anzusehen" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zeige Details für" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Gearbeitet am" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Nicht auf diesem Band gearbeitet" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW-Nutzer. Letzter Upload war vor %d Tag(en)" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klicken um auf POTA.app anzuzeigen" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Klicken, um auf SOTL.as anzusehen" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Klicken, um auf cqgma.org zu sehen" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klicken, um auf IOTA-World.org anzusehen" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Siehe Details zu Kontinent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Siehe Details zu Kontinent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Sieh die Details für die CQ-Zone" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Sieh die Details für die CQ-Zone %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "in" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Schließe Vollbild" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Schalte Vollbild" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Bandfilter ist durch das Funkgerät gesteuert, solange CAT-Steuerung aktiv ist" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klicke, um Log vorzubereiten" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(erfordert CAT-Steuerung)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Kommentar" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Alter" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Eingang" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Ausgang" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "Spots" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "Spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "Spotter" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Bitte warte" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Bitte warte %s Sekunden bevor du ein weiteres Rufzeichen an die QSO-" "Eingabemaske schickst" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Lade Spots..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Keine Spots gefunden" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Keine Daten verfügbar" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Keine Spots für die ausgewählten Filter gefunden" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Fehler beim Laden der Spots. Bitte versuche es erneut." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Zeige alle Modi" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Zeige alle Spots" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Zeichne Spotter" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Erweitere Karte" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Zeige Tag/Nacht" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Dein QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Gehe zum Ausgangspunkt" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX-Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX-Cluster Hilfe" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Kompaktmodus - Verstecke/Zeige Menü" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8056,315 +8184,282 @@ msgstr "TRX:" msgid "None" msgstr "Nichts" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Abfragen - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "von:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Wähle alle Kontinente" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Welt" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Schalte Kontinentfilter für Afrika" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Schalte Kontinentfilter für Antarktis" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Schalte Kontinentfilter für Asien" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Schalte Kontinentfilter für Europa" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Schalte Kontinentfilter für Nordamerika" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Schalte Kontinentfilter für Ozeanien" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Schalte Kontinentfilter für Südamerika" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Erweiterte Filter" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Drücke" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "und klicke für die Auswahl mehrerer Optionen" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC-Status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phonie" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Erforderliche Marker" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Gearbeitetes Rufzeichen" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Weitere Marker" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Frisch (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spots von Kontinent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Gespotteter Kontinent der Station" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Wende Filter an" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Filterfavoriten" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Lösche alle Filter außer von Kontinent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Aktiviere 160m Bandfilter" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Aktiviere 80m Bandfilter" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Aktiviere 60m Bandfilter" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Aktiviere 40m Bandfilter" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Aktiviere 30m Bandfilter" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Aktiviere 20m Bandfilter" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Aktiviere 17m Bandfilter" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Aktiviere 15m Bandfilter" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Aktiviere 12m Bandfilter" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Aktiviere 10m Bandfilter" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Schalte 6m Bandfilter um" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Aktiviere VHF Bandfilter" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Aktiviere UHF Bandfilter" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Aktiviere SHF Bandfilter" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Lade Sub-Modi..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Aktiviere LoTW-Benutzer Bandfilter" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW-Benutzer" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" "Aktiviere DX-Spot Filter (gespotteter Kontinent ≠ Kontinent des Spotters)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Umschalten des Filters für neue Kontinente" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Neue Kontinente" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Filter für neue Entitäten umschalten" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Neue Entitäten" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Filter für neue Rufzeichen umschalten" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Neue Rufzeichen" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Aktiviere Filter für frische Spots (<5 Minuten alt)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Frisch" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Aktiviere Kontestfilter" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Aktiviere Geo-Jäger (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Referenziert" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Öffne DX-Kartenansicht" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX-Karte" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Suche Spots..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Suchspalte" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "Notiz: Karte zeigt DXCC Standorte, nicht die Spot-Standorte" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Alle Spalten" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Alter in Minuten" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot-Info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq." - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submode" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Gespottetes Rufzeichen" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX-Station" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Landesflagge" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC-Entität" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entität" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Spotter-Rufzeichen" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter-Kontinent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "CQ-Zone des Spotters" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Letztes QSO-Datum" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Spezial" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Spezialmarker" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8372,6 +8467,60 @@ msgstr "Spezialmarker" msgid "Message" msgstr "Nachricht" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter-Kontinent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "CQ-Zone des Spotters" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Suche Spots..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "Notiz: Karte zeigt DXCC Standorte, nicht die Spot-Standorte" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Alter in Minuten" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq." + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Gespottetes Rufzeichen" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Landesflagge" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC-Entität" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spotter-Rufzeichen" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Letztes QSO-Datum" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Spezial" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Spezialmarker" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Bitte gültige Zahlen für die Frequenz eingeben" @@ -8651,7 +8800,7 @@ msgstr "" "den IOTA-Referenzcode)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8769,19 +8918,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8815,15 +8964,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Ja" @@ -8838,19 +8989,19 @@ msgstr "Ja" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8884,16 +9035,17 @@ msgstr "Ja" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Nein" @@ -8924,7 +9076,7 @@ msgid "First QSO" msgstr "Erstes QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Letztes QSO" @@ -9033,8 +9185,8 @@ msgid "Callsign DXCC identification" msgstr "Identifikation des DXCC zum Rufzeichen" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Rufzeichen: " @@ -9324,8 +9476,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9646,7 +9798,7 @@ msgstr "ADIF-Name" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9686,11 +9838,11 @@ msgstr "Warnung! Bist du sicher den folgenden Contest zu löschen: " #: application/views/contesting/add.php:56 msgid "Warning! Are you sure you want to activate all contests?" -msgstr "Warnung! Bist du sicher, dass du ALLE Contests aktivieren willst?" +msgstr "Warnung! Bist du sicher, dass du ALLE Conteste aktivieren willst?" #: application/views/contesting/add.php:57 msgid "Warning! Are you sure you want to deactivate all contests?" -msgstr "Warnung! Bist du sicher, dass du ALLE Contests deaktivieren willst?" +msgstr "Warnung! Bist du sicher, dass du ALLE Conteste deaktivieren willst?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 @@ -9716,7 +9868,7 @@ msgstr "Erstelle" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Contest-Name" @@ -9795,8 +9947,8 @@ msgid "Locator" msgstr "Lokator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9912,11 +10064,11 @@ msgstr "Identifikator" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Eingeschaltet" @@ -10011,7 +10163,8 @@ msgid "Cron List" msgstr "Cron-Liste" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10212,9 +10365,9 @@ msgstr "Benötigt" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10236,10 +10389,10 @@ msgstr "Benötigt" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Gesendet" @@ -10249,9 +10402,9 @@ msgstr "Gesendet" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10272,10 +10425,10 @@ msgstr "Gesendet" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Erhalten" @@ -10283,17 +10436,17 @@ msgstr "Erhalten" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10316,11 +10469,11 @@ msgstr "Erhalten" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Angefragt" @@ -10346,6 +10499,38 @@ msgstr "Letztes Update um %s." msgid "Data provided by HAMqsl." msgstr "Daten bereitgestellt von HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "K-Index: Planetäre geomagnetische Aktivität (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "A-Index: Täglicher geomagnetischer Aktivitätsindex" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Index des solaren Flusses" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Solare Windgeschwindigkeit (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Signal-Rausch Verhältnis" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Höhe des Röntgen-Solar-Flusses" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Nummer des Sonnenfleckenzyklus" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Aurora Aktivitätslevel (Kp borealis)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Anzahl QSOs für diesen Wochentag" @@ -10425,7 +10610,7 @@ msgstr "Startdatum" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Enddatum" @@ -10566,7 +10751,7 @@ msgstr "" #: application/views/lotw_views/upload_cert.php:8 #: application/views/lotw_views/upload_cert.php:34 msgid "Upload Logbook of the World .p12 Certificate" -msgstr "Lade LoTW .p12-Zertifikat hoch" +msgstr "Lade Logbook of the World .p12-Zertifikat hoch" #: application/views/dcl_views/upload_cert.php:19 #: application/views/lotw_views/upload_cert.php:19 @@ -10596,7 +10781,7 @@ msgstr "Clicke auf 'Save Callsign Certificate File'" #: application/views/dcl_views/upload_cert.php:26 #: application/views/lotw_views/upload_cert.php:26 msgid "Do not add a password" -msgstr "Bitte KEIN Passwort für das Zertifikat setzen" +msgstr "Bitte kein Passwort für das Zertifikat setzen" #: application/views/dcl_views/upload_cert.php:27 #: application/views/lotw_views/upload_cert.php:27 @@ -10765,7 +10950,8 @@ msgstr "Erfolgreich" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Fehlgeschlagen" @@ -10846,109 +11032,130 @@ msgstr "Module" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Installiert" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Nicht installiert" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "Cache Informationen" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "Aktuelle Konfiguration" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "Primär-Adapter" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "Backup-Adapter" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "Pfad für %s-Adapter" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "Key Prefix" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" -"Der Cache verwendet derzeit den Backup-Adapter, weil der Primäre nicht " -"verfügbar ist." - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "Der Cache funktioniert einwandfrei. Alles in Ordnung!" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "Cache-Details" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "Gesamtgröße" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "Anzahl der Keys" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "Der Cache funktioniert einwandfrei. Alles in Ordnung!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"Der Cache verwendet derzeit den Backup-Adapter, da der primäre nicht " +"verfügbar ist. Überprüf deine Dateiberechtigungen, PHP-Erweiterungen und/" +"oder deine Netzwerkverbindung zu den Diensten (wenn du Redis/Memcached " +"verwendest)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"Cache funktioniert nicht! Zurzeit verwendet das System einen %s Adapter. " +"Überprüfe deine Datei-Berechtigungen, PHP-Erweiterungen und- wenn du Redis/" +"Memcached verwendest - deine Netzwerkverbindung zu den Diensten. Du kannst " +"Wavelog weiter nutzen, aber es werden keine Werte zwischengespeichert (was " +"schlecht ist)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "Verfügbare Adapter" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "Cache leeren" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Git Informationen" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Letzter Abruf" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Nach neuer Version suchen" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10956,77 +11163,77 @@ msgstr "Nach neuer Version suchen" msgid "Update now" msgstr "Jetzt aktualisieren" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Datum des Datei-Downloads" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Datei" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Letzte Aktualisierung" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "DXCC-Update von Club Log" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Aktualisierung" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "DOK-Datei Download" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "LoTW-Benutzer Download" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "POTA-Datei Download" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "SCP-Datei Download" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "SOTA-Datei Download" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "WWFF-Datei Download" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "TLE-Update" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "'Hams of Note' Update" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCC-Locator" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "QSO-DB Wartung" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -11034,141 +11241,141 @@ msgid_plural "" msgstr[0] "Die Datenbank enthält %d QSO ohne Stationsstandort" msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsstandort" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 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:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Zielstandort" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Neu zuweisen" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "Jedes QSO in deiner Datenbank ist einem Stationsstandort zugeordnet" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Alles in Ordnung" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albanisch" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Armenisch" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bosnisch" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Bulgarisch" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Kroatisch" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Tschechisch" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Niederländisch" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Englisch" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estnisch" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Finnisch" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Französisch" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Deutsch" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Griechisch" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Ungarisch" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Italienisch" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japanisch" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Lettisch" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Litauisch" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Montenegrinisch" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polnisch" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portugiesisch" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Serbisch" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Slowakisch" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Slowenisch" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Spanisch" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Schwedisch" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Türkisch" @@ -11229,7 +11436,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Nur QSO mit einem definierten Locator werden auch exportiert!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL-Info" @@ -11478,7 +11685,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "QSL-Nachricht" @@ -11618,31 +11825,32 @@ msgid "QSL Date" msgstr "QSL-Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Ansicht" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Leer" @@ -11725,7 +11933,7 @@ msgstr "Die QSOs wurden als zu HRDLog exportiert markiert." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "QSO bearbeiten" @@ -12127,80 +12335,80 @@ msgstr "Versionsinfo" msgid "Failed to load the modal. Please try again." msgstr "Fehler beim Laden des Modals. Bitte versuche es erneut." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Beschreibung:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Suchmuster-Beschreibung" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Dein Suchmuster wurde gespeichert!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Suchmuster bearbeiten" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Gespeicherte Suchmuster:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Suchmuster ausführen" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Gespeicherte Suchmuster" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 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:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Nach ADIF exportieren" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Im erweiterten Logbuch öffnen" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 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:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "Das gespeicherte Suchmuster wurde gelöscht!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 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:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "Die Beschreibung des Suchmusters wurde aktualisiert!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 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:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12212,15 +12420,15 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Anzahl: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Locator: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12228,57 +12436,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locator" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" +"Fehler beim Nachschlagen des Standortes. Bitte prüfe die Browserkonsole." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "Locator" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Summe" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSL-Karte für " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 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:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-Karte" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL-Karte für " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "QSL-Bilddatei" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Vorderseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Rückseite QSL-Karte:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Weitere QSOs zu einer QSL-Karte hinzufügen" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut!" @@ -12432,7 +12645,7 @@ msgid "Satellite Pass" msgstr "Satellitenüberflug" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Admin" @@ -12457,7 +12670,7 @@ msgid "Log" msgstr "Logge" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12554,7 +12767,7 @@ msgid "Gridsquare Zone checker" msgstr "Planquadrat-Zonen-Prüfung" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Hilfe" @@ -12690,7 +12903,7 @@ msgid "Total height of one label" msgstr "Gesamthöhe eines Etiketts" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Schriftgröße" @@ -12748,14 +12961,14 @@ msgstr "Ausrichtung des Papiers" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Querformat" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Hochformat" @@ -12774,47 +12987,52 @@ msgstr "" "den Etiketten-Stil." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Markiere QSL als gedruckt" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Drucken" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Optionen für den Labeldruck" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Neuen Etiketten-Typ erstellen" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Neuen Papier-Typ erstellen" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Papier-Typen" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Breite" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Höhe" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Verwendet bei Etiketten" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Ausrichtung" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Etiketten-Typen" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12822,56 +13040,66 @@ msgstr "Etiketten-Typen" msgid "QSOs" msgstr "QSOs" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Für den Druck verwenden" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Kein Papier zugeordnet" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Ausstehende QSL-Karten Etiketten" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "Wartende QSOs" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "QSOs ansehen" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Mein Rufzeichen drucken?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Mit Locator?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Inklusive Referenz? (SIG, SOTA, POTA, IOTA, WWFF; Wenn gesetzt am " "Stationsstandort)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Inklusive Via (falls gesetzt)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Inklusive QSLMSG (falls gesetzt)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Inklusive TNX Nachricht?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Druck starten bei?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Gib die Startposition für den Labeldruck an" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -13032,21 +13260,21 @@ msgstr "DXCC CQ-Zone" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Station" @@ -13131,88 +13359,92 @@ msgstr "" "Warnung. Dieses Werkzeug kann irreversible Veränderungen herbeiführen und " "sollte nur mit entsprechendem Wissen genutzt werden." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Alle Stationsstandorte" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "Prüfe alle QSOs im Logbuch auf inkorrekte CQ-Zonen" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Nutze Wavelog für die Bestimmung der CQ-Zone für alle QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Prüfe" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "Prüfe alle QSOs im Logbuch auf inkorrekte ITU-Zonen" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Nutze Wavelog für die Bestimmung der ITU-Zone für alle QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Prüfe Planquadrate" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Prüfe Planquadrate, die nicht mit dem DXCC übereinstimmen" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Aktualisiere Kontinent" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Aktualisiere fehlende oder inkorrekte Kontinentinformationen" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Aktualisiere fehlende Staat-/Provinzinformationen" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Aktualisiere Distanzen" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Berechne und aktualisiere Distanzinformationen für QSOs" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "Überprüfe alle QSOs im Logbuch auf inkorrekte DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Nutze Wavelog, um das DXCC für alle QSOs zu bestimmen." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Finde QSOs mit fehlendem Planquadrat in Rufzeichenliste" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Schlage in Rufzeichenliste nach, um das Planquadrat zu setzen" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Dies ist auf 150 Rufzeichen pro Lauf begrenzt!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Prüfe IOTA gegen DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Wavelog benutzen, um IOTA gegen DXCC zu prüfen" @@ -13259,10 +13491,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Region" @@ -13331,9 +13563,9 @@ msgid "QSL Sent Method" msgstr "QSL Sendemethode" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL via" @@ -13357,84 +13589,84 @@ msgstr "Band RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Ungültig" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Verifiziert" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Direkt" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Büro" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Elektronisch" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13796,26 +14028,26 @@ msgstr "Planquadrate für" msgid "Non DXCC matching gridsquare" msgstr "Planquadrat, das nicht dem DXCC entspricht" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Von" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "bis" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Keine/Leer" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13823,51 +14055,69 @@ msgstr "" "Entfernung in Kilometern. Die Suche wird nach Entfernungen suchen, die " "größer oder gleich diesem Wert sind." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Dauer" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Dauer in Minuten. Die Suche zeigt Ergebnisse mit einer Dauer größer als oder " +"gleich dieses Wertes." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Spalte zur Sortierung" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "QSO-Zeit" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO Änderungsdatum" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Sortierreihenfolge" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Absteigend" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Aufsteigend" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Wende Filter an" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "QSL-Filter" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL gesendet" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13884,32 +14134,32 @@ msgstr "QSL gesendet" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "In Warteschlange" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13938,279 +14188,279 @@ msgstr "In Warteschlange" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Ungültig (Ignorieren)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL erhalten" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "QSL-Send. Methode" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "QSL-Empf. Methode" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW gesendet" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW erhalten" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog gesendet" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog erhalten" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL gesendet" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL erhalten" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL gesendet" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL empfangen" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "QSL Bilder" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ gesendet" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ empfangen" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Schnellfilter" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Schnellsuche in Markierten: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Suche Datum" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Suche DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Suche Staat" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Suche Locator" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Suche CQ-Zone" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Suche ITU-Zone" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Suche Mode" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Suche Band" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Suche IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Suche SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Suche POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Suche WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Suche Operator" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Warnung! Bist du sicher, dass du die markierten QSO löschen willst?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO(s) werden gelöscht" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Bei Markierten: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Aktualisieren aus der Rufzeichenliste" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "In die Warteschlange (Büro)" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "In die Warteschlange (Direkt)" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "In die Warteschlange (Elektronisch)" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Gesendet (Büro)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Gesendet (Direkt)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Gesendet (Elektronisch)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Nicht gesendet" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL nicht erforderlich" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Nicht erhalten" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Erhalten (Büro)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Erhalten (Direkt)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Erhalten (Elektronisch)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Erstelle ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Label drucken" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "QSL-Präsentation" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Resultate" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplikate" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Globus-Karte" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Datenbankwerkzeuge" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Letzte Änderung" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL-Nachricht (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL-Nachricht (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Mein Refs" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Ant Az" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Antennenazimut" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Ant El" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Antennenelevation" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Sendeleistung" @@ -14290,15 +14540,15 @@ msgstr "Ergebnisse des Updates der Planquadrate:" msgid "The number of QSOs updated for gridsquare is" msgstr "Anzahl aktualisierter QSOs bezüglich Planquadrat ist" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Inklusive Via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "QSLMSG einfügen" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "TNX Nachricht einfügen" @@ -14365,35 +14615,35 @@ msgstr "Derzeit unterstützte Länder" msgid "Basic QSO Information" msgstr "Grundlegende QSO Informationen" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Stationsdetails" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Bestätigungsservices" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Geographische Informationen" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Award-Programme" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Zusätzliche Informationen" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Technische Details" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Nur für Debug-Zwecke" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14401,7 +14651,7 @@ msgstr "" "Dies ist nur für Debug-Zwecke vorhanden und nicht vorgesehen, standardmäßig " "angezeigt zu werden" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Kartenebenen" @@ -14530,7 +14780,7 @@ msgid "Date Expires" msgstr "Ablaufdatum" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Letzter Upload" @@ -15202,7 +15452,7 @@ msgstr "Gibt es weitere Informationen, über die wir Bescheid wissen sollten?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "E-Mail" @@ -15219,11 +15469,11 @@ msgstr "Sende eine 'Nicht im Log'-Anfrage" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Via" @@ -15235,7 +15485,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Zur Warteschlange hinzufügen" @@ -15650,7 +15900,7 @@ msgstr "Markiere angefragte QSLs als gesendet" msgid "No QSLs to print were found!" msgstr "Es wurden keine QSLs zum Drucken gefunden!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15798,7 +16048,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Sendeleistung (W)" @@ -15860,9 +16110,9 @@ msgid "Station County" msgstr "Stations County" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "SIG-Info" @@ -15910,7 +16160,7 @@ msgstr "Hinweis: Nicht bearbeitbar. Wird hier nur angezeigt." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Modifiziert" @@ -16035,16 +16285,16 @@ msgstr "Suche im DX-Cluster nach letztem Spot" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "IOTA-Referenznummer" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "SOTA-Referenznummer" @@ -16084,11 +16334,11 @@ msgstr "Zum Beispiel: Q03" msgid "E-mail address of QSO-partner" msgstr "E-Mail Adresse des QSO-Partners" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Satellit" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Satellitenmodus" @@ -16196,7 +16446,7 @@ msgstr "" "Unten findest du eine Liste mit allen aktiven Funkgeräten, welche mit " "Wavelog verbunden sind." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16204,16 +16454,34 @@ msgstr "" "Falls du bis jetzt keine Funkgeräte verbunden hast, geh zur API Seite und " "generiere API Schlüssel." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Als Club-Operator kannst du ein Standard-Funkgerät festlegen, welches nur " +"für dich gilt. Dadurch hast du ein Funkgerät, das automatisch ausgewählt " +"wird, wenn du dich einloggst. Andere Funkgeräte kannst du trotzdem benutzen." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Als normaler Benutzer kannst du ein Standard-Funkgerät für dich festlegen. " +"Dadurch hast du ein Standard-Funkgerät, welches automatisch ausgewählt wird, " +"wenn du dich einloggst. Andere Funkgeräte kannst du trotzdem benutzen." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Wie du die %s verwendest, findest du im Wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "" +"Du kannst im Wiki herausfinden, wie du die %sFunktionen der Funkgeräte-" +"Steuerung%s nutzen kannst." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "Funkgerät-Funktionen" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Bitte warten..." @@ -16557,13 +16825,6 @@ msgstr "AOS-Zeit" msgid "LOS Time" msgstr "LOS-Zeit" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Dauer" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Pfad" @@ -16680,6 +16941,11 @@ msgstr "Suchmuster speichern" msgid "Stored queries" msgstr "Gespeicherte Suchmuster" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Wie du die %s verwendest, findest du im Wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "Suchfilter-Funktionen" @@ -16757,35 +17023,35 @@ msgstr "Markiere QSL gesendet (Direkt)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Markiere QSL erhalten (Büro)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Markiere QSL erhalten (Direkt)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Markiere QSL-Karte als angefragt (Büro)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Markiere QSL-Karte als angefragt (Direkt)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Markiere QSL-Karte als nicht notwendig" @@ -17337,7 +17603,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Probleme? Schau im %sWiki%s nach." @@ -17552,7 +17818,7 @@ msgid "Link Location" msgstr "Verknüpfe Standort" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Station Name" @@ -17573,19 +17839,19 @@ msgstr "" "an verschiedenen Standorten arbeitest, die jedoch zu derselben DXCC- oder " "VUCC-Zone gehören." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Verlinkte Standorte bearbeiten" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Besucherseite" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Stationsstandorte" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17593,13 +17859,13 @@ msgstr "" "Stationsstandorte definieren die Orte, von denen aus du QRV bist. Dein " "Zuhause, Bei Freunden oder Unterwegs." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "Ähnlich wie Logbücher trennen die Stationsstandorte die entsprechenden QSO " "voneinander ab." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17607,7 +17873,7 @@ msgstr "" "Es kann immer nur ein Stationsstandort aktiv sein. Welches das aktuell ist " "siehst du in der Liste an dem 'Aktive Station' Symbol." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17615,23 +17881,23 @@ msgstr "" "Die Spalte 'verlinkt' zeigt an, ob der Standort mit dem aktiven Logbuch " "verknüpft wurde." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Erstelle einen neuen Stationsstandort" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Zeige nur Standorte vom aktiven Logbuch" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Zeige alle Standorte" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Zeige eine Standortliste" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17639,7 +17905,7 @@ msgstr "" "Achtung: Du musst einen aktiven Stationsstandort auswählen. Gehe zu " "Rufzeichen -> Stationsstandorte um einen zu aktivieren." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17647,23 +17913,23 @@ msgstr "" "Aufgrund von Änderungen in Wavelog musst du QSOs wieder einem " "Stationsstandort zuordnen." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Wartung" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Bitte mache die Zuordnung in " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Verlinkt" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Favorit" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "markiere/demarkiere als Favorit" @@ -18423,53 +18689,57 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Zeige Felder auf QSO-Reiter" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Zeige Karte bei der QSO-Eingabe" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Die aktivierten Elemente werden auf dem QSO-Reiter statt des allgemeinen " "Reiters angezeigt." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Online-QSL-Anfrage (OQRS)-Einstellungen" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Globaler Text" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Dies ist ein optionaler Text, der auf oben auf der OQRS Seite angezeigt " "werden kann." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Gruppierte Suche" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Aus" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "An" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "Wenn aktiviert, werden alle Stationsstandorte auf einmal durchsucht." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Zeige den Name des Stationsstandorts in der gruppierten Suche" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18478,11 +18748,11 @@ msgstr "" "der Name des Stationsstandortes in der Ergebnistabelle gezeigt werden soll " "oder nicht." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Automatische Bestimmung von OQRS-Übereinstimmungen" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18491,69 +18761,69 @@ msgstr "" "durchgeführt, und das System versucht, eingehende Anfragen automatisch mit " "vorhandenen Protokollen abzugleichen." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Automatischer OQRS-Abgleich für direkte Anfragen" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Wenn diese Option aktiviert ist, erfolgt eine automatischer OQRS-Abgleich " "für direkte Anfragen." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Standardwerte/Favoriten" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Einstellung für Standardband und -bestätigungsmethode" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Standardband" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Standard QSL-Methoden" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Externe Dienste" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Benutzername" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Passwort" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Login Test" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc Benutzername" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc Passwort" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log E-Mail" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Club Log Passwort" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18563,15 +18833,15 @@ msgstr "" "generieren, um Clublog in Wavelog zu nutzen. Besuche %sdeine Clublog-" "Einstellungsseite%s, um dies zu tun." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "On-Air Widget" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18579,16 +18849,16 @@ msgstr "" "Hinweis: Wenn du dieses Widget nutzen möchtest, solltest du mindestens einen " "Transceiver via CAT konfiguriert haben." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Wenn diese Einstellung aktiviert ist, findest du das Widget unter %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Zeige \"Zuletzt gesehen\"-Zeit an" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18596,15 +18866,15 @@ msgstr "" "Mit dieser Einstellung kannst du beeinflussen, ob die Zeit aus 'Zuletzt " "gesehen' im Widget angezeigt werden soll, oder nicht." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Zeige nur zuletzt aktualisierten CAT-Transceiver an" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" -msgstr "Nein, Zeige alle CAT-Transceiver" +msgstr "Nein, zeige alle CAT-Transceiver" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18616,15 +18886,15 @@ msgstr "" "geupdated wurde. Hast du nur einen CAT-TRX, so hat diese Einstellung keinen " "Effekt." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSOs-Widget" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Zeige genaue QSO-Zeit an" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18632,40 +18902,40 @@ msgstr "" "Diese Einstellung steuert, ob die genaue QSO-Zeit im QSO-Widget angezeigt " "werden soll oder nicht." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Verschiedenes" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "AMSAT Status-Upload" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Status von SAT-QSOs hochladen auf" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL des Mastodonservers" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Haupt-URL deines Mastodon-Servers, z.B. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Winkeyer-Features eingeschaltet" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18674,25 +18944,25 @@ msgstr "" "Die Winkeyer-Unterstützung in Wavelog ist sehr experimentell. Lies zuerst " "das Wiki auf %s, bevor du es aktivierst." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Privater Feed-Schlüssel" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Schau in deinem Profil unter %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Zeige nur Überflüge an, die gearbeitet werden können" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18700,7 +18970,7 @@ msgstr "" "Wenn aktiviert, werden nur sichtbare Überflüge basierend auf dem Locator des " "hams.at Profils angezeigt. Dazu muss der Private Feed Key konfiguriert sein." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Speichere Kontoänderungen" @@ -19133,7 +19403,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "zuletzt gesendet" @@ -19161,119 +19431,128 @@ msgstr "Entfernung" msgid "Other Path" msgstr "Anderer Pfad" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"Ein einzelnes Planquadrat wurde in das Feld für VUCC Planquadrate " +"eingetragen, welches zwei oder vier Planquadrate statt eines einzelnen " +"Planquadrats enthalten sollte." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Antennenazimut" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Antennenelevation" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL-Karte wurde via Büro gesendet" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL-Karte wurde direkt gesendet" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSL-Karte wurde elektronisch gesendet" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL-Karte wurde via Manager gesendet" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL-Karte wurde gesendet" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL-Karte wurde via Büro empfangen" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL-Karte wurde direkt empfangen" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSL-Karte wurde elektronisch empfangen" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL-Karte wurde via Manager empfangen" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL-Karte wurde empfangen" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Diese Station nutzt LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Dieses QSO wurde bestätigt am" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Dieses QSO ist auf LoTW bestätigt." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Dieses QSO ist auf eQSL bestätigt." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Dieses QSO ist auf QRZ.com bestätigt." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Dieses QSO ist auf Clublog bestätigt." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Dieses QSO wurde im DCL bestätigt." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Mehr QSOs" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Teilen" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Details" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "QSL-Kartenfront hochgeladen" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Bild der QSL-Karte hochladen" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "QSL-Kartenrückseite hochgeladen" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Markiere QSL erhalten (Elektronisch)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL Bild" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO nicht gefunden" @@ -19466,6 +19745,45 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable. Check your file permissions, php-extensions and/or if you " +#~ "are using redis/memcached your network connection to the services." +#~ msgstr "" +#~ "Der Cache verwendet derzeit den Backup-Adapter, weil der primäre nicht " +#~ "verfügbar ist. Überprüfe Dateiberechtigungen, PHP-Erweiterungen und – " +#~ "wenn du Redis/Memcached verwendest – die Netzwerkverbindung zu den " +#~ "Diensten." + +#, php-format +#~ msgid "" +#~ "Cache does not work! Currently the system is using a %s adapter. Check " +#~ "your file permissions, php-extensions and/or if you are using redis/" +#~ "memcached your network connection to the services. You can continue using " +#~ "Wavelog, but no values will be cached (which is bad)." +#~ msgstr "" +#~ "Cache funktioniert nicht! Zurzeit verwendet das System einen %s Adapter. " +#~ "Überprüfe deine Datei-Berechtigungen, PHP-Erweiterungen und- wenn du " +#~ "Redis/Memcached verwendest - deine Netzwerkverbindung zu den Diensten. Du " +#~ "kannst Wavelog weiter nutzen, aber es werden keine Werte " +#~ "zwischengespeichert (was schlecht ist)." + +#~ msgid "Don't show" +#~ msgstr "Nicht anzeigen" + +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Der Cache verwendet derzeit den Backup-Adapter, weil der Primäre nicht " +#~ "verfügbar ist." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Fehler bei der Sessionerzeugung für HamQTH" + +#~ msgid "radio functions" +#~ msgstr "Funkgerät-Funktionen" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Nicht korrekt geloggte CQ-Zonen" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index c3d2c34e8..25f70c0e1 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2025-12-30 19:49+0000\n" "Last-Translator: Florian Wolters \n" "Language-Team: Greek Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17363,169 +17609,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17533,85 +17783,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17995,7 +18245,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18023,119 +18273,125 @@ msgstr "Συνολική Απόσταση" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "Η κάρτα QSL έχει σταλεί μέσω του γραφείου" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "Η κάρτα QSL έχει σταλεί απευθείας" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "Η κάρτα QSL έχει σταλεί ηλεκτρονικά" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "Η κάρτα QSL έχει σταλεί μέσω του διαχειριστή" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "Η κάρτα QSL έχει σταλεί" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "Η κάρτα QSL έχει παραληφθεί μέσω του γραφείου" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "Η κάρτα QSL έχει παραληφθεί απευθείας" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "Η κάρτα QSL έχει παραληφθεί ηλεκτρονικά" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "Η κάρτα QSL έχει παραληφθεί μέσω του διαχειριστή" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "Η κάρτα QSL έχει παραληφθεί" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Αυτό το QSO επιβεβαιώθηκε στις" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Μεταφορτώθηκε η μπροστινή εικόνα της κάρτας QSL" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Μεταφόρτωση εικόνας κάρτας QSL" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Μεταφορτώθηκε η πίσω εικόνα της κάρτας QSL" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Σημείωση QSL ως Ελήφθη (Ηλεκτρονικός)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.mo b/application/locale/es_ES/LC_MESSAGES/messages.mo index bb1dad0f4..3a312e2e7 100644 Binary files a/application/locale/es_ES/LC_MESSAGES/messages.mo and b/application/locale/es_ES/LC_MESSAGES/messages.mo differ diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 0a83eeae8..16a81ebf0 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ # CieNTi , 2024. # "Francisco (F4VSE)" , 2024, 2025. # Francisco Jiménez-Martín Sánchez , 2024. -# David Quental , 2024, 2025. +# David Quental , 2024, 2025, 2026. # Ethan Edwards , 2024. # Ethan Carter Edwards , 2025. # Fabian Berg , 2025. @@ -16,8 +16,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-08 10:48+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-02-20 14:54+0000\n" "Last-Translator: Juan Pablo Tamayo \n" "Language-Team: Spanish \n" @@ -26,7 +26,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -79,8 +79,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -91,11 +91,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -126,11 +126,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -151,8 +151,8 @@ msgid "Activated Gridsquare Map" msgstr "Mapa de Cuadrículas Activado" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -314,51 +314,51 @@ msgstr "La API Key %s ha sido borrada" msgid "Awards" msgstr "Diplomas" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Diplomas - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -367,13 +367,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -385,29 +385,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Premios - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Diplomas - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Vista de registro - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -420,43 +420,58 @@ msgstr "Vista de registro - VUCC" msgid "Log View" msgstr "Vista de registro" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " y banda " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Todas las bandas (sin SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " y satélite " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " y tipo de órbita " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " y propagación " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " y modo " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " y " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -477,14 +492,14 @@ msgstr " y " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -499,16 +514,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -522,111 +537,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Trabajado en Todas las Zonas)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Islas en el Aire)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Condados de EEUU" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Vista de registro - Condados" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Diplomas - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Cuadrículas trabajadas" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Cuadrículas confirmadas en LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Cuadrículas confirmadas por QSL físicas" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Total de Cuadrículas trabajadas" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Diploma Memorial Fred Fish (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Diplomas - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "Zonas ITU" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 en 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -657,8 +672,7 @@ msgstr "Modo Crear" msgid "Edit Band" msgstr "Editar Banda" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -691,15 +705,24 @@ msgstr "Datos CBR importados" msgid "Callsign statistics" msgstr "Estadísticas de indicativos" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " y banda " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " y satélite " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Verificador de Llamada" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Verificador de Indicativo" @@ -784,28 +807,31 @@ msgid "No user has configured Clublog." msgstr "Ningún usuario ha configurado Clublog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -837,7 +863,7 @@ msgid "Update Contest" msgstr "Actualizar Concurso" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -855,12 +881,12 @@ msgstr "Editar trabajo de Cron" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "nunca" @@ -935,14 +961,14 @@ msgstr "Importación de clave DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1116,7 +1142,7 @@ msgstr "Imagen de eQSL no disponible" #: application/controllers/Eqsl.php:416 msgid "Failed to download eQSL image" -msgstr "Fallo la descarga de la imagen de eQSL" +msgstr "Falló la descarga de la imagen de eQSL" #: application/controllers/Eqsl.php:441 msgid "Failed to load cached eQSL image" @@ -1174,7 +1200,7 @@ msgstr "Hamsat - Operación de satélites en movimiento" #: application/controllers/Hrdlog.php:70 application/controllers/Hrdlog.php:71 msgid "HRD Log upload for this station is disabled." -msgstr "La subida a HRD Log para esta estación está deshabilitada." +msgstr "La carga a HRD Log para esta estación está deshabilitada." #: application/controllers/Hrdlog.php:93 #, php-format @@ -1193,7 +1219,7 @@ msgstr "No se encontraron QSOs para subir." msgid "KML Export" msgstr "Exportación KML" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "Etiquetas de tarjetas QSL" @@ -1201,59 +1227,59 @@ msgstr "Etiquetas de tarjetas QSL" msgid "Create Label Type" msgstr "Crear tipo de etiqueta" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Nombre de la etiqueta" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Tipo de papel" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Medición" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Margen superior" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Margen izquierdo" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSLs horizontalmente" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSLs verticalmente" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Espacio horizontal" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Espacio vertical" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Ancho de etiqueta" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Altura de la etiqueta" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Tamaño de fuente" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Número de QSOs en la etiqueta" @@ -1262,22 +1288,22 @@ msgid "Create Paper Type" msgstr "Crear tipo de papel" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Nombre del papel" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Ancho del papel" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Altura del papel" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1285,19 +1311,19 @@ msgstr "" "No se pudo guardar tu documento. Recuerda que no puede tener el mismo nombre " "que los tipos de documentos existentes." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Necesitas asignar un tipo de papel a la etiqueta antes de imprimir" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "" "Necesitas crear una etiqueta y configurarla para que se use para imprimir." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1305,31 +1331,31 @@ msgstr "" "¡Algo salió mal! No se pudo generar la etiqueta. Verifica el tamaño de la " "etiqueta y el tamaño de la fuente." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "¡0 QSOs encontrados para imprimir!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Editar etiqueta" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "La etiqueta fue guardada." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "La etiqueta fue eliminada." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Editar la hoja" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "La hoja fue guardada." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "La hoja fue eliminada." @@ -1353,55 +1379,55 @@ msgstr "Libros de registro de la estación" msgid "Logbook" msgstr "Libro de Guardia" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1409,93 +1435,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "Todas las búsquedas de callbook fallaron o no obtuvieron resultados." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1503,7 +1531,7 @@ msgstr "Todas las búsquedas de callbook fallaron o no obtuvieron resultados." #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1520,13 +1548,13 @@ msgstr "Todas las búsquedas de callbook fallaron o no obtuvieron resultados." #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1565,15 +1593,15 @@ msgstr "Todas las búsquedas de callbook fallaron o no obtuvieron resultados." msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1594,15 +1622,15 @@ msgstr "Modo" msgid "RST (S)" msgstr "RST (Enviada)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1624,7 +1652,7 @@ msgstr "RST (Enviada)" msgid "RST (R)" msgstr "RST (Recibida)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1633,29 +1661,29 @@ msgstr "RST (Recibida)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "País" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1668,7 +1696,7 @@ msgstr "País" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1676,7 +1704,7 @@ msgstr "País" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1685,12 +1713,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1699,7 +1727,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1707,7 +1735,7 @@ msgstr "IOTA" msgid "State" msgstr "Estado" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1716,19 +1744,19 @@ msgstr "Estado" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1744,20 +1772,20 @@ msgstr "Estado" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Cuadrícula" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1767,9 +1795,9 @@ msgstr "Cuadrícula" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1787,18 +1815,18 @@ msgstr "Cuadrícula" msgid "Distance" msgstr "Distancia" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1806,25 +1834,26 @@ msgstr "Distancia" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1835,13 +1864,13 @@ msgstr "Distancia" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1880,13 +1909,14 @@ msgstr "Distancia" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1907,13 +1937,13 @@ msgstr "Banda" msgid "Frequency" msgstr "Frecuencia" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1926,21 +1956,21 @@ msgstr "Frecuencia" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operador" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1949,14 +1979,14 @@ msgstr "Operador" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "DXCC Eliminado" @@ -1964,12 +1994,12 @@ msgstr "DXCC Eliminado" msgid "Advanced logbook" msgstr "Libro de registro avanzado" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC actualizado por %d QSO(s)." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Mapa para DXCC %s y gridsquare %s." @@ -1984,7 +2014,7 @@ msgstr "Búsqueda rápida" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Libro de Registro del Mundo" @@ -1996,11 +2026,11 @@ msgstr "Certificado importado." msgid "Certificate Updated." msgstr "Certificado actualizado." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certificado eliminado." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2013,7 +2043,7 @@ msgstr "" "la aplicación tqsl sin contraseña!%s Para mas información por favor visite " "el sitio %sLoTW FAQ%s en la Wiki de Wavelog." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2024,51 +2054,51 @@ msgstr "" "archivo contiene 'key-only' se debe generalmente a una solicitud de " "certificado que no ha sido procesada por LoTW aun." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Error genérico procesando el certificado en el archivo %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Error genérico extrayendo la llave privada del certificado en el archivo %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "Información ADIF de LoTW" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Falló la conexión a LoTW." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Error de inicio de sesión en LoTW para el usuario %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Nombre de usuario/contraseña incorrectos" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW no está disponible actualmente. Inténtalo de nuevo más tarde." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "¡Inicio de sesión en LoTW correcto!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "No se proporcionaron credenciales de LoTW." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "Importación ADIF de LoTW" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "¡No has definido tus credenciales de ARRL LoTW!" @@ -2093,7 +2123,7 @@ msgstr "Modo de edición" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Notas" @@ -2414,19 +2444,19 @@ msgstr "Subir tarjetas QSL" msgid "Print Requested QSLs" msgstr "Imprimir QSLs solicitadas" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Agregar QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Debes tener sesión iniciada para acceder a esta URL." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Transferencia de llamada" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "No se proporcionó indicativo." @@ -2435,18 +2465,18 @@ msgstr "No se proporcionó indicativo." msgid "Hardware Interfaces" msgstr "Interfaces de hardware" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Marca de tiempo" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2454,61 +2484,65 @@ msgstr "Marca de tiempo" msgid "Options" msgstr "Opciones" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Configuraciones" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Predeterminado (haz clic para soltar)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Establecer como radio predeterminado" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "DESCONOCIDO" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "última actualización" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Establecer como radio predeterminado" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Predeterminado (haz clic para soltar)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Editar" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2517,22 +2551,39 @@ msgstr "Editar" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Eliminar" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket es actualmente predeterminado (haga clic para liberar)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Establecer WebSocket como radio predeterminada" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "No se encontraron radios con interfaz CAT." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Todavía puedes configurar la opción WebSocket como tu radio predeterminada." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Editar configuraciones de CAT" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Radio eliminado con éxito" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Exportar EDI" @@ -2600,7 +2651,7 @@ msgstr "No tienes ubicaciones de estación. ¡Ve a %s para crearla!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2611,13 +2662,13 @@ msgstr "aquí" msgid "Satellite Timers" msgstr "Temporizadores de satélite" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2672,7 +2723,8 @@ msgstr "Editar Localización de Estación: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2680,7 +2732,7 @@ msgstr "Editar Localización de Estación: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2693,7 +2745,7 @@ msgid "Duplicate Station Location:" msgstr "Ubicación de estación duplicada:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Por favor, verifica el valor del localizador de cuadrícula (%s)" @@ -2756,7 +2808,8 @@ msgstr "Error. ¡El enlace ya está en uso!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2764,19 +2817,19 @@ msgid "Disabled" msgstr "Desactivado" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Establecer como Libro de Guardia Activo" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Libro de registro activo" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2786,7 +2839,7 @@ msgstr "" "enlazar cualquier ubicación enlazada aquí a otro logbook." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Ver Página Pública para el Libro de Guardia: " @@ -2795,7 +2848,7 @@ msgid "Are you sure you want to delete the public slug?" msgstr "¿Estás seguro de que quieres eliminar el slug público?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" @@ -2804,12 +2857,12 @@ msgstr "" "activa?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Poner como Activa" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Estación Activa" @@ -2817,32 +2870,32 @@ msgstr "Estación Activa" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "¿Está seguro que desea eliminar todos los QSOs en este perfil de estación?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Libro Vacío" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Copiar" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2855,7 +2908,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Por favor selecciona uno" @@ -2935,103 +2988,103 @@ msgstr "Preparando excepciones DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Preparando prefijos DXCC: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "HECHO" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Actualizando..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Entidades DXCC:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Excepciones de DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Prefijos DXCC:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Actualización de SCP completa. Resultado: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Actualización de SCP fallida. Resultado: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Actualización de usuarios de LoTW completa. Resultado: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Actualización de usuarios de LoTW fallida. Resultado: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Actualización de DOK completa. Resultado: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "Actualización de DOK fallida. Resultado: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Actualización de SOTA completa. Resultado: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "Actualización de SOTA fallida. Resultado: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Actualización de WWFF completa. Resultado: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Actualización de WWFF fallida. Resultado: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Actualización de HAMqsl completa. Resultado: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Actualización de HAMqsl fallida. Resultado: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Actualización de POTA completa. Resultado: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "Actualización de POTA fallida. Resultado: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Actualización de TLE completa. Resultado: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "Actualización de TLE fallida. Resultado: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Actualización de LoTW SAT" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Actualización de Radioaficionados Destacados" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Carga de archivo de cuadricula VUCC completo. Resultado: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Actualización de archivo de cuadricula VUCC fallida. Resultado: " @@ -3065,61 +3118,61 @@ msgstr "¡Parámetro no válido!" msgid "Add User" msgstr "Agregar usuario" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "¡Nombre de usuario %s ya está en uso!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "¡El correo electrónico %s ya está en uso!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "¡Contraseña inválida!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "¡Usuario %s añadido!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Usuarios" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Editar usuario" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Usuario %s editado" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Perfil" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Eliminar usuario" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Usador eliminado" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "No se puede eliminar el usuario!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Error de base de datos:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3127,29 +3180,29 @@ msgstr "" "¡Felicidades! Wavelog se instaló con éxito. Ahora puedes iniciar sesión por " "primera vez." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "¡Esto no está permitido!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Error de inicio de sesión. Inténtalo de nuevo." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Iniciar Sesión" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "No puedes iniciar sesión en una estación de club directamente. Usa tu cuenta " "personal en su lugar." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3157,7 +3210,7 @@ msgstr "" "Tu cuenta está bloqueada debido a demasiados intentos fallidos de inicio de " "sesión. Por favor, restablece tu contraseña." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3168,52 +3221,52 @@ msgstr "" "administrador. Solo los administradores tienen permiso para iniciar sesión " "en este momento." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "¡Nombre de usuario o contraseña incorrectos!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "El usuario %s cerró sesión." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Nombre de la estación" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Indicativo de la Estación" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "DXCC de la Estación" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Zona CQ de la estación" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Zona ITU de la estación" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Locator de la estación" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3222,38 +3275,38 @@ msgstr "" "¡Estación creada con éxito! ¡Bienvenido a Wavelog! Para completar la " "configuración de tu estación, haz clic %saquí%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" "¡La configuración de la estación falló! Por favor, configura tu estación " "manualmente." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "" "¡El restablecimiento de contraseña está deshabilitado en la sesión Demo!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Contraseña olvidada" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "Las configuraciones del correo electrónico están incorrectas." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Restablecimiento de contraseña hecha." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Restablecer Contraseña" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3261,7 +3314,7 @@ msgstr "" "No se pudo establecer la cuenta con este nombre de usuario. Por favor, " "intenta con otro diferente a \"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3269,7 +3322,7 @@ msgstr "" "No se pudo configurar la cuenta con este correo electrónico. Por favor, " "intenta con otra dirección que no sea \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3278,7 +3331,7 @@ msgstr "" "Actualmente no puedes suplantar a otro usuario. ¡Necesitas establecer %s a " "%s en tu config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3287,16 +3340,16 @@ msgstr "" "Actualmente no puedes suplantar a otro usuario. ¡Por favor, cambia la " "encryption_key en tu archivo config.php primero!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Hash no válido" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "" "El hash de suplantación es demasiado antiguo. Por favor, inténtalo de nuevo." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3304,15 +3357,15 @@ msgstr "" "No puedes hacerte pasar por otro usuario mientras no hayas iniciado sesión " "como el usuario original" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Hubo un problema con tu sesión. Por favor, inténtalo de nuevo." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "El usuario solicitado para suplantar no existe" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3320,13 +3373,13 @@ msgstr "" "No se pudo determinar el nivel de permiso correcto para la estación del " "club. Intenta de nuevo después de volver a iniciar sesión." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Ups.. Algo salió mal. Intenta volver a iniciar sesión." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3334,7 +3387,7 @@ msgstr "" "La capacidad de regresar rápidamente ha sido desactivada después de que el " "hash de seguridad expiró. Por favor, inicia sesión de nuevo." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3348,7 +3401,7 @@ msgid "Satellite Gridsquare Map" msgstr "Mapa de cuadrícula de satélite" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Búsqueda Pública" @@ -3399,16 +3452,23 @@ msgstr "Varios usuarios encontrados por slug" #: application/controllers/Zonechecker.php:26 msgid "Gridsquare Zone finder" -msgstr "" +msgstr "Buscador de cuadrículas de localización" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "La búsqueda no está configurada. Por favor, revisa la configuración." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "" +"Error al obtener una clave de sesión para el directorio de llamadas. Error: " +"%s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "Error de QRZCQ" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Error obteniendo una llave de sesión para consultar HamQTH" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3566,26 +3626,26 @@ msgstr "" msgid "Station not accessible" msgstr "Estación no accesible" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "ID de estación no permitida" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Ningún indicativo dado" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC tiene que ser numérico" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicativo de estación incorrecto %s al importar QSO con %s para %s: OMITIDO" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3593,11 +3653,11 @@ msgstr "" "Intentaste importar un QSO sin una fecha valida. Este QSO no fue importado. " "Es invalido" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO en" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3605,7 +3665,7 @@ msgstr "" "Intentaste importar un QSO sin ningún indicativo dado. Este QSO no fue " "importado. Es inválido" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3614,64 +3674,64 @@ msgstr "" "QSO en %s: Intentaste importar un QSO sin la banda. Este QSO no fue " "importado. Es inválido" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "la qslrfecha es inválida (AAAAMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "la qslfecha es inválida (YYYYMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "la fecha de carga de clublog_qso es inválida (AAAAMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicado para" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSOs que no concuerdan" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmados por LoTW/Clublog/eQSL/Concurso" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "confirmados por el administrador del premio" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "confirmados al hacer chequeo cruzadoc on datos de DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "pendiente de confirmación" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "sin confirmar" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "desconocido" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "La referencia POTA ya se encuentra en el log" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO actualizado" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3685,7 +3745,7 @@ msgstr "QSO actualizado" msgid "Bearing" msgstr "Dirección" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "" "La tabla VuccGrids esta vacía. Por favor importe la información de " @@ -3825,42 +3885,40 @@ msgstr "Diferencia" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3889,33 +3947,33 @@ msgstr "Diferencia" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3936,7 +3994,7 @@ msgstr "Diferencia" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Todo" @@ -3980,12 +4038,12 @@ msgstr "Período" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Propagación" @@ -4001,7 +4059,7 @@ msgstr "Todo menos SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Ninguno/Vacío" @@ -4011,11 +4069,11 @@ msgstr "Ninguno/Vacío" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Dispersión de aeronaves" @@ -4025,11 +4083,11 @@ msgstr "Dispersión de aeronaves" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4039,11 +4097,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4053,11 +4111,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Retrodispersión" @@ -4067,11 +4125,11 @@ msgstr "Retrodispersión" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4081,11 +4139,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Tierra-Luna-Tierra" @@ -4095,11 +4153,11 @@ msgstr "Tierra-Luna-Tierra" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadic E" @@ -4109,11 +4167,11 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Irregularidades alineadas con el campo" @@ -4123,11 +4181,11 @@ msgstr "Irregularidades alineadas con el campo" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "Reflexión F2" @@ -4137,11 +4195,11 @@ msgstr "Reflexión F2" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Asistido por Internet" @@ -4151,11 +4209,11 @@ msgstr "Asistido por Internet" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4165,11 +4223,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4179,11 +4237,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Dispersión meteórica" @@ -4193,11 +4251,11 @@ msgstr "Dispersión meteórica" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Repetidor o transpondedor terrestre o atmosférico" @@ -4207,11 +4265,11 @@ msgstr "Repetidor o transpondedor terrestre o atmosférico" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Dispersión por lluvia" @@ -4221,11 +4279,11 @@ msgstr "Dispersión por lluvia" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satélite" @@ -4235,11 +4293,11 @@ msgstr "Satélite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-ecuatorial" @@ -4249,11 +4307,11 @@ msgstr "Trans-ecuatorial" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Ducting troposférico" @@ -4262,18 +4320,18 @@ msgstr "Ducting troposférico" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4285,21 +4343,21 @@ msgstr "Ducting troposférico" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Mostrar" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4310,7 +4368,7 @@ msgstr "Mostrar" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4319,19 +4377,25 @@ msgstr "Mostrar" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satélite" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4351,22 +4415,22 @@ msgstr "Confirmación" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4412,11 +4476,11 @@ msgstr "Cuenta Mínima" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4425,11 +4489,10 @@ msgstr "Cuenta Mínima" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4449,7 +4512,8 @@ msgstr "¡Nada encontrado!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4465,12 +4529,13 @@ msgstr "¡Nada encontrado!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4494,7 +4559,7 @@ msgstr "¡Nada encontrado!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Indicativo" @@ -4505,12 +4570,12 @@ msgstr "Conteo" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Mostrar QSOs" @@ -4577,7 +4642,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4601,11 +4666,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4619,12 +4684,12 @@ msgstr "Fecha" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4639,7 +4704,7 @@ msgstr "Fecha" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4652,7 +4717,7 @@ msgstr "Tiempo Test" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4707,20 +4772,20 @@ msgstr "Importante" msgid "Log Files must have the file type *.adi" msgstr "Los archivos de registro deben tener el tipo de archivo *.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "El tamaño máximo del archivo subido es " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4781,8 +4846,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "PELIGRO" @@ -5173,8 +5238,8 @@ msgstr "Referencia POTA en ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Estado" @@ -5193,7 +5258,7 @@ msgstr "Nombre simple para describir para qué usas esta API." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5259,7 +5324,7 @@ msgstr "La URL de la API para esta instancia de Wavelog es" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5313,7 +5378,7 @@ msgstr "Permisos" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5358,7 +5423,7 @@ msgstr "Crear una clave de solo lectura" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5367,8 +5432,8 @@ msgstr "Crear una clave de solo lectura" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5385,14 +5450,14 @@ msgstr "Crear una clave de solo lectura" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5448,9 +5513,9 @@ msgid "Filtering on" msgstr "Filtrado por" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Condado" @@ -5506,19 +5571,14 @@ msgid "Counties Confirmed" msgstr "Condados confirmados" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5540,22 +5600,23 @@ msgid "Total" msgstr "Total" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5611,10 +5672,12 @@ msgid "Awards - CQ WAZ" msgstr "Premios - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtros" @@ -5624,92 +5687,114 @@ msgid "Show CQ Zone Map" msgstr "Mostrar mapa de zona CQ" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" -msgstr "" +msgstr "Configuraciones de fecha" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Hoy" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Ayer" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Los 7 días pasados" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Los 30 días pasados" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Este mes" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "El mes pasado" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Este año" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "El año pasado" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Claro" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5717,7 +5802,9 @@ msgid "Date from" msgstr "Fecha desde" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5725,11 +5812,10 @@ msgid "Date to" msgstr "Fecha a" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5739,9 +5825,8 @@ msgid "Confirmed" msgstr "Confirmados" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5751,67 +5836,64 @@ msgstr "Realizados" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Mostrar trabajado" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Mostrar confirmado" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Mostrar no trabajados" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5819,95 +5901,161 @@ msgstr "Mostrar QSO con QSL fisica" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Tarjeta QSL" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabla" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mapa" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Leyenda:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "Tarjeta de papel (Q)SL" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-\"confirmación\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) Trabajado" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Resumen" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Total trabajado" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5972,15 +6120,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Trabajado / Confirmado" @@ -5989,11 +6137,9 @@ msgstr "Trabajado / Confirmado" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Cada banda" @@ -6001,23 +6147,20 @@ msgstr "Cada banda" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Restablecer" @@ -6074,161 +6217,127 @@ msgstr "" "Campos tomados para este premio: DXCC (Debe ser uno válido de la lista de " "especificaciones DXCC-ADIF)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Mostrar mapa DXCC" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Incluir eliminado(s)" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antártida" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "África" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Asia." -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "América del Norte" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "América del Sur" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oceanía" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Todas las bandas (sin SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Leyenda:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "Tarjeta de papel (Q)SL" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-\"confirmación\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) Trabajado" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "Nombre DXCC" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefijo" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" "No se encontraron resultados para el criterio de búsqueda. Por favor intente " @@ -6504,23 +6613,23 @@ msgstr "Mostrar mapa de IOTA" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Nombre" @@ -6529,14 +6638,14 @@ msgid "Deleted" msgstr "Eliminado" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6546,7 +6655,7 @@ msgstr "Eliminado" msgid "ITU Zone" msgstr "Zona ITU" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6558,21 +6667,21 @@ msgstr "" "al menos 70 de las 75 zonas de radiodifusión definidas por la Unión " "Internacional de Telecomunicaciones (UIT)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Puedes encontrar más información en el sitio web de %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Campos tomados para este premio: Zona ITU (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Premios - Zonas ITU" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Mostrar mapa de zonas de la UIT" @@ -6630,7 +6739,7 @@ msgstr "Resultados" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Ciudad" @@ -6639,8 +6748,10 @@ msgstr "Ciudad" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6650,7 +6761,7 @@ msgstr "Voivodatos polacos" #: application/views/awards/pl_polska/index.php:4 msgid "Hover over a voivodeship" -msgstr "" +msgstr "Pasa el cursor sobre un voivodato" #: application/views/awards/pl_polska/index.php:38 msgid "" @@ -6658,6 +6769,9 @@ msgid "" "contacts with stations operating from all 16 Polish voivodeships " "(provinces). Valid from January 1, 1999." msgstr "" +"El Premio Polska es otorgado por la Unión de Radioaficionados de Polonia " +"(PZK) por contactos con estaciones que operan desde las 16 voivodías " +"(provincias) de Polonia. Válido desde el 1 de enero de 1999." #: application/views/awards/pl_polska/index.php:39 msgid "" @@ -6665,6 +6779,10 @@ msgid "" "(RTTY/PSK/FSK), and individual bands (160M-2M). Classes: Basic (1 QSO/voiv), " "Bronze (3), Silver (7), Gold (12). All 16 voivodeships required." msgstr "" +"Categorías de premios: MIXTO (todos los modos/bandas), PHONE (SSB/AM/FM/" +"SSTV), CW, DIGI (RTTY/PSK/FSK), y bandas individuales (160M-2M). Clases: " +"Básico (1 QSO/voiv), Bronce (3), Plata (7), Oro (12). Se requieren los 16 " +"voivodatos." #: application/views/awards/pl_polska/index.php:40 #, php-format @@ -6673,17 +6791,19 @@ msgstr "Reglas oficiales e información: %s" #: application/views/awards/pl_polska/index.php:40 msgid "PZK Polska Award Rules" -msgstr "" +msgstr "Reglas del Premio PZK Polska" #: application/views/awards/pl_polska/index.php:41 msgid "" "Requirements: COL_STATE (voivodeship code), COL_DXCC=269 (Poland), QSO date " ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" +"Requisitos: COL_STATE (código voivodeship), COL_DXCC=269 (Poland), QSO fecha " +">= 1999-01-01. No cross-band/cross-mode/repeater contacts." #: application/views/awards/pl_polska/index.php:54 msgid "Station Logbook" -msgstr "" +msgstr "Libro de registros de la estación" #: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" @@ -6695,6 +6815,9 @@ msgid "" "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" +"Según las reglas oficiales de los premios, se aceptan tarjetas QSL de papel " +"o confirmaciones de LoTW para las solicitudes de premios. Otras " +"confirmaciones digitales se muestran aquí solo con fines de seguimiento." #: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" @@ -6705,6 +6828,8 @@ msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" +"Las categorías de los premios Polska se basan en el número mínimo de QSOs " +"confirmados con cada uno de los 16 voivodatos:" #: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" @@ -6720,7 +6845,7 @@ msgstr "3 QSOs por voivodato" #: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" -msgstr "" +msgstr "Clase Bronce (3.º)" #: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" @@ -6728,7 +6853,7 @@ msgstr "7 QSOs por voivodato" #: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" -msgstr "" +msgstr "Clase Plata (2ª)" #: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" @@ -6736,7 +6861,7 @@ msgstr "12 QSOs por voivodato" #: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" -msgstr "" +msgstr "Clase Oro (1ª)" #: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" @@ -6744,15 +6869,15 @@ msgstr "¡Felicitaciones!" #: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" -msgstr "" +msgstr "Tienes derecho a las siguientes categorías de premios" #: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" -msgstr "" +msgstr "QSOs por categoría de modo" #: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" -msgstr "" +msgstr "QSOs por banda" #: application/views/awards/pl_polska/index.php:202 #: application/views/awards/pl_polska/index.php:273 @@ -6761,23 +6886,23 @@ msgstr "Voivodato" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Código" #: application/views/awards/pl_polska/index.php:204 #: application/views/awards/pl_polska/index.php:345 msgid "MIXED" -msgstr "" +msgstr "MIXTO" #: application/views/awards/pl_polska/index.php:205 #: application/views/awards/pl_polska/index.php:346 msgid "PHONE" -msgstr "" +msgstr "Fonía" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6785,22 +6910,22 @@ msgstr "CW" #: application/views/awards/pl_polska/index.php:207 #: application/views/awards/pl_polska/index.php:348 msgid "DIGI" -msgstr "" +msgstr "DIGI" #: application/views/awards/pl_polska/index.php:238 #: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" -msgstr "" +msgstr "Total de voivodatos" #: application/views/awards/pl_polska/index.php:252 #: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" -msgstr "" +msgstr "¡Bravo! Tienes derecho a" #: application/views/awards/pl_polska/index.php:252 #: application/views/awards/pl_polska/index.php:324 msgid "category award!" -msgstr "" +msgstr "¡premio de categoría!" #: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" @@ -6808,17 +6933,17 @@ msgstr "Categoría de premio:" #: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" -msgstr "" +msgstr "Categorías de Modos" #: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" -msgstr "" +msgstr "Categorías de Bandas" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" -msgstr "" +msgstr "Arreglar estado" #: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" @@ -6829,6 +6954,8 @@ msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" +"Este premio utiliza el campo de Estado de tu libro de registro. Asegúrate de " +"que este campo esté lleno para todos los contactos de SP (Polonia)." #: application/views/awards/pl_polska/index.php:372 msgid "Tip:" @@ -6840,7 +6967,7 @@ msgstr "Usar" #: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." -msgstr "" +msgstr "para autocompletar estados desde localizadores Maidenhead." #: application/views/awards/pota/index.php:7 msgid "POTA Awards" @@ -6887,8 +7014,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "Referencia POTA" @@ -6899,6 +7026,7 @@ msgstr "Provincia" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Pasa el cursor sobre una provincia" @@ -6965,7 +7093,7 @@ msgid "Reference" msgstr "Referencia" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -7033,7 +7161,7 @@ msgstr "" "trabajadas y confirmadas en una banda deseada." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "" @@ -7121,25 +7249,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Premios - Trabajado Todos los Continentes (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Continente" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "Premio WAE" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7149,18 +7282,21 @@ msgstr "" "contactos con estaciones de radioaficionados en países europeos y en islas " "listadas en la lista de países WAE en diferentes bandas." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " "I, WAE TOP and the WAE Trophy." msgstr "" +"El WAE se emitirá en los siguientes modos: CW, SSB, Phone, RTTY, FT8, " +"Digital y Modos Mixtos. Se emite en cinco clases: WAE III, WAE II, WAE I, " +"WAE TOP y el Trofeo WAE." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Campos tomados para este premio: Región, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "Nombre WAE" @@ -7212,7 +7348,7 @@ msgid "Show WAJA Map" msgstr "Mostrar mapa de WAJA" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefectura" @@ -7278,15 +7414,20 @@ msgid "Show WAP Map" msgstr "Mostrar mapa WAP" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Provincia" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Trabajadas Todas las Provincias de China" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7299,7 +7440,7 @@ msgstr "" "regiones administrativas especiales de China, fomentando un entendimiento " "más profundo de China." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7307,7 +7448,7 @@ msgstr "" "El premio se puede obtener mediante la acumulación a largo plazo de " "contactos o lograrse en un solo esfuerzo durante el concurso anual WAPC." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7317,6 +7458,10 @@ msgstr "" "HongKong/321, Macao/152, Taiwán/386, Islas Pratas/505 o Arrecife " "Scarborough/506) y Estado válido (ADIF: DXCC y STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7329,7 +7474,7 @@ msgstr "Pasa el cursor sobre un estado" #: application/views/awards/was/index.php:5 #: application/views/awards/was/index.php:166 msgid "inc." -msgstr "" +msgstr "inc." #: application/views/awards/was/index.php:25 msgid "WAS Award" @@ -7433,8 +7578,8 @@ msgstr "Campos tomados para este premio: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "Referencia WWFF" @@ -7490,276 +7635,286 @@ msgstr "" "La copia de seguridad de tus notas se completó con éxito. La salida se puede " "encontrar en" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Haz clic para preparar el registro." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "Sintonizar la frecuencia" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" -msgstr "" +msgstr "Ventana emergente bloqueada" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "¡Se bloqueó la ventana emergente! Por favor, permite las ventanas emergentes " "para este sitio de forma permanente." -#: application/views/bandmap/list.php:16 -msgid "CAT Connection Required" -msgstr "" - #: application/views/bandmap/list.php:17 +msgid "CAT Connection Required" +msgstr "Conexión CAT requerida" + +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" -msgstr "" +msgstr "Habilitar la conexión CAT para sintonizar la radio" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" -msgstr "" +msgstr "Borrar filtros" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "" - -#: application/views/bandmap/list.php:21 -msgid "Radio set to None - CAT connection disabled" -msgstr "" +"El filtro de banda se ha preservado (el bloqueo de la banda está activo)" #: application/views/bandmap/list.php:22 -msgid "Radio Tuned" -msgstr "" +msgid "Radio set to None - CAT connection disabled" +msgstr "Radio ajustado a Ninguno - Conexión CAT deshabilitada" #: application/views/bandmap/list.php:23 -msgid "Tuned to" -msgstr "" +msgid "Radio Tuned" +msgstr "Radio sintonizada" #: application/views/bandmap/list.php:24 -msgid "Tuning Failed" -msgstr "" +msgid "Tuned to" +msgstr "Sintonizado a" #: application/views/bandmap/list.php:25 -msgid "Failed to tune radio to frequency" -msgstr "" +msgid "Tuning Failed" +msgstr "Sintonia fallida" #: application/views/bandmap/list.php:26 +msgid "Failed to tune radio to frequency" +msgstr "No se pudo sintonizar la radio a la frecuencia" + +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" -msgstr "" +msgstr "QSO preparado" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" -msgstr "" +msgstr "enviado al formulario de registro" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" -msgstr "" +msgstr "Conexión CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" -msgstr "" +msgstr "Haz clic para habilitar la conexión CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" -msgstr "" +msgstr "GATO siguiendo radio - Haz clic para desactivar" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" -msgstr "" - -#: application/views/bandmap/list.php:33 -msgid "Band lock active - Click to disable" -msgstr "" +msgstr "Haz clic para habilitar el bloqueo de banda (requiere conexión CAT)" #: application/views/bandmap/list.php:34 -msgid "Band Lock" -msgstr "" +msgid "Band lock active - Click to disable" +msgstr "Bloqueo de banda activo - Haz clic para desactivar" #: application/views/bandmap/list.php:35 -msgid "Band lock enabled - band filter will track radio band" -msgstr "" +msgid "Band Lock" +msgstr "Bloqueo de banda" #: application/views/bandmap/list.php:36 -msgid "Band filter changed to" +msgid "Band lock enabled - band filter will track radio band" msgstr "" +"Bloqueo de banda activado: el filtro de banda seguirá la banda de radio" #: application/views/bandmap/list.php:37 -msgid "by transceiver" -msgstr "" +msgid "Band filter changed to" +msgstr "Filtro de banda cambiado a" #: application/views/bandmap/list.php:38 -msgid "Frequency filter set to" -msgstr "" +msgid "by transceiver" +msgstr "por transceptor" #: application/views/bandmap/list.php:39 -msgid "Frequency outside known bands - showing all bands" -msgstr "" +msgid "Frequency filter set to" +msgstr "Filtro de frecuencia configurado a" #: application/views/bandmap/list.php:40 -msgid "Waiting for radio data..." -msgstr "" +msgid "Frequency outside known bands - showing all bands" +msgstr "Frecuencia fuera de bandas conocidas - mostrando todas las bandas" #: application/views/bandmap/list.php:41 -msgid "My Favorites" -msgstr "" +msgid "Waiting for radio data..." +msgstr "Esperando datos de radio..." #: application/views/bandmap/list.php:42 -msgid "Failed to load favorites" -msgstr "" +msgid "My Favorites" +msgstr "Mis favoritos" #: application/views/bandmap/list.php:43 -msgid "Modes applied. Band filter preserved (CAT connection is active)" -msgstr "" +msgid "Failed to load favorites" +msgstr "Error al cargar favoritos" #: application/views/bandmap/list.php:44 +msgid "Modes applied. Band filter preserved (CAT connection is active)" +msgstr "" +"Se aplicaron modos. Filtro de banda preservado (la conexión CAT está activa)" + +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" -msgstr "" +msgstr "Apliqué tus bandas y modos favoritos" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" -msgstr "" - -#: application/views/bandmap/list.php:48 -msgid "Submode filter enabled" -msgstr "" +msgstr "Mis submodos" #: application/views/bandmap/list.php:49 -msgid "Submode filter disabled - showing all" -msgstr "" +msgid "Submode filter enabled" +msgstr "Filtro de submodo habilitado" #: application/views/bandmap/list.php:50 -msgid "Required submodes" -msgstr "" +msgid "Submode filter disabled - showing all" +msgstr "Filtro de submodo deshabilitado - mostrando todo" #: application/views/bandmap/list.php:51 -msgid "Configure in User Settings - Modes" -msgstr "" +msgid "Required submodes" +msgstr "Modos secundarios requeridos" #: application/views/bandmap/list.php:52 -msgid "No submodes configured - configure in User Settings - Modes" -msgstr "" +msgid "Configure in User Settings - Modes" +msgstr "Configurar en Configuración de usuario - Modos" #: application/views/bandmap/list.php:53 -msgid "No submodes enabled in settings - showing all spots" +msgid "No submodes configured - configure in User Settings - Modes" msgstr "" +"No hay submodos configurados - configúralo en Configuración de Usuario - " +"Modos" #: application/views/bandmap/list.php:54 +msgid "No submodes enabled in settings - showing all spots" +msgstr "" +"No hay submodos habilitados en la configuración - mostrando todos los spots" + +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" - -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 -#: application/views/components/dxwaterfall.php:32 -msgid "Toggle CW mode filter" -msgstr "" +"Deshabilitado: no hay submodos habilitados para este modo en la " +"configuración de usuario" #: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 -#: application/views/components/dxwaterfall.php:34 -msgid "Toggle Digital mode filter" -msgstr "" +#: application/views/components/dxwaterfall.php:32 +msgid "Toggle CW mode filter" +msgstr "Activar filtro de modo CW" #: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/components/dxwaterfall.php:34 +msgid "Toggle Digital mode filter" +msgstr "Alternar filtro de modo digital" + +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" -msgstr "" +msgstr "Activar filtro de modo fonía" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" -msgstr "" +msgstr "Favoritos" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." -msgstr "" - -#: application/views/bandmap/list.php:62 -msgid "Enter a name for this filter preset:" -msgstr "" +msgstr "Guardar filtros actuales..." #: application/views/bandmap/list.php:63 -msgid "Filter preset saved" -msgstr "" +msgid "Enter a name for this filter preset:" +msgstr "Introduce un nombre para este filtro preestablecido:" #: application/views/bandmap/list.php:64 -msgid "Filter preset loaded" -msgstr "" +msgid "Filter preset saved" +msgstr "Preajuste de filtro guardado" #: application/views/bandmap/list.php:65 -msgid "Filter preset deleted" -msgstr "" +msgid "Filter preset loaded" +msgstr "Ajuste de filtro cargado" #: application/views/bandmap/list.php:66 -msgid "Are you sure to delete this filter preset?" -msgstr "" +msgid "Filter preset deleted" +msgstr "Preajuste de filtro eliminado" #: application/views/bandmap/list.php:67 -msgid "No saved filter presets" -msgstr "" +msgid "Are you sure to delete this filter preset?" +msgstr "¿Seguro que deseas eliminar este preset de filtro?" #: application/views/bandmap/list.php:68 +msgid "No saved filter presets" +msgstr "Sin preajustes de filtro guardados" + +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" - -#: application/views/bandmap/list.php:71 -msgid "Loading data from DX Cluster" -msgstr "" +"Se ha alcanzado el máximo de 20 preajustes de filtro. Por favor, elimina " +"algunos antes de añadir nuevos." #: application/views/bandmap/list.php:72 -msgid "Last fetched for" -msgstr "" +msgid "Loading data from DX Cluster" +msgstr "Cargando datos desde el DX Cluster" #: application/views/bandmap/list.php:73 -msgid "Max Age" -msgstr "" +msgid "Last fetched for" +msgstr "Última obtención para" #: application/views/bandmap/list.php:74 -msgid "Fetched at" -msgstr "" +msgid "Max Age" +msgstr "Edad máxima" #: application/views/bandmap/list.php:75 -msgid "Next update in" -msgstr "" +msgid "Fetched at" +msgstr "Consultado en" #: application/views/bandmap/list.php:76 -msgid "minutes" -msgstr "" +msgid "Next update in" +msgstr "Próxima actualización en" #: application/views/bandmap/list.php:77 -msgid "seconds" -msgstr "" +msgid "minutes" +msgstr "minutos" #: application/views/bandmap/list.php:78 -msgid "spots fetched" -msgstr "" +msgid "seconds" +msgstr "segundos" #: application/views/bandmap/list.php:79 -msgid "showing" -msgstr "" +msgid "spots fetched" +msgstr "spots obtenidos" #: application/views/bandmap/list.php:80 -msgid "showing all" -msgstr "" +msgid "showing" +msgstr "mostrando" #: application/views/bandmap/list.php:81 -msgid "Active filters" -msgstr "" +msgid "showing all" +msgstr "mostrando todo" #: application/views/bandmap/list.php:82 -msgid "Fetching..." -msgstr "" +msgid "Active filters" +msgstr "Filtros activos" -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:83 +msgid "Fetching..." +msgstr "Obteniendo..." + +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "No logrados" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Trabajado, no confirmado" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7767,265 +7922,272 @@ msgstr "Trabajado, no confirmado" msgid "LoTW User" msgstr "Usuario de LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" -msgstr "" - -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 -#: application/views/components/dxwaterfall.php:16 -msgid "New Continent" -msgstr "" +msgstr "Nuevo indicativo" #: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 -msgid "New Country" -msgstr "" +#: application/views/components/dxwaterfall.php:16 +msgid "New Continent" +msgstr "Nuevo continente" -#: application/views/bandmap/list.php:93 -msgid "Worked Before" -msgstr "" +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 +msgid "New Country" +msgstr "Nuevo País" #: application/views/bandmap/list.php:94 +msgid "Worked Before" +msgstr "Trabajado antes" + +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" -msgstr "" - -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 -msgid "de" -msgstr "" +msgstr "Trabajado en %s con %s" #: application/views/bandmap/list.php:103 -msgid "spotted" -msgstr "" +#: application/views/bandmap/list.php:598 +msgid "de" +msgstr "de" -#: application/views/bandmap/list.php:106 -msgid "Fresh spot (< 5 minutes old)" -msgstr "" +#: application/views/bandmap/list.php:104 +msgid "spotted" +msgstr "visto" #: application/views/bandmap/list.php:107 +msgid "Fresh spot (< 5 minutes old)" +msgstr "Spot fresco (< 5 minutos de antigüedad)" + #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Concurso" -#: application/views/bandmap/list.php:109 -msgid "Click to view" -msgstr "" - #: application/views/bandmap/list.php:110 -msgid "on QRZ.com" -msgstr "" +msgid "Click to view" +msgstr "Haz clic para ver" #: application/views/bandmap/list.php:111 -#, php-format -msgid "Click to view %s on QRZ.com" -msgstr "" +msgid "on QRZ.com" +msgstr "en QRZ.com" #: application/views/bandmap/list.php:112 -msgid "See details for" -msgstr "" +#, php-format +msgid "Click to view %s on QRZ.com" +msgstr "Haz clic para ver %s en QRZ.com" #: application/views/bandmap/list.php:113 -msgid "Worked on" -msgstr "" +msgid "See details for" +msgstr "Ver detalles para" #: application/views/bandmap/list.php:114 -msgid "Not worked on this band" -msgstr "" +msgid "Worked on" +msgstr "Trabajado en" #: application/views/bandmap/list.php:115 -#, php-format -msgid "LoTW User. Last upload was %d days ago" -msgstr "" +msgid "Not worked on this band" +msgstr "No trabajado en esta banda" #: application/views/bandmap/list.php:116 -msgid "Click to view on POTA.app" -msgstr "" +#, php-format +msgid "LoTW User. Last upload was %d days ago" +msgstr "Usuario de LoTW. La última carga fue hace %d días" #: application/views/bandmap/list.php:117 -msgid "Click to view on SOTL.as" -msgstr "" +msgid "Click to view on POTA.app" +msgstr "Haz clic para ver en POTA.app" #: application/views/bandmap/list.php:118 -msgid "Click to view on cqgma.org" -msgstr "" +msgid "Click to view on SOTL.as" +msgstr "Haz clic para ver en SOTL.as" #: application/views/bandmap/list.php:119 -msgid "Click to view on IOTA-World.org" -msgstr "" +msgid "Click to view on cqgma.org" +msgstr "Haz clic para ver en cqgma.org" #: application/views/bandmap/list.php:120 -msgid "See details for continent" -msgstr "" +msgid "Click to view on IOTA-World.org" +msgstr "Haz clic para ver en IOTA-World.org" #: application/views/bandmap/list.php:121 -#, php-format -msgid "See details for continent %s" -msgstr "" +msgid "See details for continent" +msgstr "Ver detalles del continente" #: application/views/bandmap/list.php:122 -msgid "See details for CQ Zone" -msgstr "" +#, php-format +msgid "See details for continent %s" +msgstr "Ver detalles del continente %s" #: application/views/bandmap/list.php:123 -#, php-format -msgid "See details for CQ Zone %s" -msgstr "" +msgid "See details for CQ Zone" +msgstr "Ver detalles para la Zona CQ" #: application/views/bandmap/list.php:124 -msgid "in" -msgstr "" +#, php-format +msgid "See details for CQ Zone %s" +msgstr "Ver detalles para la Zona CQ %s" -#: application/views/bandmap/list.php:127 -msgid "Exit Fullscreen" -msgstr "" +#: application/views/bandmap/list.php:125 +msgid "in" +msgstr "en" #: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 -msgid "Toggle Fullscreen" -msgstr "" +msgid "Exit Fullscreen" +msgstr "Salir de pantalla completa" #: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 +msgid "Toggle Fullscreen" +msgstr "Alternar pantalla completa" + +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" +"El filtrado de banda es controlado por tu radio cuando la conexión CAT está " +"habilitada" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" -msgstr "" - -#: application/views/bandmap/list.php:132 -msgid "(requires CAT connection)" -msgstr "" +msgstr "Hacer clic para preparar el registro" #: application/views/bandmap/list.php:133 +msgid "(requires CAT connection)" +msgstr "(se requiere conexión CAT)" + +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Observador" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Comentario" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Edad" -#: application/views/bandmap/list.php:137 -msgid "Incoming" -msgstr "" - #: application/views/bandmap/list.php:138 -msgid "Outgoing" -msgstr "" +msgid "Incoming" +msgstr "Entrante" #: application/views/bandmap/list.php:139 -#: application/views/components/dxwaterfall.php:15 -msgid "spots" -msgstr "" +msgid "Outgoing" +msgstr "Saliente" #: application/views/bandmap/list.php:140 -msgid "spot" -msgstr "" +#: application/views/components/dxwaterfall.php:15 +msgid "spots" +msgstr "spots" #: application/views/bandmap/list.php:141 -msgid "spotters" -msgstr "" +msgid "spot" +msgstr "spot" -#: application/views/bandmap/list.php:144 -msgid "Please Wait" -msgstr "" +#: application/views/bandmap/list.php:142 +msgid "spotters" +msgstr "spotters" #: application/views/bandmap/list.php:145 +msgid "Please Wait" +msgstr "Por favor espera" + +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" - -#: application/views/bandmap/list.php:148 -msgid "Loading spots..." -msgstr "" +"Por favor, espera %s segundos antes de enviar otro indicativo al formulario " +"de QSO" #: application/views/bandmap/list.php:149 -msgid "No spots found" -msgstr "" +msgid "Loading spots..." +msgstr "Cargando spots..." #: application/views/bandmap/list.php:150 -msgid "No data available" -msgstr "" +msgid "No spots found" +msgstr "No se encontraron spots" #: application/views/bandmap/list.php:151 -msgid "No spots found for selected filters" -msgstr "" +msgid "No data available" +msgstr "No hay datos disponibles" #: application/views/bandmap/list.php:152 -msgid "Error loading spots. Please try again." -msgstr "" +msgid "No spots found for selected filters" +msgstr "No se encontraron spots para los filtros seleccionados" -#: application/views/bandmap/list.php:155 -msgid "Show all modes" -msgstr "" +#: application/views/bandmap/list.php:153 +msgid "Error loading spots. Please try again." +msgstr "Error al cargar spots. Por favor, inténtalo de nuevo." #: application/views/bandmap/list.php:156 -msgid "Show all spots" -msgstr "" +msgid "Show all modes" +msgstr "Mostrar todos los modos" -#: application/views/bandmap/list.php:161 -msgid "Draw Spotters" -msgstr "" +#: application/views/bandmap/list.php:157 +msgid "Show all spots" +msgstr "Mostrar todos los spots" #: application/views/bandmap/list.php:162 -msgid "Extend Map" -msgstr "" +msgid "Draw Spotters" +msgstr "Dibuja spotters" #: application/views/bandmap/list.php:163 -msgid "Show Day/Night" -msgstr "" +msgid "Extend Map" +msgstr "Extender mapa" #: application/views/bandmap/list.php:164 +msgid "Show Day/Night" +msgstr "Mostrar día/noche" + +#: application/views/bandmap/list.php:165 msgid "Your QTH" -msgstr "" +msgstr "Tu QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" -msgstr "" +msgstr "Regresar a casa" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" -msgstr "" +msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" -msgstr "" +msgstr "Ayuda para DX Cluster" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" -msgstr "" +msgstr "Modo compacto - Ocultar/Mostrar menú" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" -msgstr "" +msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8033,314 +8195,281 @@ msgstr "" msgid "None" msgstr "Ninguno" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "En vivo - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " -msgstr "" +msgstr "Sondeo - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" -msgstr "" - -#: application/views/bandmap/list.php:253 -msgid "Select all continents" -msgstr "" - -#: application/views/bandmap/list.php:253 -msgid "World" -msgstr "" +msgstr "de:" #: application/views/bandmap/list.php:254 -msgid "Toggle Africa continent filter" -msgstr "" +msgid "Select all continents" +msgstr "Selecciona todos los continentes" + +#: application/views/bandmap/list.php:254 +msgid "World" +msgstr "Mundo" #: application/views/bandmap/list.php:255 -msgid "Toggle Antarctica continent filter" -msgstr "" +msgid "Toggle Africa continent filter" +msgstr "Alternar filtro del continente de África" #: application/views/bandmap/list.php:256 -msgid "Toggle Asia continent filter" -msgstr "" +msgid "Toggle Antarctica continent filter" +msgstr "Alternar filtro de continente de la Antártida" #: application/views/bandmap/list.php:257 -msgid "Toggle Europe continent filter" -msgstr "" +msgid "Toggle Asia continent filter" +msgstr "Alternar filtro del continente Asia" #: application/views/bandmap/list.php:258 -msgid "Toggle North America continent filter" -msgstr "" +msgid "Toggle Europe continent filter" +msgstr "Alternar filtro de continente de Europa" #: application/views/bandmap/list.php:259 -msgid "Toggle Oceania continent filter" -msgstr "" +msgid "Toggle North America continent filter" +msgstr "Activar filtro del continente de América del Norte" #: application/views/bandmap/list.php:260 +msgid "Toggle Oceania continent filter" +msgstr "Activar filtro del continente Oceanía" + +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" -msgstr "" +msgstr "Alternar el filtro del continente de América del Sur" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" -msgstr "" +msgstr "Filtros Avanzados" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" -msgstr "" +msgstr "Sujetar" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" -msgstr "" +msgstr "y haz clic para seleccionar múltiples opciones" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Estado DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Fonía" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" -msgstr "" +msgstr "Se requieren banderas" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" -msgstr "" +msgstr "Indicativo trabajado" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" -msgstr "" +msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" -msgstr "" +msgstr "Banderas adicionales" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" -msgstr "" +msgstr "Fresco (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" -msgstr "" +msgstr "Spots de continente" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" -msgstr "" +msgstr "Spot de Estación de Continente" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" -msgstr "" +msgstr "Aplicar filtros" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" -msgstr "" +msgstr "Filtrar favoritos" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" -msgstr "" +msgstr "Borrar todos los filtros excepto De Continent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" -msgstr "" - -#: application/views/bandmap/list.php:440 -msgid "Toggle 80m band filter" -msgstr "" +msgstr "Conmutar filtro de banda de 160m" #: application/views/bandmap/list.php:441 -msgid "Toggle 60m band filter" -msgstr "" +msgid "Toggle 80m band filter" +msgstr "Cambiar el filtro de banda de 80m" #: application/views/bandmap/list.php:442 -msgid "Toggle 40m band filter" -msgstr "" +msgid "Toggle 60m band filter" +msgstr "Activar filtro de la banda de 60m" #: application/views/bandmap/list.php:443 -msgid "Toggle 30m band filter" -msgstr "" +msgid "Toggle 40m band filter" +msgstr "Cambiar el filtro de banda de 40m" #: application/views/bandmap/list.php:444 -msgid "Toggle 20m band filter" -msgstr "" +msgid "Toggle 30m band filter" +msgstr "Cambiar el filtro de la banda de 30m" #: application/views/bandmap/list.php:445 -msgid "Toggle 17m band filter" -msgstr "" +msgid "Toggle 20m band filter" +msgstr "Cambiar el filtro de la banda de 20m" #: application/views/bandmap/list.php:446 -msgid "Toggle 15m band filter" -msgstr "" +msgid "Toggle 17m band filter" +msgstr "Activar filtro de la banda de 17m" #: application/views/bandmap/list.php:447 -msgid "Toggle 12m band filter" -msgstr "" +msgid "Toggle 15m band filter" +msgstr "Cambiar el filtro de banda de 15 m" #: application/views/bandmap/list.php:448 +msgid "Toggle 12m band filter" +msgstr "Cambiar el filtro de la banda de 12m" + +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" -msgstr "" +msgstr "Usemos el filtro de la banda de 10 m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" -msgstr "" - -#: application/views/bandmap/list.php:456 -msgid "Toggle VHF bands filter" -msgstr "" +msgstr "Conmutar filtro de banda de 6 m" #: application/views/bandmap/list.php:457 -msgid "Toggle UHF bands filter" -msgstr "" +msgid "Toggle VHF bands filter" +msgstr "Alternar filtro de bandas VHF" #: application/views/bandmap/list.php:458 +msgid "Toggle UHF bands filter" +msgstr "Alternar filtro de bandas UHF" + +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" -msgstr "" +msgstr "Alternar filtro de bandas SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." -msgstr "" - -#: application/views/bandmap/list.php:483 -msgid "Toggle LoTW User filter" -msgstr "" +msgstr "Cargando submodos..." #: application/views/bandmap/list.php:484 -msgid "LoTW users" -msgstr "" +msgid "Toggle LoTW User filter" +msgstr "Alternar filtro de usuario LoTW" -#: application/views/bandmap/list.php:490 -msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" -msgstr "" +#: application/views/bandmap/list.php:485 +msgid "LoTW users" +msgstr "usuarios de LoTW" #: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 -msgid "DX" -msgstr "" +msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" +msgstr "Alternar filtro de DX Spot (spot de continente ≠ spode de continente)" -#: application/views/bandmap/list.php:493 -msgid "Toggle New Continents filter" -msgstr "" +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 +msgid "DX" +msgstr "DX" #: application/views/bandmap/list.php:494 -msgid "New Continents" -msgstr "" +msgid "Toggle New Continents filter" +msgstr "Activar el filtro de Nuevos Continentes" -#: application/views/bandmap/list.php:496 -msgid "Toggle New Entities filter" -msgstr "" +#: application/views/bandmap/list.php:495 +msgid "New Continents" +msgstr "Nuevos continentes" #: application/views/bandmap/list.php:497 -msgid "New Entities" -msgstr "" +msgid "Toggle New Entities filter" +msgstr "Alternar filtro de Nuevas Entidades" -#: application/views/bandmap/list.php:499 -msgid "Toggle New Callsigns filter" -msgstr "" +#: application/views/bandmap/list.php:498 +msgid "New Entities" +msgstr "Nuevas entidades" #: application/views/bandmap/list.php:500 -msgid "New Callsigns" -msgstr "" +msgid "Toggle New Callsigns filter" +msgstr "Alternar filtro de nuevos indicativos de llamada" -#: application/views/bandmap/list.php:506 -msgid "Toggle Fresh spots filter (< 5 minutes old)" -msgstr "" +#: application/views/bandmap/list.php:501 +msgid "New Callsigns" +msgstr "Nuevas indicativos de llamada" #: application/views/bandmap/list.php:507 +msgid "Toggle Fresh spots filter (< 5 minutes old)" +msgstr "Alternar filtro de spots frescos (< 5 minutos de antigüedad)" + +#: application/views/bandmap/list.php:508 msgid "Fresh" -msgstr "" +msgstr "Fresco" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" -msgstr "" - -#: application/views/bandmap/list.php:512 -msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" -msgstr "" +msgstr "Activar/desactivar filtro de concurso" #: application/views/bandmap/list.php:513 -msgid "Referenced" -msgstr "" +msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" +msgstr "Alternar Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:519 -msgid "Open DX Map view" -msgstr "" +#: application/views/bandmap/list.php:514 +msgid "Referenced" +msgstr "Referenciado" #: application/views/bandmap/list.php:520 +msgid "Open DX Map view" +msgstr "Abrir vista de mapa DX" + +#: application/views/bandmap/list.php:521 msgid "DX Map" -msgstr "" +msgstr "Mapa DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "" +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Buscar columna" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Todas las columnas" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Información de Spot" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submodo" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "Estación DX" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" -msgstr "" +msgstr "Entidad" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8348,6 +8477,61 @@ msgstr "" msgid "Message" msgstr "Mensaje" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter de Continentes" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Zona CQ de Spotter" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Buscar spots..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Nota: El mapa muestra ubicaciones de entidades DXCC, no ubicaciones reales" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Edad en minutos" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Indicativo spotted" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Bandera" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "Entidad DXCC" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spot del observador" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Última fecha de QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Especial" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Banderas especiales" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Por favor, introduce números válidos para la frecuencia" @@ -8627,7 +8811,7 @@ msgstr "" "el código de referencia IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8745,19 +8929,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8791,15 +8975,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Sí" @@ -8814,19 +9000,19 @@ msgstr "Sí" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8860,16 +9046,17 @@ msgstr "Sí" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "No" @@ -8900,52 +9087,52 @@ msgid "First QSO" msgstr "Primer QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Último QSO" #: application/views/calltester/comparison_result.php:18 msgid "DXCC Class Results" -msgstr "" +msgstr "Resultados de la Clase DXCC" #: application/views/calltester/comparison_result.php:21 #: application/views/calltester/comparison_result.php:33 msgid "Calls tested:" -msgstr "" +msgstr "Indicativos probados:" #: application/views/calltester/comparison_result.php:22 #: application/views/calltester/comparison_result.php:34 msgid "Execution time:" -msgstr "" +msgstr "Tiempo de ejecución:" #: application/views/calltester/comparison_result.php:23 #: application/views/calltester/comparison_result.php:35 msgid "Issues found:" -msgstr "" +msgstr "Problemas encontrados:" #: application/views/calltester/comparison_result.php:30 msgid "Logbook Model Results" -msgstr "" +msgstr "Resultados del modelo de libro de registros" #: application/views/calltester/comparison_result.php:44 msgid "Comparison Summary" -msgstr "" +msgstr "Resumen de comparación" #: application/views/calltester/comparison_result.php:45 msgid "Only found in DXCC Class:" -msgstr "" +msgstr "Sólo se encuentra en la Clase DXCC:" #: application/views/calltester/comparison_result.php:46 msgid "Only found in Logbook Model:" -msgstr "" +msgstr "Solo encontrado en el Modelo de Libro de Registro:" #: application/views/calltester/comparison_result.php:47 msgid "Found in both methods:" -msgstr "" +msgstr "Encontrado en ambos métodos:" #: application/views/calltester/comparison_result.php:54 msgid "Issues found only in DXCC Class (not in Logbook Model):" -msgstr "" +msgstr "Problemas encontrados solo en Clase DXCC (no en Modelo de Registro):" #: application/views/calltester/comparison_result.php:62 #: application/views/calltester/comparison_result.php:98 @@ -8956,7 +9143,7 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:392 #: application/views/zonechecker/result.php:52 msgid "Station Profile" -msgstr "" +msgstr "Perfil de estación" #: application/views/calltester/comparison_result.php:63 #: application/views/calltester/comparison_result.php:99 @@ -8964,14 +9151,14 @@ msgstr "" #: application/views/calltester/result.php:25 #: application/views/logbookadvanced/checkresult.php:107 msgid "Existing DXCC" -msgstr "" +msgstr "Existente DXCC" #: application/views/calltester/comparison_result.php:64 #: application/views/calltester/comparison_result.php:100 #: application/views/calltester/comparison_result.php:136 #: application/views/calltester/result.php:26 msgid "Existing ADIF" -msgstr "" +msgstr "ADIF existente" #: application/views/calltester/comparison_result.php:65 #: application/views/calltester/comparison_result.php:101 @@ -8979,62 +9166,66 @@ msgstr "" #: application/views/calltester/result.php:27 #: application/views/logbookadvanced/checkresult.php:108 msgid "Result DXCC" -msgstr "" +msgstr "Resultado DXCC" #: application/views/calltester/comparison_result.php:66 #: application/views/calltester/comparison_result.php:102 #: application/views/calltester/comparison_result.php:138 #: application/views/calltester/result.php:28 msgid "Result ADIF" -msgstr "" +msgstr "Resultado ADIF" #: application/views/calltester/comparison_result.php:90 msgid "Issues found only in Logbook Model (not in DXCC Class):" msgstr "" +"Problemas encontrados solo en el modelo del libro de registro (no en la " +"clase DXCC):" #: application/views/calltester/comparison_result.php:126 msgid "Issues found in both methods:" -msgstr "" +msgstr "Problemas encontrados en ambos métodos:" #: application/views/calltester/comparison_result.php:162 msgid "" "No DXCC issues found in either method. All calls have correct DXCC " "information." msgstr "" +"No se encontraron problemas de DXCC en ninguno de los métodos. Todos los " +"indicativos tienen la información de DXCC correcta." #: application/views/calltester/index.php:3 msgid "Callsign DXCC identification" -msgstr "" +msgstr "Identificación de indicativo DXCC" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Indicativo " #: application/views/calltester/index.php:15 msgid "Start DXCC Check" -msgstr "" +msgstr "Inicia comprobación de DXCC" #: application/views/calltester/index.php:18 msgid "Compare DXCC class and logbook model" -msgstr "" +msgstr "Comparar la clase DXCC y el modelo de libro de registros" #: application/views/calltester/result.php:4 #: application/views/logbookadvanced/checkresult.php:85 msgid "Callsigns tested: " -msgstr "" +msgstr "Indicativos probados: " #: application/views/calltester/result.php:5 #: application/views/logbookadvanced/checkresult.php:86 msgid "Execution time: " -msgstr "" +msgstr "Tiempo de ejecución: " #: application/views/calltester/result.php:6 #: application/views/logbookadvanced/checkresult.php:87 msgid "Number of potential QSOs with wrong DXCC: " -msgstr "" +msgstr "Número de QSOs potenciales con DXCC incorrecto: " #: application/views/club/clubswitch_modal.php:5 msgid "Switch to a Clubstation" @@ -9141,7 +9332,7 @@ msgstr "Exportar QSO por ADIF" #: application/views/club/permissions.php:128 msgid "Export own QSO per ADIF" -msgstr "" +msgstr "Exportar propio QSO por ADIF" #: application/views/club/permissions.php:137 msgid "User Management" @@ -9301,8 +9492,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9352,163 +9543,167 @@ msgstr "Descargar QSLs desde Clublog" #: application/views/components/dxwaterfall.php:13 msgid "Tune to spot frequency and start logging QSO" -msgstr "" +msgstr "Sintoniza la frecuencia específica y empieza a registrar el QSO" #: application/views/components/dxwaterfall.php:14 msgid "Cycle through nearby spots" -msgstr "" +msgstr "Recorre los lugares cercanos" #: application/views/components/dxwaterfall.php:17 msgid "New DXCC" -msgstr "" +msgstr "Nuevo DXCC" #: application/views/components/dxwaterfall.php:19 msgid "First spot" -msgstr "" +msgstr "Primer spot" #: application/views/components/dxwaterfall.php:19 msgid "Previous spot" -msgstr "" +msgstr "Spot previo" #: application/views/components/dxwaterfall.php:20 msgid "No spots at lower frequency" -msgstr "" +msgstr "No hay spots en frecuencia baja" #: application/views/components/dxwaterfall.php:21 msgid "Last spot" -msgstr "" +msgstr "Último spot" #: application/views/components/dxwaterfall.php:21 msgid "Next spot" -msgstr "" +msgstr "Siguiente spot" #: application/views/components/dxwaterfall.php:22 msgid "No spots at higher frequency" -msgstr "" +msgstr "No hay spots en frecuencia más alta" #: application/views/components/dxwaterfall.php:23 msgid "No spots available" -msgstr "" +msgstr "No hay spots disponibles" #: application/views/components/dxwaterfall.php:24 msgid "Cycle through unworked continents/DXCC" -msgstr "" +msgstr "Cambia por los continentes/DXCC no trabajados" #: application/views/components/dxwaterfall.php:25 msgid "DX Hunter" -msgstr "" +msgstr "Cazador de DX" #: application/views/components/dxwaterfall.php:26 msgid "No unworked continents/DXCC on this band" -msgstr "" +msgstr "No hay continentes/DXCC sin trabajar en esta banda" #: application/views/components/dxwaterfall.php:27 msgid "Click to cycle or wait 1.5s to apply" -msgstr "" +msgstr "Haz clic para alternar o espera 1.5s para aplicar" #: application/views/components/dxwaterfall.php:28 msgid "Change spotter continent" -msgstr "" +msgstr "Cambiar continente del spotter" #: application/views/components/dxwaterfall.php:29 msgid "Filter by mode" -msgstr "" +msgstr "Filtrar por modo" #: application/views/components/dxwaterfall.php:36 msgid "Zoom out" -msgstr "" +msgstr "Alejar" #: application/views/components/dxwaterfall.php:37 msgid "Reset zoom to default (3)" -msgstr "" +msgstr "Restablecer el zoom a predeterminado (3)" #: application/views/components/dxwaterfall.php:38 msgid "Zoom in" -msgstr "" +msgstr "Acercar" #: application/views/components/dxwaterfall.php:39 msgid "Downloading DX Cluster data" -msgstr "" +msgstr "Descargando datos del DX Cluster" #: application/views/components/dxwaterfall.php:40 msgid "Comment: " -msgstr "" +msgstr "Comentario: " #: application/views/components/dxwaterfall.php:41 msgid "modes:" -msgstr "" +msgstr "modos:" #: application/views/components/dxwaterfall.php:42 msgid "OUT OF BANDPLAN" -msgstr "" +msgstr "FUERA DEL PLAN DE BANDAS" #: application/views/components/dxwaterfall.php:43 msgid "Out of band" -msgstr "" +msgstr "Fuera de banda" #: application/views/components/dxwaterfall.php:44 msgid "" "DX Waterfall has experienced an unexpected error and will be shut down. " "Please visit Wavelog's GitHub and create a bug report if this issue persists." msgstr "" +"DX Waterfall ha experimentado un error inesperado y se cerrará. Por favor, " +"visita el GitHub de Wavelog y crea un informe de error si este problema " +"persiste." #: application/views/components/dxwaterfall.php:45 msgid "Changing radio frequency..." -msgstr "" +msgstr "Cambiando frecuencia de radio..." #: application/views/components/dxwaterfall.php:46 msgid "INVALID" -msgstr "" +msgstr "INVALIDO" #: application/views/components/dxwaterfall.php:47 msgid "Click to turn on the DX Waterfall" -msgstr "" +msgstr "Haz clic para activar el DX Waterfall" #: application/views/components/dxwaterfall.php:48 msgid "Turn off DX Waterfall" -msgstr "" +msgstr "Apaga la cascada DX" #: application/views/components/dxwaterfall.php:49 msgid "Please wait" -msgstr "" +msgstr "Por favor espera" #: application/views/components/dxwaterfall.php:50 msgid "Cycle label size" -msgstr "" +msgstr "Tamaño de la etiqueta del ciclo" #: application/views/components/dxwaterfall.php:51 msgid "X-Small" -msgstr "" +msgstr "Muy pequeño" #: application/views/components/dxwaterfall.php:52 msgid "Small" -msgstr "" +msgstr "Pequeño" #: application/views/components/dxwaterfall.php:53 msgid "Medium" -msgstr "" +msgstr "Medio" #: application/views/components/dxwaterfall.php:54 msgid "Large" -msgstr "" +msgstr "Grande" #: application/views/components/dxwaterfall.php:55 msgid "X-Large" -msgstr "" +msgstr "Extra grande" #: application/views/components/dxwaterfall.php:56 msgid "by:" -msgstr "" +msgstr "por:" #: application/views/components/dxwaterfall.php:57 #, php-format msgid "Please wait %s second(s) before toggling DX Waterfall again." msgstr "" +"Por favor, espera %s segundo(s) antes de volver a conmutar el DX Waterfall." #: application/views/components/dxwaterfall.php:81 #: application/views/components/dxwaterfall.php:87 msgid "DX Waterfall Help" -msgstr "" +msgstr "Ayuda para cascada DX" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 @@ -9613,7 +9808,7 @@ msgstr "Nombre ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9683,7 +9878,7 @@ msgstr "Crear" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Nombre del concurso" @@ -9764,8 +9959,8 @@ msgid "Locator" msgstr "Localizador" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9881,11 +10076,11 @@ msgstr "Identificador" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Activado" @@ -9980,7 +10175,8 @@ msgid "Cron List" msgstr "Lista de Cron" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10039,7 +10235,7 @@ msgstr "Modo de propagación" #: application/views/csv/index.php:95 msgctxt "Propagation Mode" msgid "All but Repeater" -msgstr "" +msgstr "Todos menos repetidor" #: application/views/dashboard/index.php:5 msgid "RSTS" @@ -10116,6 +10312,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"No pierdas tu racha: ya has hecho al menos un QSO durante los últimos %s " +"días consecutivos." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -10140,14 +10338,16 @@ msgid "" "LoTW Warning: There is an issue with at least one of your %sLoTW " "certificates%s!" msgstr "" +"LoTW Advertencia: ¡Hay un problema con al menos uno de tus %scertificados " +"LoTW%s!" #: application/views/dashboard/index.php:216 msgid "At least one of your certificates is expired" -msgstr "" +msgstr "Al menos uno de tus certificados ha caducado" #: application/views/dashboard/index.php:217 msgid "At least one of your certificates is expiring" -msgstr "" +msgstr "Al menos uno de tus certificados está caducando" #: application/views/dashboard/index.php:295 #: application/views/qso/index.php:929 @@ -10178,9 +10378,9 @@ msgstr "Solicitadas" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10202,10 +10402,10 @@ msgstr "Solicitadas" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Enviado" @@ -10215,9 +10415,9 @@ msgstr "Enviado" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10238,10 +10438,10 @@ msgstr "Enviado" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Recibido" @@ -10249,17 +10449,17 @@ msgstr "Recibido" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10282,11 +10482,11 @@ msgstr "Recibido" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Solicitadas" @@ -10312,6 +10512,38 @@ msgstr "Última actualización a las %s." msgid "Data provided by HAMqsl." msgstr "Datos proporcionados por HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Número de QSOs para este día de la semana" @@ -10391,7 +10623,7 @@ msgstr "Fecha de inicio" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Fecha de fin" @@ -10576,29 +10808,29 @@ msgstr "Subir archivo" #: application/views/debug/index.php:2 msgid "Are you sure you want to clear the cache?" -msgstr "" +msgstr "¿Estás seguro de que quieres borrar el caché?" #: application/views/debug/index.php:3 msgid "Failed to clear cache!" -msgstr "" +msgstr "¡Error al limpiar la caché!" #: application/views/debug/index.php:4 #, php-format msgid "Last version check: %s" -msgstr "" +msgstr "Última comprobación de versión: %s" #: application/views/debug/index.php:5 msgid "Wavelog is up to date!" -msgstr "" +msgstr "¡Wavelog está actualizado!" #: application/views/debug/index.php:6 #, php-format msgid "There is a newer version available: %s" -msgstr "" +msgstr "Hay una versión más reciente disponible: %s" #: application/views/debug/index.php:7 msgid "The Remote Repository doesn't know your branch." -msgstr "" +msgstr "El repositorio remoto no conoce tu rama." #: application/views/debug/index.php:32 msgid "Wavelog Information" @@ -10732,7 +10964,8 @@ msgstr "Éxito" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Fallido" @@ -10812,107 +11045,121 @@ msgstr "Módulos" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Instalado" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "No instalado" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" -msgstr "" +msgstr "Información de caché" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" -msgstr "" +msgstr "Configuración actual" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" -msgstr "" +msgstr "Adaptador primario" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" -msgstr "" +msgstr "Adaptador de respaldo" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" -msgstr "" +msgstr "Camino para el adaptador %s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "Prefijo clave" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" -msgstr "" +msgstr "Detalles de caché" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" -msgstr "" +msgstr "Tamaño total" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" +msgstr "Número de teclas" + +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "El caché funciona correctamente. ¡Todo bien!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." msgstr "" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" + +#: application/views/debug/index.php:526 msgid "Available Adapters" -msgstr "" - -#: application/views/debug/index.php:496 -msgid "Clear Cache" -msgstr "" +msgstr "Adaptadores disponibles" #: application/views/debug/index.php:543 +msgid "Clear Cache" +msgstr "Limpiar caché" + +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Información de Git" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Rama" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Comprometerse" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Etiqueta" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Última búsqueda" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Buscar nueva versión" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10920,77 +11167,77 @@ msgstr "Buscar nueva versión" msgid "Update now" msgstr "Actualizar ahora" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Fecha de descarga del archivo" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Archivo" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Última actualización" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "Actualización de DXCC de Club Log" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Actualizar" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Descargar archivo DOK" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "Usuarios de LoTW descargan" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "Descarga de archivo POTA" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "Descarga de archivo SCP" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "Descarga de archivo SOTA" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "Descarga de archivo WWFF" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "Actualización de TLE" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Actualización de Hams Of Note" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" -msgstr "" +msgstr "Cuadrículas VUCC" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Mantenimiento de la base de datos de QSO" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -11000,143 +11247,143 @@ msgstr[0] "" msgstr[1] "" "La base de datos contiene %d QSOs sin un perfil de estación (ubicación)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Por favor, marca los QSOs y asígnalos a una ubicación de estación existente:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Ubicación objetivo" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Reasignar" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Cada QSO en tu base de datos está asignado a un perfil de estación " "(ubicación)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Todo bien" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albanés" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Armenio" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bosnio" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Búlgaro" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Chino (Simplificado)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Croata" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Checo" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Holandés" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Inglés" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estonio" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Finlandés" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Francés" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Alemán" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Griego" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Húngaro" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japonés" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Letón" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Lituano" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Montenegrino" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polaco" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portugués" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Ruso" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Serbio" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Eslovaco" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Esloveno" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Español" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turco" @@ -11198,7 +11445,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "¡Solo se exportarán QSOs con un gridsquare definido!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "Información QSL" @@ -11447,7 +11694,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "Mensaje QSL" @@ -11585,31 +11832,32 @@ msgid "QSL Date" msgstr "Fecha QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Ver." #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Vacío" @@ -11700,7 +11948,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Editar QSO" @@ -11812,154 +12060,156 @@ msgstr "No se encontraron notas" #: application/views/interface_assets/footer.php:73 msgid "No notes for this callsign" -msgstr "" +msgstr "Sin notas para este indicativo" #: application/views/interface_assets/footer.php:74 msgid "Callsign Note" -msgstr "" +msgstr "Nota de distintivo de llamada" #: application/views/interface_assets/footer.php:75 msgid "Note deleted successfully" -msgstr "" +msgstr "Nota eliminada con éxito" #: application/views/interface_assets/footer.php:76 msgid "Note created successfully" -msgstr "" +msgstr "Nota creada con éxito" #: application/views/interface_assets/footer.php:77 msgid "Note saved successfully" -msgstr "" +msgstr "Nota guardada con éxito" #: application/views/interface_assets/footer.php:78 msgid "Error saving note" -msgstr "" +msgstr "Error al guardar la nota" #: application/views/interface_assets/footer.php:79 #, php-format msgid "QSO with %s by %s was added to logbook." -msgstr "" +msgstr "QSO con %s por %s fue añadido al libro de registros." #: application/views/interface_assets/footer.php:80 msgid "QSO Added to Backlog" -msgstr "" +msgstr "QSO agregado a la lista de pendientes" #: application/views/interface_assets/footer.php:81 #, php-format msgid "Send email to %s" -msgstr "" +msgstr "Enviar correo electrónico a %s" #: application/views/interface_assets/footer.php:82 msgid "" "Callsign was already worked and confirmed in the past on this band and mode!" msgstr "" +"¡La señal distintiva ya fue trabajada y confirmada en el pasado en esta " +"banda y modo!" #: application/views/interface_assets/footer.php:83 msgid "Callsign was already worked in the past on this band and mode!" -msgstr "" +msgstr "¡El indicativo ya fue trabajado en el pasado en esta banda y modo!" #: application/views/interface_assets/footer.php:84 msgid "New Callsign!" -msgstr "" +msgstr "Nuevo indicativo!" #: application/views/interface_assets/footer.php:85 msgid "Grid was already worked and confirmed in the past" -msgstr "" +msgstr "La cuadrícula ya fue trabajada y confirmada en el pasado" #: application/views/interface_assets/footer.php:86 msgid "Grid was already worked in the past" -msgstr "" +msgstr "La cuadrícula ya se trabajó en el pasado" #: application/views/interface_assets/footer.php:87 msgid "New grid!" -msgstr "" +msgstr "¡Nueva cuadrícula!" #: application/views/interface_assets/footer.php:88 msgid "Are you sure to delete Fav?" -msgstr "" +msgstr "¿Estás seguro de eliminar Fav?" #: application/views/interface_assets/footer.php:89 msgid "" "DXCC was already worked and confirmed in the past on this band and mode!" -msgstr "" +msgstr "¡DXCC ya fue trabajado y confirmado en el pasado en esta banda y modo!" #: application/views/interface_assets/footer.php:90 msgid "DXCC was already worked in the past on this band and mode!" -msgstr "" +msgstr "¡DXCC ya fue trabajado en el pasado en esta banda y modo!" #: application/views/interface_assets/footer.php:91 msgid "New DXCC, not worked on this band and mode!" -msgstr "" +msgstr "¡Nuevo DXCC, no trabajado en esta banda y modo!" #: application/views/interface_assets/footer.php:92 #, php-format msgid "Lookup %s info on %s" -msgstr "" +msgstr "Busca información de %s en %s" #: application/views/interface_assets/footer.php:93 #, php-format msgid "Lookup %s summit info on %s" -msgstr "" +msgstr "Busca información sobre la cumbre %s en %s" #: application/views/interface_assets/footer.php:94 #, php-format msgid "Lookup %s reference info on %s" -msgstr "" +msgstr "Busca información de referencia %s sobre %s" #: application/views/interface_assets/footer.php:95 msgid "Error loading bearing!" -msgstr "" +msgstr "¡Error al cargar el rodamiento!" #: application/views/interface_assets/footer.php:96 msgid "Aliases" -msgstr "" +msgstr "Alias" #: application/views/interface_assets/footer.php:97 msgid "Previously" -msgstr "" +msgstr "Previamente" #: application/views/interface_assets/footer.php:98 msgid "Born" -msgstr "" +msgstr "Nacido" #: application/views/interface_assets/footer.php:99 msgid "years old" -msgstr "" +msgstr "años" #: application/views/interface_assets/footer.php:100 msgid "License" -msgstr "" +msgstr "Licencia" #: application/views/interface_assets/footer.php:101 msgid "from" -msgstr "" +msgstr "de" #: application/views/interface_assets/footer.php:102 msgid "years" -msgstr "" +msgstr "años" #: application/views/interface_assets/footer.php:103 msgid "expired on" -msgstr "" +msgstr "caducado el" #: application/views/interface_assets/footer.php:104 msgid "Website" -msgstr "" +msgstr "Sitio web" #: application/views/interface_assets/footer.php:105 msgid "Local time" -msgstr "" +msgstr "Hora local" #: application/views/interface_assets/footer.php:107 msgid "View location on Google Maps (Satellite)" -msgstr "" +msgstr "Ver ubicación en Google Maps (Satélite)" #: application/views/interface_assets/footer.php:108 msgid "Novice" -msgstr "" +msgstr "Principiante" #: application/views/interface_assets/footer.php:109 msgid "Technician" -msgstr "" +msgstr "Técnico" #: application/views/interface_assets/footer.php:111 #: application/views/interface_assets/header.php:117 @@ -11968,110 +12218,122 @@ msgstr "Avanzado" #: application/views/interface_assets/footer.php:112 msgid "Extra" -msgstr "" +msgstr "Extra" #: application/views/interface_assets/footer.php:113 msgid "Gridsquare Formatting" -msgstr "" +msgstr "Formato de cuadrícula" #: application/views/interface_assets/footer.php:114 msgid "" "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" msgstr "" +"Introduce múltiples cuadrículas (de 4 dígitos) separadas con comas. Por " +"ejemplo: IO77,IO78" #: application/views/interface_assets/footer.php:115 msgid "live" -msgstr "" +msgstr "en vivo" #: application/views/interface_assets/footer.php:116 msgid "polling" -msgstr "" +msgstr "sondeo" #: application/views/interface_assets/footer.php:117 msgid "" "Note: Periodic polling is slow. When operating locally, WebSockets are a " "more convenient way to control your radio in real-time." msgstr "" +"Nota: Las encuestas periódicas son lentas. Al operar localmente, los " +"WebSockets son una forma más conveniente de controlar tu radio en tiempo " +"real." #: application/views/interface_assets/footer.php:118 msgid "TX" -msgstr "" +msgstr "TX" #: application/views/interface_assets/footer.php:119 msgid "RX" -msgstr "" +msgstr "RX" #: application/views/interface_assets/footer.php:120 msgid "TX/RX" -msgstr "" +msgstr "TX/RX" #: application/views/interface_assets/footer.php:122 msgid "Power" -msgstr "" +msgstr "Potencia" #: application/views/interface_assets/footer.php:123 msgid "Radio connection error" -msgstr "" +msgstr "Error de conexión de radio" #: application/views/interface_assets/footer.php:124 msgid "Connection lost, please select another radio." -msgstr "" +msgstr "Conexión perdida, por favor selecciona otra radio." #: application/views/interface_assets/footer.php:125 msgid "Radio connection timeout" -msgstr "" +msgstr "Tiempo de espera de conexión de radio" #: application/views/interface_assets/footer.php:126 msgid "Data is stale, please select another radio." -msgstr "" +msgstr "Los datos están desactualizados, por favor selecciona otra radio." #: application/views/interface_assets/footer.php:127 msgid "You're not logged in. Please log in." -msgstr "" +msgstr "No has iniciado sesión. Por favor, inicia sesión." #: application/views/interface_assets/footer.php:128 msgid "Radio Tuning Failed" -msgstr "" +msgstr "Fallo en la sintonización de la radio" #: application/views/interface_assets/footer.php:129 msgid "Failed to tune radio to" -msgstr "" +msgstr "No se pudo sintonizar la radio a" #: application/views/interface_assets/footer.php:130 msgid "CAT interface not responding. Please check your radio connection." msgstr "" +"La interfaz CAT no responde. Por favor, revisa la conexión de tu radio." #: application/views/interface_assets/footer.php:131 msgid "No CAT URL configured for this radio" -msgstr "" +msgstr "No se ha configurado una URL CAT para esta radio" #: application/views/interface_assets/footer.php:132 msgid "WebSocket Radio" -msgstr "" +msgstr "Radio WebSocket" #: application/views/interface_assets/footer.php:133 msgid "Location is fetched from provided gridsquare" -msgstr "" +msgstr "La ubicación se obtiene de la cuadrícula proporcionada" #: application/views/interface_assets/footer.php:134 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" +"La ubicación se obtiene de las coordenadas DXCC (no se proporciona " +"cuadrícula)" #: application/views/interface_assets/footer.php:137 msgid "Working without CAT connection" -msgstr "" +msgstr "Trabajando sin conexión CAT" #: application/views/interface_assets/footer.php:138 msgid "" "CAT connection is currently disabled. Enable CAT connection to work in " "online mode with your radio." msgstr "" +"La conexión CAT está actualmente desactivada. Activa la conexión CAT para " +"trabajar en modo en línea con tu radio." #: application/views/interface_assets/footer.php:139 msgid "" "To connect your radio to Wavelog, visit the Wavelog Wiki for setup " "instructions." msgstr "" +"Para conectar tu radio a Wavelog, visita la Wiki de Wavelog para obtener " +"instrucciones de configuración." #: application/views/interface_assets/footer.php:223 #: application/views/interface_assets/header.php:547 @@ -12084,78 +12346,78 @@ msgstr "Información de Versión" msgid "Failed to load the modal. Please try again." msgstr "No se pudo cargar el modal. Por favor, inténtalo de nuevo." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Descripción:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Descripción de la consulta" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "¡Tu consulta ha sido guardada!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Consultas almacenadas:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Ejecutar consulta" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Consultas almacenadas" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "¡Necesitas hacer una consulta antes de buscar!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Exportar a ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Abrir en el Registro Avanzado" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "¡Advertencia! ¿Estás seguro de que deseas eliminar esta consulta almacenada?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "¡La consulta almacenada ha sido eliminada!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "" "No se pudo eliminar la consulta almacenada. ¡Por favor, inténtalo de nuevo!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "¡La descripción de la consulta ha sido actualizada!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Algo salió mal con el guardado. ¡Por favor, inténtalo de nuevo!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12165,15 +12427,15 @@ msgstr "" "Comprueba cuál es el DXCC correcto para esta localización en particular. Si " "está seguro, ignore esta advertencia." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Contar: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Cuadrículas: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12181,57 +12443,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Cuadrículas" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" +"Error de búsqueda de ubicación. Por favor, revisa la consola del navegador." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "grid squares" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Cuenta total" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "Tarjeta QSL para " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "¡Advertencia! ¿Estás seguro de que deseas eliminar esta tarjeta QSL?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Tarjeta eQSL" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "Tarjeta eQSL para " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "Archivo de imagen QSL" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Frente de la tarjeta QSL:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Tarjeta QSL de regreso:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Agregar QSOs adicionales a una tarjeta QSL" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Algo salió mal. ¡Inténtalo de nuevo!" @@ -12354,7 +12621,7 @@ msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" -msgstr "" +msgstr "Polonia" #: application/views/interface_assets/header.php:274 msgid "Switzerland" @@ -12385,7 +12652,7 @@ msgid "Satellite Pass" msgstr "Paso de satélite" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Administrador" @@ -12410,7 +12677,7 @@ msgid "Log" msgstr "Registro" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12492,22 +12759,22 @@ msgstr "Exportación DCL" #: application/views/interface_assets/header.php:537 msgid "Internal tools" -msgstr "" +msgstr "Herramientas internas" #: application/views/interface_assets/header.php:539 msgid "Callsign DXCC checker" -msgstr "" +msgstr "Verificador de indicativos DXCC" #: application/views/interface_assets/header.php:540 msgid "GeoJSON QSO Map" -msgstr "" +msgstr "Mapa de QSO GeoJSON" #: application/views/interface_assets/header.php:541 msgid "Gridsquare Zone checker" -msgstr "" +msgstr "Verificador de cuadrícula de zona" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Ayuda" @@ -12643,7 +12910,7 @@ msgid "Total height of one label" msgstr "Altura total de una etiqueta" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Tamaño de fuente" @@ -12704,14 +12971,14 @@ msgstr "Orientación del papel" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Paisaje" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Retrato" @@ -12730,47 +12997,52 @@ msgstr "" "significativo, tal vez el estilo de la etiqueta." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Marcar QSL como impresa" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Imprimir" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Crear nuevo tipo de etiqueta" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Crear nuevo tipo de papel" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Tipos de papel" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Ancho" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Altura" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Utilizado por sellos" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Orientación" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Tipos de etiquetas" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12778,77 +13050,91 @@ msgstr "Tipos de etiquetas" msgid "QSOs" msgstr "QSOs" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Usar para imprimir" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Ningún papel asignado" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Etiquetas de tarjetas QSL pendientes" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSOs esperando" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Ver QSOs" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "¿Incluir cuadrícula?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "¿Incluir referencia? (SIG, SOTA, POTA, IOTA, WWFF; Si está disponible en la " "ubicación)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "¿Incluir Vía (si está lleno)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "¿Incluir QSLMSG (si está lleno)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "¿Incluir mensaje de gracias?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "¿Iniciar impresión desde?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " "data." msgstr "" +"Si un QSO tiene un locator de 4 caracteres (por ejemplo, JO90), intenta " +"refinarlo usando los datos del callbook." #: application/views/logbookadvanced/callbookdialog.php:6 msgid "" "We’ll keep the original value and add a more precise locator (e.g., JO90AB " "or JO90AB12) when a match is confident." msgstr "" +"Mantendremos el valor original y añadiremos un localizador más preciso (por " +"ejemplo, JO90AB o JO90AB12) cuando coincida con confianza." #: application/views/logbookadvanced/checkresult.php:42 msgid "Distance Check Results" -msgstr "" +msgstr "Resultados de la verificación de distancia" #: application/views/logbookadvanced/checkresult.php:43 #: application/views/logbookadvanced/checkresult.php:59 #: application/views/logbookadvanced/checkresult.php:75 msgid "QSOs to update found:" -msgstr "" +msgstr "QSOs para actualizar encontrados:" #: application/views/logbookadvanced/checkresult.php:46 #: application/views/logbookadvanced/distancedialog.php:2 @@ -12857,89 +13143,102 @@ msgid "" "station profile, and the gridsquare of the QSO partner. Distance will be " "calculated based on if short path or long path is set." msgstr "" +"Actualiza todos los QSOs con la distancia basada en tu cuadrícula " +"establecida en el perfil de la estación, y la cuadrícula del socio del QSO. " +"La distancia se calculará en función de si se establece camino corto o " +"camino largo." #: application/views/logbookadvanced/checkresult.php:47 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." -msgstr "" +msgstr "Esto es útil si has importado QSOs sin información de distancia." #: application/views/logbookadvanced/checkresult.php:48 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "" +"La actualización solo establecerá la distancia para QSOs donde la distancia " +"esté vacía." #: application/views/logbookadvanced/checkresult.php:58 msgid "Continent Check Results" -msgstr "" +msgstr "Resultados de la Verificación de Continente" #: application/views/logbookadvanced/checkresult.php:62 #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." msgstr "" +"Actualiza todos los QSOs con el continente basado en el país DXCC del QSO." #: application/views/logbookadvanced/checkresult.php:63 #: application/views/logbookadvanced/continentdialog.php:3 msgid "This is useful if you have imported QSOs without continent information." -msgstr "" +msgstr "Esto es útil si has importado QSOs sin información del continente." #: application/views/logbookadvanced/checkresult.php:64 #: application/views/logbookadvanced/continentdialog.php:4 msgid "" "Update will only set the continent for QSOs where the continent is empty." msgstr "" +"La actualización solo establecerá el continente para los QSOs donde el " +"continente esté vacío." #: application/views/logbookadvanced/checkresult.php:74 #: application/views/logbookadvanced/checkresult.php:146 msgid "Gridsquare Check Results" -msgstr "" +msgstr "Resultados de verificación de cuadrícula" #: application/views/logbookadvanced/checkresult.php:83 msgid "DXCC Check Results" -msgstr "" +msgstr "Resultados de verificación DXCC" #: application/views/logbookadvanced/checkresult.php:92 #: application/views/logbookadvanced/checkresult.php:234 #: application/views/logbookadvanced/checkresult.php:310 msgid "Update selected" -msgstr "" +msgstr "Actualizar seleccionado" #: application/views/logbookadvanced/checkresult.php:153 msgid "These QSOs MAY have incorrect gridsquares." -msgstr "" +msgstr "Estos QSOs PUEDEN tener cuadrículas incorrectas." #: application/views/logbookadvanced/checkresult.php:154 msgid "" "Results depends on the correct DXCC. The gridsquare list comes from the TQSL " "gridsquare database." msgstr "" +"Los resultados dependen del DXCC correcto. La lista de cuadrículas proviene " +"de la base de datos de cuadrículas TQSL." #: application/views/logbookadvanced/checkresult.php:167 msgid "DXCC Gridsquare" -msgstr "" +msgstr "Cuadrícula DXCC" #: application/views/logbookadvanced/checkresult.php:191 #: application/views/logbookadvanced/index.php:77 msgid "Show more" -msgstr "" +msgstr "Mostrar más" #: application/views/logbookadvanced/checkresult.php:197 msgid "View on map" -msgstr "" +msgstr "Ver en el mapa" #: application/views/logbookadvanced/checkresult.php:222 msgid "CQ Zone Check Results" -msgstr "" +msgstr "Resultados de la comprobación de la zona CQ" #: application/views/logbookadvanced/checkresult.php:224 msgid "" "The following QSOs were found to have a different CQ zone compared to what " "this DXCC normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"Los siguientes QSOs se encontraron con una zona CQ diferente en comparación " +"con la que normalmente tiene este DXCC (se muestran un máximo de 5000 QSOs):" #: application/views/logbookadvanced/checkresult.php:229 msgid "Force update even if DXCC covers multiple CQ zones" -msgstr "" +msgstr "Forzar la actualización incluso si DXCC cubre múltiples zonas de CQ" #: application/views/logbookadvanced/checkresult.php:230 msgid "" @@ -12949,6 +13248,12 @@ msgid "" "are updated. This checkbox overrides this but might result in wrong data. " "Use with caution!" msgstr "" +"La función de actualización solo puede establecer la zona principal de CQ " +"que está asignada al DXCC. Si el DXCC cubre múltiples zonas de CQ, existe la " +"posibilidad de que esto no sea correcto. Así que, por defecto, solo se " +"actualizan QSOs con DXCCs que cubren una única zona de CQ. Esta casilla de " +"verificación anula esto, pero podría resultar en datos incorrectos. ¡Úsalo " +"con precaución!" #: application/views/logbookadvanced/checkresult.php:247 msgid "DXCC CQ Zone" @@ -12966,21 +13271,21 @@ msgstr "Zona CQ DXCC" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Estación" @@ -12991,17 +13296,21 @@ msgstr "No se encontraron zonas CQ incorrectas." #: application/views/logbookadvanced/checkresult.php:298 msgid "ITU Zone Check Results" -msgstr "" +msgstr "Resultados de verificación de la zona ITU" #: application/views/logbookadvanced/checkresult.php:300 msgid "" "The following QSOs were found to have a different ITU zone compared to what " "this DXCC normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"Se encontró que los siguientes QSOs tienen una zona ITU diferente en " +"comparación con lo que normalmente tiene este DXCC (se muestran un máximo de " +"5000 QSOs):" #: application/views/logbookadvanced/checkresult.php:305 msgid "Force update even if DXCC covers multiple ITU zones" msgstr "" +"Forzar la actualización incluso si DXCC cubre múltiples zonas de la UIT" #: application/views/logbookadvanced/checkresult.php:306 msgid "" @@ -13011,6 +13320,12 @@ msgid "" "are updated. This checkbox overrides this but might result in wrong data. " "Use with caution!" msgstr "" +"La función de actualización solo puede establecer la zona principal de CQ " +"que está asignada al DXCC. Si el DXCC cubre múltiples zonas de CQ, existe la " +"posibilidad de que esto no sea correcto. Así que, por defecto, solo se " +"actualizan QSOs con DXCCs que cubren una única zona de CQ. Esta casilla de " +"verificación anula esto, pero podría resultar en datos incorrectos. ¡Úsalo " +"con precaución!" #: application/views/logbookadvanced/checkresult.php:323 msgid "DXCC ITU Zone" @@ -13018,144 +13333,153 @@ msgstr "Zona ITU de DXCC" #: application/views/logbookadvanced/checkresult.php:374 msgid "IOTA Check Results" -msgstr "" +msgstr "Resultados del chequeo IOTA" #: application/views/logbookadvanced/checkresult.php:381 msgid "These QSOs MAY have an incorrect IOTA reference." -msgstr "" +msgstr "Estos QSOs PUEDEN tener una referencia IOTA incorrecta." #: application/views/logbookadvanced/checkresult.php:382 msgid "" "Results depends on the correct DXCC, and it will only be checked against " "current DXCC. False positive results may occur." msgstr "" +"Los resultados dependen del DXCC correcto y solo se verificarán contra el " +"DXCC actual. Pueden ocurrir resultados falsos positivos." #: application/views/logbookadvanced/checkresult.php:393 msgid "QSO DXCC" -msgstr "" +msgstr "QSO DXCC" #: application/views/logbookadvanced/checkresult.php:395 msgid "IOTA DXCC" -msgstr "" +msgstr "IOTA DXCC" #: application/views/logbookadvanced/dbtoolsdialog.php:4 msgid "Data Repair Tools" -msgstr "" +msgstr "Herramientas de reparación de datos" #: application/views/logbookadvanced/dbtoolsdialog.php:6 msgid "Wiki Help" -msgstr "" +msgstr "Ayuda Wiki" #: application/views/logbookadvanced/dbtoolsdialog.php:8 msgid "" "Warning. This tool can be dangerous to your data, and should only be used if " "you know what you are doing." msgstr "" +"Advertencia. Esta herramienta puede ser peligrosa para tus datos, y solo " +"debe usarse si sabes lo que estás haciendo." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Todas las ubicaciones de estaciones" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:13 -msgid "Use Wavelog to determine CQ Zone for all QSOs." -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 -msgid "Check" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:23 -msgid "Check all QSOs in the logbook for incorrect ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:24 -msgid "Use Wavelog to determine ITU Zone for all QSOs." -msgstr "" +msgstr "Revisa todos los QSOs en el libro de registro por Zonas CQ incorrectas" #: application/views/logbookadvanced/dbtoolsdialog.php:34 -msgid "Check Gridsquares" -msgstr "" +msgid "Use Wavelog to determine CQ Zone for all QSOs." +msgstr "Usa Wavelog para determinar la Zona CQ para todos los QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:35 -msgid "Check gridsquares that does not match the DXCC" +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 +msgid "Check" +msgstr "Verificar" + +#: application/views/logbookadvanced/dbtoolsdialog.php:44 +msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "" +"Revisa todos los QSOs en el libro de registro para zonas ITU incorrectas" #: application/views/logbookadvanced/dbtoolsdialog.php:45 +msgid "Use Wavelog to determine ITU Zone for all QSOs." +msgstr "Usa Wavelog para determinar la Zona ITU para todos los QSOs." + +#: application/views/logbookadvanced/dbtoolsdialog.php:55 +msgid "Check Gridsquares" +msgstr "Verifica cuadrículas" + +#: application/views/logbookadvanced/dbtoolsdialog.php:56 +msgid "Check gridsquares that does not match the DXCC" +msgstr "Comprueba cuadrados de rejilla que no coinciden con el DXCC" + +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:46 -msgid "Update missing or incorrect continent information" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:57 -msgid "Update missing state/province information" -msgstr "" +msgstr "Arreglar Continente" #: application/views/logbookadvanced/dbtoolsdialog.php:67 -#: application/views/logbookadvanced/index.php:68 -msgid "Update Distances" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:68 -msgid "Calculate and update distance information for QSOs" -msgstr "" +msgid "Update missing or incorrect continent information" +msgstr "Actualiza la información de continente faltante o incorrecta" #: application/views/logbookadvanced/dbtoolsdialog.php:78 +msgid "Update missing state/province information" +msgstr "Actualiza la información de estado/provincia faltante" + +#: application/views/logbookadvanced/dbtoolsdialog.php:88 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "Actualizar distancias" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Calculate and update distance information for QSOs" +msgstr "Calcular y actualizar la información de distancia para QSOs" + +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" -msgstr "" +msgstr "Revisa todos los QSOs en el libro de registro por DXCC incorrecto" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." -msgstr "" +msgstr "Usa Wavelog para determinar DXCC para todos los QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" -msgstr "" +msgstr "Buscar QSOs con cuadrícula faltante en el callbook" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" -msgstr "" +msgstr "Utiliza la búsqueda en el callbook para establecer el cuadrante" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" -msgstr "" +msgstr "¡Esto está limitado a 150 indicativos por cada ejecución!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" -msgstr "" +msgstr "Verifica IOTA contra DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" -msgstr "" +msgstr "Usa Wavelog para verificar IOTA contra DXCC" #: application/views/logbookadvanced/dupesearchdialog.php:4 msgid "Search for duplicates using:" -msgstr "" +msgstr "Buscar duplicados usando:" #: application/views/logbookadvanced/dupesearchdialog.php:16 msgid "Match QSOs within 1800s (30min) of each other" -msgstr "" +msgstr "Hacer coincidir QSOs dentro de los 1800s (30min) entre sí" #: application/views/logbookadvanced/dupesearchdialog.php:25 msgid "Match QSOs with the same mode (SSB, CW, FM, etc.)" -msgstr "" +msgstr "Emparejar QSOs con el mismo modo (SSB, CW, FM, etc.)" #: application/views/logbookadvanced/dupesearchdialog.php:34 msgid "Match QSOs on the same band" -msgstr "" +msgstr "Coincidir QSOs en la misma banda" #: application/views/logbookadvanced/dupesearchdialog.php:43 msgid "Match QSOs using the same satellite" -msgstr "" +msgstr "Empareja QSOs usando el mismo satélite" #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" @@ -13175,13 +13499,13 @@ msgstr "Potencia de la estación" #: application/views/logbookadvanced/edit.php:25 msgid "DARC DOK" -msgstr "" +msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Región" @@ -13250,9 +13574,9 @@ msgid "QSL Sent Method" msgstr "Método de envío de QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL vía" @@ -13276,84 +13600,84 @@ msgstr "Banda RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Inválido" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Verificado" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Directo" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Buró" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Electrónico" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13518,79 +13842,80 @@ msgstr "Ayuda avanzada del libro de registro" #: application/views/logbookadvanced/index.php:24 msgid "Continent fix" -msgstr "" +msgstr "Arreglo de continente" #: application/views/logbookadvanced/index.php:25 msgid "There was a problem fixing ITU Zones." -msgstr "" +msgstr "Hubo un problema al solucionar las Zonas ITU." #: application/views/logbookadvanced/index.php:26 msgid "There was a problem fixing CQ Zones." -msgstr "" +msgstr "Hubo un problema al arreglar las Zonas CQ." #: application/views/logbookadvanced/index.php:27 msgid "ITU Zones updated successfully!" -msgstr "" +msgstr "¡Zonas ITU actualizadas con éxito!" #: application/views/logbookadvanced/index.php:28 msgid "CQ Zones updated successfully!" -msgstr "" +msgstr "¡Zonas CQ actualizadas con éxito!" #: application/views/logbookadvanced/index.php:29 msgid "You need to select at least 1 row to fix ITU Zones!" -msgstr "" +msgstr "¡Necesitas seleccionar al menos 1 fila para corregir las Zonas UIT!" #: application/views/logbookadvanced/index.php:30 msgid "You need to select at least 1 row to fix CQ Zones!" -msgstr "" +msgstr "¡Necesitas seleccionar al menos 1 fila para corregir las Zonas CQ!" #: application/views/logbookadvanced/index.php:31 msgid "You need to select at least 1 row to fix State!" -msgstr "" +msgstr "¡Necesitas seleccionar al menos 1 fila para arreglar el estado!" #: application/views/logbookadvanced/index.php:32 msgid "State updated successfully!" -msgstr "" +msgstr "¡Estado actualizado con éxito!" #: application/views/logbookadvanced/index.php:33 msgid "There was a problem fixing State." -msgstr "" +msgstr "Hubo un problema al solucionar el estado." #: application/views/logbookadvanced/index.php:34 msgid "Fixing State" -msgstr "" +msgstr "Arreglando el estado" #: application/views/logbookadvanced/index.php:35 #, php-format msgid "Fixing State (%s QSOs)" -msgstr "" +msgstr "Arreglando Estado (%s QSOs)" #: application/views/logbookadvanced/index.php:36 #, php-format msgid "Fixing State: %s remaining" -msgstr "" +msgstr "Arreglando estado: %s restante" #: application/views/logbookadvanced/index.php:37 msgid "Fixed" -msgstr "" +msgstr "Fijo" #: application/views/logbookadvanced/index.php:38 #, php-format msgid "Fixed: %s" -msgstr "" +msgstr "Fijo: %s" #: application/views/logbookadvanced/index.php:39 msgid "Skipped" -msgstr "" +msgstr "Omitido" #: application/views/logbookadvanced/index.php:40 #, php-format msgid "Skipped: %s, see details for skipped rows below" msgstr "" +"Omitido: %s, consulta los detalles de las filas omitidas a continuación" #: application/views/logbookadvanced/index.php:41 msgid "State Fix Complete" -msgstr "" +msgstr "Completa reparación del estado" #: application/views/logbookadvanced/index.php:42 #, php-format @@ -13599,68 +13924,74 @@ msgid "" "countries, please create a ticket at %s with the GeoJSON file and desired " "letter coding for your country." msgstr "" +"No todas las entidades DXCC tienen apoyo estatal. Si necesitas apoyo para " +"países adicionales, por favor crea un ticket en %s con el archivo GeoJSON y " +"el código de letra deseado para tu país." #: application/views/logbookadvanced/index.php:45 msgid "Only 1 row can be selected for Quickfilter!" -msgstr "" +msgstr "¡Solo se puede seleccionar 1 fila para el filtro rápido!" #: application/views/logbookadvanced/index.php:46 msgid "You need to select a row to use the Quickfilters!" -msgstr "" +msgstr "¡Necesitas seleccionar una fila para usar los Quickfilters!" #: application/views/logbookadvanced/index.php:47 msgid "You need to select a least 1 row to display a QSL card!" -msgstr "" +msgstr "¡Necesitas seleccionar al menos 1 fila para mostrar una tarjeta QSL!" #: application/views/logbookadvanced/index.php:48 msgid "Continents updated successfully!" -msgstr "" +msgstr "¡Continentes actualizados con éxito!" #: application/views/logbookadvanced/index.php:49 msgid "There was a problem fixing Continents." -msgstr "" +msgstr "Hubo un problema al arreglar los continentes." #: application/views/logbookadvanced/index.php:51 msgid "SUCCESS" -msgstr "" +msgstr "ÉXITO" #: application/views/logbookadvanced/index.php:52 msgid "INFO" -msgstr "" +msgstr "INFO." #: application/views/logbookadvanced/index.php:58 msgid "Options for the Advanced Logbook" -msgstr "" +msgstr "Opciones para el Libro de Registro Avanzado" #: application/views/logbookadvanced/index.php:59 msgid "" "Something went wrong with label print. Go to labels and check if you have " "defined a label, and that it is set for print!" msgstr "" +"Algo salió mal con la impresión de etiquetas. Ve a las etiquetas y verifica " +"si has definido una etiqueta, y si está configurada para imprimir!" #: application/views/logbookadvanced/index.php:60 msgid "You need to select a least 1 row!" -msgstr "" +msgstr "¡Tienes que seleccionar al menos 1 fila!" #: application/views/logbookadvanced/index.php:61 msgid "Start printing at which label?" -msgstr "" +msgstr "¿Comenzar a imprimir en qué etiqueta?" #: application/views/logbookadvanced/index.php:62 msgid "You need to select at least 1 row to print a label!" -msgstr "" +msgstr "¡Necesitas seleccionar al menos 1 fila para imprimir una etiqueta!" #: application/views/logbookadvanced/index.php:63 msgid "An error occurred while saving options: " -msgstr "" +msgstr "Se produjo un error al guardar las opciones: " #: application/views/logbookadvanced/index.php:64 msgid "You need to select a least 1 row to delete!" -msgstr "" +msgstr "¡Necesitas seleccionar al menos 1 fila para eliminar!" #: application/views/logbookadvanced/index.php:65 msgid "You need to select a least 1 row to update from callbook!" msgstr "" +"¡Necesitas seleccionar al menos 1 fila para actualizar desde el directorio!" #: application/views/logbookadvanced/index.php:66 #: application/views/oqrs/showrequests.php:10 @@ -13669,112 +14000,132 @@ msgstr "Se produjo un error al realizar la solicitud" #: application/views/logbookadvanced/index.php:67 msgid "You need to select at least 1 location to do a search!" -msgstr "" +msgstr "¡Tienes que seleccionar al menos 1 ubicación para hacer una búsqueda!" #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." -msgstr "" +msgstr "Registro de QSOs actualizado." #: application/views/logbookadvanced/index.php:70 msgid "There was a problem updating distances." -msgstr "" +msgstr "Hubo un problema al actualizar las distancias." #: application/views/logbookadvanced/index.php:71 msgid "Distances updated successfully!" -msgstr "" +msgstr "¡Distancias actualizadas con éxito!" #: application/views/logbookadvanced/index.php:73 msgid "" "Are you sure you want to fix all QSOs with missing DXCC information? This " "action cannot be undone." msgstr "" +"¿Estás seguro de que quieres corregir todos los QSOs con información DXCC " +"faltante? Esta acción no se puede deshacer." #: application/views/logbookadvanced/index.php:74 msgid "Duplicate Search" -msgstr "" +msgstr "Búsqueda duplicada" #: application/views/logbookadvanced/index.php:78 msgid "Show less" -msgstr "" +msgstr "Mostrar menos" #: application/views/logbookadvanced/index.php:80 msgid "Gridsquares for" -msgstr "" +msgstr "Cuadrículas para" #: application/views/logbookadvanced/index.php:81 msgid "Non DXCC matching gridsquare" -msgstr "" +msgstr "Rejilla cuadrada no coincidente DXCC" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Desde" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "a" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Ninguno/Vacío" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "" +"Distancia en kilómetros. La búsqueda buscará distancias mayores o iguales a " +"este valor." -#: application/views/logbookadvanced/index.php:513 -msgid "Sort column" +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Duración" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." msgstr "" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:523 +msgid "Sort column" +msgstr "Ordenar columna" + +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "Hora de QSO" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" -msgstr "" +msgstr "QSO Modificado" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" -msgstr "" +msgstr "Ordenar dirección" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" -msgstr "" +msgstr "Descendiendo" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" -msgstr "" - -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 -msgid "Apply filters" -msgstr "" +msgstr "Ascendiendo" #: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 +msgid "Apply filters" +msgstr "Aplicar filtros" + +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "Filtros QSL" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL enviadas" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13791,32 +14142,32 @@ msgstr "QSL enviadas" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "En Cola" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13845,279 +14196,279 @@ msgstr "En Cola" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Inválidas (ignorar)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL recibidas" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "Método de Envío de QSL" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "Método de Recepción de QSL" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "Enviado por LoTW" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "Recibido por LoTW" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog enviado" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog recibido" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "Enviado por eQSL" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "Recibido por eQSL" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL enviado" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL recibido" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "Imágenes QSL" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" -msgstr "" +msgstr "QRZ enviado" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" -msgstr "" +msgstr "QRZ recibido" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Filtros rápidos" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Búsqueda rápida con seleccionados: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Fecha de búsqueda" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Buscar DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Buscar Estado" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Buscar Gridsquare" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Buscar Zona CQ" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Buscar zona ITU" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Buscar Modo" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Buscar Banda" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Buscar IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Buscar SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Buscar POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Buscar WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Buscar Operador" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "¡Advertencia! ¿Está seguro que desea eliminar las QSO marcadas?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO(s) van a ser borrados" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Con los seleccionados: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Actualizar de Callbook" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "En Cola por Buró" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "En Cola por Directa" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "En Cola por Electrónico" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Enviado (Buró)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Enviado (Directa)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Enviado (Electrónico)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "No Enviado" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL no Requerida" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "No recibido" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Recibido (Buró)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Recibido (Directa)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Recibido (Electrónico)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Crear ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Imprimir Etiqueta" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "Presentación QSL" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "No. Resultados" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplicados" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Mapa del mundo" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" -msgstr "" +msgstr "Herramientas de bases de datos" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" -msgstr "" +msgstr "Última modificación" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "Mensaje QSL (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "Mensaje QSL (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Mis Refs" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Azimut de la ant" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Azimut de la antena" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Elevación de la ant" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Elevación de la antena" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Potencia de la estación" @@ -14139,30 +14490,30 @@ msgstr "Siguiente" #: application/views/logbookadvanced/showMissingDxccQsos.php:14 #, php-format msgid "Found %s QSO(s) missing DXCC information." -msgstr "" +msgstr "Encontrado(s) %s QSO(s) faltando información DXCC." #: application/views/logbookadvanced/showMissingDxccQsos.php:47 #: application/views/logbookadvanced/showStateQsos.php:49 msgid "No Issues Found" -msgstr "" +msgstr "No se encontraron problemas" #: application/views/logbookadvanced/showStateQsos.php:16 #, php-format msgid "Found %s QSO(s) missing state information for DXCC %s." -msgstr "" +msgstr "Encontrado(s) %s QSO(s) faltando información de estado para DXCC %s." #: application/views/logbookadvanced/showUpdateResult.php:22 msgid "Results for state update:" -msgstr "" +msgstr "Resultados de la actualización del estado:" #: application/views/logbookadvanced/showUpdateResult.php:24 #: application/views/logbookadvanced/showUpdateResult.php:26 msgid "The number of QSOs updated for state/province in" -msgstr "" +msgstr "La cantidad de QSOs actualizados para el estado/provincia en" #: application/views/logbookadvanced/showUpdateResult.php:38 msgid "These QSOs could not be updated:" -msgstr "" +msgstr "Estos QSOs no se pudieron actualizar:" #: application/views/logbookadvanced/showUpdateResult.php:45 #: application/views/search/lotw_unconfirmed.php:26 @@ -14171,136 +14522,145 @@ msgstr "Ubicación de la estación" #: application/views/logbookadvanced/showUpdateResult.php:46 msgid "Reason" -msgstr "" +msgstr "Razón" #: application/views/logbookadvanced/showUpdateResult.php:69 msgid "Results for continent update:" -msgstr "" +msgstr "Resultados para la actualización del continente:" #: application/views/logbookadvanced/showUpdateResult.php:70 msgid "The number of QSOs updated for continent is" -msgstr "" +msgstr "El número de QSOs actualizado para el continente es" #: application/views/logbookadvanced/showUpdateResult.php:74 msgid "Results for distance update:" -msgstr "" +msgstr "Resultados de la actualización de distancia:" #: application/views/logbookadvanced/showUpdateResult.php:75 msgid "The number of QSOs updated for distance is" -msgstr "" +msgstr "El número de QSOs actualizado para la distancia es" #: application/views/logbookadvanced/showUpdateResult.php:79 msgid "Results for gridsquare update:" -msgstr "" +msgstr "Resultados para la actualización del cuadrante:" #: application/views/logbookadvanced/showUpdateResult.php:80 msgid "The number of QSOs updated for gridsquare is" -msgstr "" +msgstr "El número de QSOs actualizados para el cuadrícula es" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Incluir Vía" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Incluir mensaje QSL" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Inclulir mensaje de gracias" #: application/views/logbookadvanced/statecheckresult.php:3 #: application/views/logbookadvanced/statecheckresult.php:42 msgid "State Check Results" -msgstr "" +msgstr "Resultados de la comprobación del estado" #: application/views/logbookadvanced/statecheckresult.php:4 msgid "" "QSOs with missing state and gridsquares with 6 or more characters found for " "the following DXCCs:" msgstr "" +"QSOs con estados faltantes y cuadrículas con 6 o más caracteres encontrados " +"para los siguientes DXCCs:" #: application/views/logbookadvanced/statecheckresult.php:30 msgid "Run fix" -msgstr "" +msgstr "Ejecutar arreglo" #: application/views/logbookadvanced/statecheckresult.php:43 msgid "No QSOs were found where state information can be fixed." msgstr "" +"No se encontraron QSOs donde se pueda corregir la información del estado." #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " "country." msgstr "" +"Actualiza QSOs con información de estados/provincias basada en el cuadrícula " +"y el país DXCC." #: application/views/logbookadvanced/statedialog.php:3 msgid "" "This feature uses GeoJSON boundary data to determine the state/province from " "the gridsquare locator." msgstr "" +"Esta función utiliza datos de límites en GeoJSON para determinar el estado/" +"provincia a partir del localizador de cuadrícula." #: application/views/logbookadvanced/statedialog.php:4 msgid "Update will only set the state for QSOs where:" -msgstr "" +msgstr "La actualización solo establecerá el estado para los QSOs donde:" #: application/views/logbookadvanced/statedialog.php:6 msgid "The state field is empty" -msgstr "" +msgstr "El campo de estado está vacío" #: application/views/logbookadvanced/statedialog.php:7 msgid "A gridsquare is present (at least 6 characters)" -msgstr "" +msgstr "Un cuadrado de cuadrícula está presente (al menos 6 caracteres)" #: application/views/logbookadvanced/statedialog.php:8 msgid "The DXCC country supports state lookup" -msgstr "" +msgstr "El país DXCC admite la búsqueda de estado" #: application/views/logbookadvanced/statedialog.php:10 msgid "Currently supported countries" -msgstr "" +msgstr "Países actualmente soportados" #: application/views/logbookadvanced/useroptions.php:15 msgid "Basic QSO Information" -msgstr "" +msgstr "Información básica de QSO" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" -msgstr "" +msgstr "Detalles de la estación" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" -msgstr "" +msgstr "Servicios de confirmación" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" -msgstr "" +msgstr "Información geográfica" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" -msgstr "" +msgstr "Programas de Premios" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" -msgstr "" +msgstr "Información adicional" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" -msgstr "" +msgstr "Detalles técnicos" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" -msgstr "" +msgstr "Solo para depuración" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" msgstr "" +"Esto está destinado solo para fines de depuración y no está diseñado para " +"mostrarse de forma predeterminada" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" -msgstr "" +msgstr "Capas del mapa" #: application/views/lookup/index.php:11 #: application/views/qso/award_tabs.php:53 @@ -14334,7 +14694,7 @@ msgstr "No usuario de LoTW" #: application/views/lookup/result.php:16 msgid "This gridsquare exists in the following DXCC(s):" -msgstr "" +msgstr "Este cuadrícula existe en los siguientes DXCC(s):" #: application/views/lotw/analysis.php:8 application/views/qrz/analysis.php:8 msgid "No data imported. please check selected date. Must be in the past!" @@ -14427,37 +14787,37 @@ msgid "Date Expires" msgstr "Fecha de caducidad" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Última subida" #: application/views/lotw_views/index.php:95 msgid "Last change:" -msgstr "" +msgstr "Último cambio:" #: application/views/lotw_views/index.php:95 msgid "Serial number:" -msgstr "" +msgstr "Número de serie:" #: application/views/lotw_views/index.php:97 msgid "Certificate superseded" -msgstr "" +msgstr "Certificado reemplazado" #: application/views/lotw_views/index.php:100 msgid "Certificate expired" -msgstr "" +msgstr "Certificado caducado" #: application/views/lotw_views/index.php:102 msgid "Certificate expiring" -msgstr "" +msgstr "Certificado expirando" #: application/views/lotw_views/index.php:104 msgid "Certificate valid" -msgstr "" +msgstr "Certificado válido" #: application/views/lotw_views/index.php:109 msgid "QSO end date nearing" -msgstr "" +msgstr "La fecha de finalización del QSO se acerca" #: application/views/lotw_views/index.php:121 #, php-format @@ -14488,14 +14848,16 @@ msgid "" "For further information please visit the %sLoTW FAQ page%s in the Wavelog " "Wiki" msgstr "" +"Para obtener más información, por favor visita la página de Preguntas " +"Frecuentes %sLoTW%s en el Wiki de Wavelog" #: application/views/map/qso_map.php:15 msgid "Select Country:" -msgstr "" +msgstr "Seleccionar país:" #: application/views/map/qso_map.php:17 msgid "Choose a country..." -msgstr "" +msgstr "Elige un país..." #: application/views/mode/create.php:24 application/views/mode/edit.php:33 msgctxt "Name of mode in ADIF-specification" @@ -14626,7 +14988,7 @@ msgstr "Buscar notas (mín. 3 caracteres)" #: application/views/notes/main.php:54 msgid "Add stroked zero (Ø)" -msgstr "" +msgstr "Agregar cero tachado (Ø)" #: application/views/notes/main.php:57 msgid "Reset search" @@ -15097,7 +15459,7 @@ msgstr "¿Alguna información adicional que necesitamos saber?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "Email" @@ -15114,11 +15476,11 @@ msgstr "Enviar solicitud de no en el registro" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Vía" @@ -15129,7 +15491,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Añadir a la cola de impresión" @@ -15551,7 +15913,7 @@ msgstr "Marcar las QSLs solicitadas como enviadas" msgid "No QSLs to print were found!" msgstr "¡No se encontraron QSLs para imprimir!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15629,7 +15991,7 @@ msgstr "¡Es necesario completar la entrada de WWFF para mostrar un resumen!" #: application/views/qso/award_tabs.php:19 msgid "Propagation mode needs to be SAT to show a summary!" -msgstr "" +msgstr "El modo de propagación debe ser 'SAT' para mostrar un resumen!" #: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" @@ -15697,7 +16059,7 @@ msgstr "Especifique el valor de potencia en Watios (W). Incluya solo números." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Potencia de transmisión (W)" @@ -15759,9 +16121,9 @@ msgid "Station County" msgstr "Condado de la Estación" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "Información SIG" @@ -15809,7 +16171,7 @@ msgstr "Nota: No editable. Solo se muestra aquí." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Modificado" @@ -15875,29 +16237,31 @@ msgstr "Valor invalido para elevación de antenna:" #: application/views/qso/index.php:39 msgid "Please wait before saving another QSO" -msgstr "" +msgstr "Por favor, espera antes de guardar otro QSO" #: application/views/qso/index.php:42 msgid "Satellite not found" -msgstr "" +msgstr "Satélite no encontrado" #: application/views/qso/index.php:43 msgid "Supported by LoTW" -msgstr "" +msgstr "Soportado por LoTW" #: application/views/qso/index.php:44 msgid "Not supported by LoTW" -msgstr "" +msgstr "No suportado con LoTW" #: application/views/qso/index.php:46 msgid "" "You have already filled in a callsign. First finish this QSO before filling " "the last spot from DXcluster." msgstr "" +"Ya has completado un indicativo. Primero termina este QSO antes de llenar el " +"último lugar del DXcluster." #: application/views/qso/index.php:47 msgid "No spots found in this frequency." -msgstr "" +msgstr "No se encontraron spots en esta frecuencia." #: application/views/qso/index.php:93 msgid "LIVE" @@ -15932,16 +16296,16 @@ msgstr "Buscar DXCluster para el último Spot" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "Referencia IOTA" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "Referencia SOTA" @@ -15981,17 +16345,17 @@ msgstr "Por ejemplo: Q03" msgid "E-mail address of QSO-partner" msgstr "Dirección de correo electrónico del compañero de QSO" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Nombre del Satélite" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Modo del Satélite" #: application/views/qso/index.php:708 msgid "QSO Note" -msgstr "" +msgstr "Nota de QSO" #: application/views/qso/index.php:751 msgid "QSL MSG" @@ -16003,13 +16367,15 @@ msgstr "Restablecer a predeterminado" #: application/views/qso/index.php:787 msgid "Callsign Notes" -msgstr "" +msgstr "Notas de indicativo" #: application/views/qso/index.php:788 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" +"Almacena información privada sobre tu compañero de QSO. Estas notas nunca se " +"comparten ni se exportan a servicios externos." #: application/views/qso/index.php:837 msgid "Winkey" @@ -16049,13 +16415,15 @@ msgstr "Sugerencias" #: application/views/qso/index.php:898 msgid "QSO Partner's Profile" -msgstr "" +msgstr "Perfil del socio de QSO" #: application/views/qso/index.php:899 msgid "" "Profile picture and data fetched from third-party services. This information " "is not stored on your Wavelog instance." msgstr "" +"La foto de perfil y los datos se obtienen de servicios de terceros. Esta " +"información no se almacena en tu instancia de Wavelog." #: application/views/qso/log_qso.php:9 msgid "Redirecting to QSO logging page..." @@ -16088,7 +16456,7 @@ msgstr "" "A continuación se muestra una lista de radios activos que están conectadas a " "Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16096,16 +16464,34 @@ msgstr "" "Si aún no has conectado ninguna radios, consulta la página de la API para " "generar claves API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Como operador de una estación de club, puedes establecer una radio " +"predeterminada que se aplique solo a ti. Esto te permite tener una radio " +"predeterminada que se selecciona automáticamente cuando inicias sesión, " +"mientras que aún puedes usar otras radios si lo deseas." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Como usuario normal, puedes configurar una radio predeterminada para ti. " +"Esto te permite tener una radio predeterminada que se selecciona " +"automáticamente cuando inicias sesión, aunque todavía puedes usar otras " +"radios si lo deseas." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Puedes averiguar cómo usar el %s en la wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Puedes averiguar cómo usar las funciones de %sradio%s en el wiki." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "funciones de radio" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Por favor espera..." @@ -16449,13 +16835,6 @@ msgstr "Tiempo AOS" msgid "LOS Time" msgstr "Tiempo LOS" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Duración" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Camino" @@ -16573,6 +16952,11 @@ msgstr "Guardar consulta" msgid "Stored queries" msgstr "Consultas almacenadas" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Puedes averiguar cómo usar el %s en la wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "funciones de filtro de búsqueda" @@ -16632,7 +17016,7 @@ msgstr "" #: application/views/search/result.php:65 msgid "Source callbook" -msgstr "" +msgstr "Fuente del directorio de radioaficionados" #: application/views/search/search_result_ajax.php:463 #: application/views/view_log/partial/log.php:142 @@ -16649,35 +17033,35 @@ msgstr "Marcar QSL como Enviada (Directa)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Marcar QSL como Recibida (Buró)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Marcar QSL como Recibida (Directa)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Marcar QSL como Solicitada (Buró)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Marcar QSL como Solicitada (Directa)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Marcar QSL como no Requerida" @@ -17230,7 +17614,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "¿Problemas? Consulta la %swiki%s." @@ -17446,7 +17830,7 @@ msgid "Link Location" msgstr "Enlazar Localización" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Nombre de Perfil" @@ -17461,20 +17845,25 @@ msgid "" "analytics. Great for when you're operating in multiple locations but they " "are part of the same DXCC or VUCC Circle." msgstr "" +"Los Libros de Guardia de Estación le permiten agrupar Localizaciones de " +"Estación, observando todas las localizaciones en una sola sesión, desde las " +"áreas del libro de guardia hasta las analíticas. Muy útil cuando está " +"operando en múltiples localizaciones, pero que son parte del mismo Círculo " +"DXCC o VUCC." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Editar ubicaciones vinculadas" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Sitio de visitantes" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Ubicaciones de estaciones" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17482,13 +17871,13 @@ msgstr "" "Las localizaciones de Estación le permiten definir localizaciones de " "operación, como su QTH, el QTH de un amigo o una estación portable." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "De forma similar a los libros de guardia, un perfil de estación mantiene " "asociado un conjunto de QSOs." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17496,7 +17885,7 @@ msgstr "" "Solo una estación puede estar activa en cualquier momento. En la tabla de " "abajo esta se muestra con la etiqueta de -Estación Activa-." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17504,23 +17893,23 @@ msgstr "" "La columna 'Vinculado' muestra si la ubicación de la estación está vinculada " "con el Libro de Registro Activo seleccionado arriba." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Crear una Localización de Estación" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Mostrar solo ubicaciones del libro de registro activo" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Mostrar todas las ubicaciones" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" -msgstr "" +msgstr "Mostrar una lista de ubicaciones" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17528,7 +17917,7 @@ msgstr "" "Atención: Debe configurar una Localización de Estación como activa. vaya a " "Indicativo->Localización de Estación para seleccionar una." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17536,23 +17925,23 @@ msgstr "" "Debido a cambios recientes en Wavelog, debe reasignar sus QSO a sus perfiles " "de estación." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Mantenimiento" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Por favor, reasignelas en " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Vinculado" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Favorito" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "marcar/desmarcar como favorito" @@ -17593,7 +17982,7 @@ msgstr "Años" #: application/views/statistics/index.php:15 #: application/views/statistics/index.php:99 msgid "Months" -msgstr "" +msgstr "Meses" #: application/views/statistics/index.php:19 msgid "Number of QSOs worked each year" @@ -17601,55 +17990,55 @@ msgstr "Número de QSOs logradas cada año" #: application/views/statistics/index.php:20 msgid "Number of QSOs worked each month" -msgstr "" +msgstr "Número de QSOs trabajados cada mes" #: application/views/statistics/index.php:31 msgid "January" -msgstr "" +msgstr "Enero" #: application/views/statistics/index.php:32 msgid "February" -msgstr "" +msgstr "Febrero" #: application/views/statistics/index.php:33 msgid "March" -msgstr "" +msgstr "Marzo" #: application/views/statistics/index.php:34 msgid "April" -msgstr "" +msgstr "Abril" #: application/views/statistics/index.php:35 msgid "May" -msgstr "" +msgstr "Mayo" #: application/views/statistics/index.php:36 msgid "June" -msgstr "" +msgstr "Junio" #: application/views/statistics/index.php:37 msgid "July" -msgstr "" +msgstr "Julio" #: application/views/statistics/index.php:38 msgid "August" -msgstr "" +msgstr "Agosto" #: application/views/statistics/index.php:39 msgid "September" -msgstr "" +msgstr "Septiembre" #: application/views/statistics/index.php:40 msgid "October" -msgstr "" +msgstr "Octubre" #: application/views/statistics/index.php:41 msgid "November" -msgstr "" +msgstr "Noviembre" #: application/views/statistics/index.php:42 msgid "December" -msgstr "" +msgstr "Diciembre" #: application/views/statistics/index.php:50 msgid "Explore the logbook." @@ -18084,7 +18473,7 @@ msgstr "" #: application/views/user/edit.php:376 msgid "Prioritize database search over external lookup" -msgstr "" +msgstr "Prioriza la búsqueda en la base de datos sobre la consulta externa" #: application/views/user/edit.php:382 msgid "" @@ -18092,6 +18481,9 @@ msgid "" "QSOs before querying external services. Set to \"No\" to always use external " "lookup services instead." msgstr "" +"Cuando se establece en \"Sí\", la búsqueda de indicativos primero usará " +"datos de tus QSOs anteriores antes de consultar servicios externos. " +"Establece en \"No\" para usar siempre servicios de búsqueda externos." #: application/views/user/edit.php:386 msgid "" @@ -18146,15 +18538,17 @@ msgstr "Número de contactos previos mostrados en la página QSO." #: application/views/user/edit.php:447 msgid "DX Waterfall" -msgstr "" +msgstr "Cascada DX" #: application/views/user/edit.php:451 msgid "squelched" -msgstr "" +msgstr "suprimido" #: application/views/user/edit.php:454 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." msgstr "" +"Mostrar un 'Waterfall' interactivo del DX Cluster en la página de registro " +"de QSO." #: application/views/user/edit.php:465 msgid "Menu Options" @@ -18229,7 +18623,7 @@ msgstr "No mostrado" #: application/views/user/edit.php:549 msgid "QSO (worked, not confirmed)" -msgstr "" +msgstr "QSO (trabajado, no confirmado)" #: application/views/user/edit.php:568 msgid "QSO (confirmed)" @@ -18237,7 +18631,7 @@ msgstr "QSO (confirmadas)" #: application/views/user/edit.php:569 msgid "(If 'No', displayed as 'QSO (worked, not confirmed)')" -msgstr "" +msgstr "(Si 'No', se muestra como 'QSO (trabajado, no confirmado)')" #: application/views/user/edit.php:588 msgid "Unworked (e.g. Zones)" @@ -18308,43 +18702,47 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Ver Campos en la Pestaña de QSO" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Los elementos habilitados se mostrarán en la pestaña QSO en lugar de la " "pestaña General." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Configuración de solicitud de QSL en línea (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Texto global" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Este texto es un texto opcional que se mostrará en la parte superior de la " "página de OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Búsqueda agrupada" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Apagado" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "En" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18352,12 +18750,12 @@ msgstr "" "Cuando está activo, se buscarán en simultáneo todas las localizaciones de " "estación con OQRS activo." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" "Mostrar localización de la estación en los resultados de búsqueda agrupados" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18365,11 +18763,11 @@ msgstr "" "Si la búsqueda agrupada esta ACTIVA, puede decidir si el nombre de la " "localización de la estación se mostrará en la tabla de resultados." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Coincidencia automática de OQRS" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18378,69 +18776,69 @@ msgstr "" "sistema intentará emparejar automáticamente las solicitudes entrantes con " "los registros existentes." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Coincidencia automática de OQRS para solicitudes directas" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Si esto está activado, se realizará la coincidencia automática de OQRS para " "solicitudes directas." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Valores por Defecto" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Configuración para Banda por Defecto y Confirmación" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Banda por Defecto" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Métodos de QSL por Defecto" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Servicios de Terceros" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Nombre de Usuario Logbook of The World (LoTW)" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Contraseña Logbook of The World (LoTW)" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Prueba de inicio de sesión" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Nombre de Usuario eQSL.cc" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Contraseña eQSL.cc" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Correo de Club Log" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Contraseña de Club Log" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18450,15 +18848,15 @@ msgstr "" "generar una contraseña de aplicación para usar Clublog en Wavelog. Visita " "%stu página de configuración de Clublog%s para hacerlo." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "Widget en el aire" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18466,16 +18864,16 @@ msgstr "" "Nota: Para usar este widget, necesitas tener al menos una radio CAT " "configurada y funcionando." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Cuando esté habilitado, el widget estará disponible en %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Mostrar hora de \"última vez visto\"" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18483,15 +18881,15 @@ msgstr "" "Esta configuración controla si la hora de 'Última vez visto' se muestra en " "el widget o no." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Mostrar solo la radio actualizada más recientemente" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "No, muestra todos los radios" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18503,15 +18901,15 @@ msgstr "" "más recientemente actualizada. En caso de que solo tengas una radio, esta " "configuración no tiene efecto." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "Widget de QSOs" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Mostrar la hora exacta del QSO" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18519,40 +18917,40 @@ msgstr "" "Esta configuración controla si se debe mostrar la hora exacta del QSO en el " "widget de QSO o no." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Otras Opciones" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Subida de estados AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Subir los estados de QSOs de SAT QSOs a" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Servidor de Mastodon" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL del Servidor de Mastodon" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principal de tu servidor Mastodon, por ejemplo, %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Características de Winkeyer Activadas" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18561,25 +18959,25 @@ msgstr "" "El soporte de Winkeyer en Wavelog es muy experimental. Lee primero la wiki " "en %s antes de habilitarlo." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Clave de alimentación privada" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Consulta tu perfil en %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Mostrar solo pases utilizables" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18588,7 +18986,7 @@ msgstr "" "cuadrícula establecido en tu cuenta de hams.at. Requiere que se establezca " "la clave de alimentación privada." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Guardar Cambios de la Cuenta" @@ -19018,7 +19416,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "último enviado" @@ -19046,119 +19444,128 @@ msgstr "Distancia total" msgid "Other Path" msgstr "Otro camino" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"Se ingresó un solo cuadrado de cuadrícula en el campo de cuadrículas VUCC, " +"que debería contener dos o cuatro cuadrículas en lugar de una sola " +"cuadrícula." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Azimut de la antena" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Elevación de la antena" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "La QSL se envió vía buró" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "La QSL se envió via directa" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "La QSL fue enviada electrónicamente" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "La QSL fue enviada vía manager" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "La QSL se envió" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "La QSL se recibió via buró" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "La QSL se recibió vía directa" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "La QSL fue recibida electrónicamente" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "La QSL fue recibida vía manager" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "La QSL fue recibida" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Esta estacion usa LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Esta QSO fue confirmada en" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Este QSO está confirmado en LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Este QSO está confirmado en eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Este QSO está confirmado en QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Este QSO está confirmado en Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Este QSO está confirmado en DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Más QSOs" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Compartir" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Detalles" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Imagen delantera de la QSL subida" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Subir QSL" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Imagen trasera de la QSL subida" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Marcar QSL como Recibida (Electrónico)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "imagen de eQSL" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO no encontrado" @@ -19291,7 +19698,7 @@ msgstr "Recibido" #: application/views/zonechecker/index.php:3 msgid "Gridsquare Zone identification" -msgstr "" +msgstr "Identificación de la zona del cuadrícula" #: application/views/zonechecker/index.php:15 msgid "Zone Type" @@ -19313,7 +19720,7 @@ msgstr "Ocurrió un error al procesar la petición." #: application/views/zonechecker/result.php:16 msgid "Callsigns Tested" -msgstr "" +msgstr "Indicativos probados" #: application/views/zonechecker/result.php:17 msgid "Execution Time" @@ -19321,35 +19728,48 @@ msgstr "Tiempo de Ejecución" #: application/views/zonechecker/result.php:18 msgid "Potential Wrong Zones" -msgstr "" +msgstr "Zonas potencialmente incorrectas" #: application/views/zonechecker/result.php:19 msgid "Cache Hits" -msgstr "" +msgstr "Aciertos de caché" #: application/views/zonechecker/result.php:20 msgid "Cache Misses" -msgstr "" +msgstr "Fallos de caché" #: application/views/zonechecker/result.php:21 msgid "Hit Rate" -msgstr "" +msgstr "Tasa de aciertos" #: application/views/zonechecker/result.php:55 msgid "ITUz" -msgstr "" +msgstr "ITUz" #: application/views/zonechecker/result.php:56 msgid "ITUz geojson" -msgstr "" +msgstr "ITUz geojson" #: application/views/zonechecker/result.php:58 msgid "CQz" -msgstr "" +msgstr "CQz" #: application/views/zonechecker/result.php:59 msgid "CQz geojson" -msgstr "" +msgstr "CQz geojson" + +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "La caché está utilizando actualmente el adaptador de respaldo porque el " +#~ "primario no está disponible." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Error obteniendo una llave de sesión para consultar HamQTH" + +#~ msgid "radio functions" +#~ msgstr "funciones de radio" #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Zonas CQ registradas incorrectamente" diff --git a/application/locale/et/LC_MESSAGES/messages.po b/application/locale/et/LC_MESSAGES/messages.po index 8be1c35ba..baab0f53c 100644 --- a/application/locale/et/LC_MESSAGES/messages.po +++ b/application/locale/et/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2025-02-11 12:33+0000\n" "Last-Translator: tviitkar \n" "Language-Team: Estonian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17356,169 +17602,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17526,85 +17776,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17988,7 +18238,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18016,119 +18266,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.mo b/application/locale/fi_FI/LC_MESSAGES/messages.mo index 891f372cb..d44dda372 100644 Binary files a/application/locale/fi_FI/LC_MESSAGES/messages.mo and b/application/locale/fi_FI/LC_MESSAGES/messages.mo differ diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 0f0e04b42..583e25ce2 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-09 22:54+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-09 09:12+0000\n" "Last-Translator: \"Juuso W.\" \n" "Language-Team: Finnish \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -71,8 +71,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -83,11 +83,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -118,11 +118,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -143,8 +143,8 @@ msgid "Activated Gridsquare Map" msgstr "Lokaattorikartan aktivointi" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -306,51 +306,51 @@ msgstr "API-avain %s on poistettu" msgid "Awards" msgstr "Awardit" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Awardit - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -359,13 +359,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -377,29 +377,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Awardit - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Awardit - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Lokinäkymä - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -412,43 +412,58 @@ msgstr "Lokinäkymä - VUCC" msgid "Log View" msgstr "Lokinäkymä" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " ja bandi " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "ja" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Jokainen bandi (ilman SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "bandi" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " ja satelliitti " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " ja kiertoratatyyppi " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " ja propagaatio " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " ja mode " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " ja " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -469,14 +484,14 @@ msgstr " ja " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -491,16 +506,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -514,111 +529,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Yhdysvaltojen piirikunnat" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Lokinäkymä - Yhdysvaltojen piirikunnat" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Awardit - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Workitut lokaattorit" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "LOTW:ssa vahvistetut lokaattorit" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Paperi-QSL:llä vahvistetut lokaattorit" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Kaikki workitut lokaattorit" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Awardit - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "ITU-vyöhykkeet" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -649,8 +664,7 @@ msgstr "Luo Mode" msgid "Edit Band" msgstr "Muokkaa bandia" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -683,15 +697,24 @@ msgstr "CBR-tiedot tuotu" msgid "Callsign statistics" msgstr "Kutsumerkkitilastot" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " ja bandi " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " ja sat " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Kutsumerkkitestaaja" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "CSV Call testeri" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Kutsumerkin testaus" @@ -775,28 +798,31 @@ msgid "No user has configured Clublog." msgstr "Yksikään käyttäjä ei ole määrittänyt Clublogia." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -828,7 +854,7 @@ msgid "Update Contest" msgstr "Päivitä kilpailu" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -846,12 +872,12 @@ msgstr "Muokkaa cron-tehtävää" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "ei koskaan" @@ -926,14 +952,14 @@ msgstr "DCL avaimen tuonti" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1180,7 +1206,7 @@ msgstr "Ladattavia QSOja ei löytynyt." msgid "KML Export" msgstr "KML-vienti" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "QSL-korttitarrat" @@ -1188,59 +1214,59 @@ msgstr "QSL-korttitarrat" msgid "Create Label Type" msgstr "Luo tarratyyppi" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Tarran nimi" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Paperityyppi" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Mittaus" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Yläreuna" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Vasen reuna" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSL:t vaakatasossa" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSL:t pystysuunnassa" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Vaakasuora tila" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Pystysuora tila" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Tarran leveys" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Tarran korkeus" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Fontin koko" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "QSOjen määrä tarrassa" @@ -1249,22 +1275,22 @@ msgid "Create Paper Type" msgstr "Luo paperityyppi" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Paperityypin nimi" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Paperin leveys" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Paperin korkeus" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1272,18 +1298,18 @@ msgstr "" "Paperityyppiä ei voitu tallentaa. Muista, että sillä ei voi olla samaa nimeä " "kuin olemassa olevillapaperityypeillä." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Sinun on määritettävä tarralle paperityyppi ennen tulostusta." -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "Sinun täytyy luoda tarratyyppi ja asettaa se tulostettavaksi." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1291,31 +1317,31 @@ msgstr "" "Jokin meni pieleen! Tarratyyppiä ei voitu luoda. Tarkista tarran ja fontin " "koko." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "0 QSOa löytyi tulostettavaksi!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Muokkaa tarraa" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Tarratyyppi tallennettiin." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Tarratyyppi poistettiin." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Muokkaa paperia" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Paperi tallennettiin." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Paperi poistettiin." @@ -1339,55 +1365,55 @@ msgstr "Asemalokikirjat" msgid "Logbook" msgstr "Lokikirja" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1395,95 +1421,97 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "" "Kaikki kutsumerkkiluettelohakujen haut epäonnistuivat tai eivät tuottaneet " "tuloksia." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1491,7 +1519,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1508,13 +1536,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1553,15 +1581,15 @@ msgstr "" msgid "Mode" msgstr "Lähetelaji" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1582,15 +1610,15 @@ msgstr "Lähetelaji" msgid "RST (S)" msgstr "RST (L)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1612,7 +1640,7 @@ msgstr "RST (L)" msgid "RST (R)" msgstr "RST (V)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1621,29 +1649,29 @@ msgstr "RST (V)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Maa" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1656,7 +1684,7 @@ msgstr "Maa" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1664,7 +1692,7 @@ msgstr "Maa" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1673,12 +1701,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1687,7 +1715,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1695,7 +1723,7 @@ msgstr "IOTA" msgid "State" msgstr "osavaltio" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1704,19 +1732,19 @@ msgstr "osavaltio" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1732,20 +1760,20 @@ msgstr "osavaltio" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Lokaattoriruutu" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1755,9 +1783,9 @@ msgstr "Lokaattoriruutu" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1775,18 +1803,18 @@ msgstr "Lokaattoriruutu" msgid "Distance" msgstr "Etäisyys" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1794,25 +1822,26 @@ msgstr "Etäisyys" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1823,13 +1852,13 @@ msgstr "Etäisyys" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1868,13 +1897,14 @@ msgstr "Etäisyys" msgid "Band" msgstr "Bandi" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1895,13 +1925,13 @@ msgstr "Bandi" msgid "Frequency" msgstr "Taajuus" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1914,21 +1944,21 @@ msgstr "Taajuus" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operaattori" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1937,14 +1967,14 @@ msgstr "Operaattori" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "Poistettu DXCC" @@ -1952,12 +1982,12 @@ msgstr "Poistettu DXCC" msgid "Advanced logbook" msgstr "Edistynyt lokikirja" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC päivitetty %d QSO:lle)." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "DXCC %s:n ja lokaattoriruudun %s kartta." @@ -1972,7 +2002,7 @@ msgstr "Nopea haku" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1984,11 +2014,11 @@ msgstr "Varmenne tuotu." msgid "Certificate Updated." msgstr "Varmenne päivitetty." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Varmenne poistettu." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2001,7 +2031,7 @@ msgstr "" "salasanaa!%s Lisätietoja saat vierailemalla %sLoTW FAQ -sivulla%s Wavelog " "Wikissä." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2012,52 +2042,52 @@ msgstr "" "\"key-only\", tämä on yleensä varmennepyyntö, jota LoTW ei ole vielä " "käsitellyt." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Yleinen virhe käsiteltäessä varmennetta tiedostossa %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Yleinen virhe yksityistä avainta poistettaessa tiedostossa olevasta " "sertifikaatista %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF -tiedot" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Yhteys LoTW:hen epäonnistui." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-kirjautuminen epäonnistui käyttäjälle %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Käyttäjätunnus/salasana virheellinen" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW ei ole tällä hetkellä käytettävissä. Yritä myöhemmin uudelleen." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "LoTW-kirjautuminen OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "LoTW-tunnuksia ei ole annettu." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-tuonti" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Et ole määrittänyt ARRL LoTW -tunnuksiasi!" @@ -2082,7 +2112,7 @@ msgstr "Muokkaustila" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Muistiinpanot" @@ -2401,20 +2431,20 @@ msgstr "Lataa QSL-kortit" msgid "Print Requested QSLs" msgstr "Tulosta pyydetyt QSL:t" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Lisää QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "" "Sinun täytyy olla kirjautuneena sisään päästäksesi tälle URL-osoitteelle." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Call Transfer" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Kutsutunnusta ei ole annettu." @@ -2423,18 +2453,18 @@ msgstr "Kutsutunnusta ei ole annettu." msgid "Hardware Interfaces" msgstr "Laitteiston rajapinnat" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Aikaleima" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2442,61 +2472,65 @@ msgstr "Aikaleima" msgid "Options" msgstr "Valinnat" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Asetukset" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Oletus (napsauta vapauttaaksesi)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Aseta oletusradioksi" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "TUNTEMATON" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "viimeksi päivitetty" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Aseta oletusradioksi" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Oletus (napsauta vapauttaaksesi)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Muokkaa" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2505,22 +2539,38 @@ msgstr "Muokkaa" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Poista" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket on tällä hetkellä oletuksena. (klikkaa vapauttaaksesi)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Aseta WebSocket oletusradiolle" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "CAT-liitännäisiä radioita ei löytynyt." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "Voit edelleen asettaa WebSocket-vaihtoehdon oletusradioksi." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Muokkaa CAT-asetuksia" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Radio poistettu onnistuneesti" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Vie EDI" @@ -2588,7 +2638,7 @@ msgstr "Sinulla ei ole asemien sijainteja. Mene %s luodaksesi sellaisia!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2599,13 +2649,13 @@ msgstr "tänne" msgid "Satellite Timers" msgstr "Satelliittiajastimet" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2660,7 +2710,8 @@ msgstr "Muokkaa aseman sijaintia: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2668,7 +2719,7 @@ msgstr "Muokkaa aseman sijaintia: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2681,7 +2732,7 @@ msgid "Duplicate Station Location:" msgstr "Monista aseman sijainti:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Tarkista lokaattori (%s)" @@ -2744,7 +2795,8 @@ msgstr "Virhe. Linkki on jo käytössä!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2752,19 +2804,19 @@ msgid "Disabled" msgstr "Poistettu käytöstä" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Aseta aktiiviseksi lokikirjaksi" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Aktiivinen Lokikirja" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2774,7 +2826,7 @@ msgstr "" "paikasta riippuvat sijainnit toiseen lokikirjaan." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Näytä tämän lokikirjan julkinen sivu: " @@ -2783,19 +2835,19 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Haluatko varmasti poistaa julkisen tunnuksen?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "Oletko varma, että haluat tehdä asemaprofiilista %s aktiivisen aseman?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Aseta aktiiviseksi" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Aktiivinen asema" @@ -2803,31 +2855,31 @@ msgstr "Aktiivinen asema" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Haluatko varmasti poistaa kaikki QSO:t tämän asemaprofiilin sisällä?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Tyhjä loki" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Kopioi" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2840,7 +2892,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Valitse yksi" @@ -2920,103 +2972,103 @@ msgstr "Valmistele DXCC-poikkeuksia: " msgid "Preparing DXCC Prefixes: " msgstr "Valmistele DXCC-etuliitteitä: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "VALMIS" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Päivitys käynnissä..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC-alueet:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Dxcc-poikkeukset:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Dxcc-etuliitteet:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP-päivitys valmis. Tulos: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP-päivitys epäonnistui. Tulos: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-käyttäjien päivitys valmis. Tulos: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-käyttäjien päivitys epäonnistui. Tulokset: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK-päivitys valmis. Tulos: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK-päivitys epäonnistui. Tulokset: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA-päivitys valmis. Tulokset: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA-päivitys epäonnistui. Tulos: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF-päivitys valmis. Tulos: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF-päivitys epäonnistui. Tulos: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-päivitys valmis. Tulos: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-päivitys epäonnistui. Tulos: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA-päivitys valmis. Tulos: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA-päivitys epäonnistui. Tuloksena: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE-päivitys valmis. Tulos: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE-päivitys epäonnistui. Tulos: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT päivitys" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Päivitä Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC-ruututiedoston päivitys valmis. Tulokset: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC-ruututiedoston päivitys epäonnistui. Tulos: " @@ -3050,61 +3102,61 @@ msgstr "Virheellinen parametri!" msgid "Add User" msgstr "Lisää käyttäjä" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Käyttäjänimi %s on jo käytössä!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "Sähköposti %s on jo käytössä!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Virheellinen salasana!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Käyttäjä %s lisätty!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Käyttäjät" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Muokkaa käyttäjää" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Käyttäjä %s muokkasi" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profiili" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Poista käyttäjä" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Käyttäjä poistettu" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Kkäyttäjää ei voitu poistaa!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Tietokantavirhe:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3112,29 +3164,29 @@ msgstr "" "Onnittelut! Wavelog asennettiin onnistuneesti. Voit nyt kirjautua sisään " "ensimmäistä kertaa." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Tämä ei ole sallittua!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Kirjautuminen epäonnistui. Yritä uudelleen." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Kirjaudu" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Et voi kirjautua suoraan klubiasemalle. Käytä sen sijaan henkilökohtaista " "tiliäsi." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3142,7 +3194,7 @@ msgstr "" "Tilisi on lukittu liian monen epäonnistuneen kirjautumisyrityksen vuoksi. " "Nollaa salasanasi." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3152,52 +3204,52 @@ msgstr "" "ilmestyy odottamatta tai ilmestyy toistuvasti, ota yhteyttä ylläpitäjään. " "Vain ylläpitäjät voivat tällä hetkellä kirjautua sisään." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Virheellinen käyttäjänimi tai salasana!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Käyttäjä %s kirjattu ulos." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Aseman nimi" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Asema kutsu" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "Aseman DXCC" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Aseman CQ-vyöhyke" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Aseman ITU-alue" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Aseman lokaattoriruutu" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3206,35 +3258,35 @@ msgstr "" "Asema luotu onnistuneesti! Tervetuloa Wavelogiin! Viimeistele aseman asennus " "napsauttamalla %stästä%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "Aseman luonti epäonnistui! Ole hyvä ja luo asema manuaalisesti." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "Salasanan palautus on poistettu käytöstä demossa!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Salasana unohtunut" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "Sähköpostiasetukset ovat virheelliset." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Salasanan palautus käsitelty." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Resetoi salasana" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3242,7 +3294,7 @@ msgstr "" "Ei voitu luoda tiliä tälle käyttäjänimellä. Ole hyvä ja kokeile toista kuin " "\"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3250,7 +3302,7 @@ msgstr "" "Tälle sähköpostiosoitteelle ei voitu luoda tiliä. Yritä toista osoitetta " "kuin \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3259,7 +3311,7 @@ msgstr "" "Et voi tällä hetkellä esiintyä toisena käyttäjänä. Sinun täytyy asettaa %s " "paikalle %s tiedostossasi config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3268,15 +3320,15 @@ msgstr "" "Et voi tällä hetkellä esiintyä toisen käyttäjänä. Muuta ensin encryption_key-" "arvoasi config.php-tiedostossa!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Invalid Hash" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "The impersonation hash is too old. Please try again." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3284,15 +3336,15 @@ msgstr "" "Et voi esiintyä toisena käyttäjänä, kun et ole kirjautunut sisään " "lähdekäyttäjänä" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Istunnossasi tapahtui virhe. Yritä uudelleen." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "Pyydetty jäljiteltävä käyttäjä ei ole olemassa" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3300,13 +3352,13 @@ msgstr "" "Kerhoaseman oikeaa käyttöoikeustasoa ei voitu määrittää. Yritä uudelleen " "kirjautumisen jälkeen." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Oho.. Jotain meni pieleen. Yritä kirjautua takaisin sisään." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3314,7 +3366,7 @@ msgstr "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3328,7 +3380,7 @@ msgid "Satellite Gridsquare Map" msgstr "Satelliitin lokaattoriruutukartta" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Julkinen haku" @@ -3379,14 +3431,20 @@ msgstr "Useita käyttäjiä löydetty tunnisteella" msgid "Gridsquare Zone finder" msgstr "Gridsquare Zone finder" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Hakua ei ole määritetty. Tarkista määritykset." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "" +"Kutsumerkkiluettelon istuntoavainta haettaessa tapahtui virhe. Virhe: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "QRZCQ Virhe" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Virhe HamQTH-kyselyn istuntoavaimen hankinnassa" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3539,25 +3597,25 @@ msgstr "HRDlog: Yhtään asemaprofiilia ei HRDlog-tunnuksilla löytynyt." msgid "Station not accessible" msgstr "Asema ei ole käytettävissä" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "Aseman ID ei sallittu" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Kutsumerkkiä ei ole annettu" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC:n on oltava numeerinen" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Väärä aseman kutsumerkki %s tuotaessa QSOa %s %s: varten: OHITETTU" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3565,11 +3623,11 @@ msgstr "" "Yritit tuoda QSOa ilman kelvollista päivämäärää. Tätä QSOa ei tuotu. Se on " "virheellinen" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO alkoi" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3577,7 +3635,7 @@ msgstr "" "Yritit tuoda QSOa ilman annettua KUTSUA. Tätä QSOa ei tuotu. Se on " "virheellinen" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3586,64 +3644,64 @@ msgstr "" "QSO ajassa %s: Yritit tuoda QSO:n ilman merkittyä bandia. Tätä QSO:ta ei " "tuotu. Se on virheellinen" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate on virheellinen (YYYYMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate on virheellinen (YYYYMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "the clublog_qso_upload_date on virheellinen (YYYYMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Kaksoiskappale" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSOa ei voitu yhdistää" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "vahvistettu LoTW:n/Clublogin/eQSL:n/kilpailun kautta" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "vahvistettu awardimanagerin toimesta" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "varmistettu DCL-datan ristivertailulla" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "vahvistus odottaa" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "vahvistamaton" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "tuntematon" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "POTA-referenssi on jo lokissa" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO päivitetty" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3657,7 +3715,7 @@ msgstr "QSO päivitetty" msgid "Bearing" msgstr "Suuntima" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "VuccGrids-taulukko on tyhjä. Tuo ensin VUCC-ruutuaineisto." @@ -3795,42 +3853,40 @@ msgstr "Ero" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3859,33 +3915,33 @@ msgstr "Ero" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3906,7 +3962,7 @@ msgstr "Ero" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Kaikki" @@ -3950,12 +4006,12 @@ msgstr "Jakso" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Propagaatio" @@ -3971,7 +4027,7 @@ msgstr "Kaikki paitsi SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Ei yhtään/tyhjä" @@ -3981,11 +4037,11 @@ msgstr "Ei yhtään/tyhjä" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Lentokoneheijastus" @@ -3995,11 +4051,11 @@ msgstr "Lentokoneheijastus" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4009,11 +4065,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4023,11 +4079,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -4037,11 +4093,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4051,11 +4107,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Earth-Moon-Earth" @@ -4065,11 +4121,11 @@ msgstr "Earth-Moon-Earth" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadinen E" @@ -4079,11 +4135,11 @@ msgstr "Sporadinen E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Kenttäkohtaiset epäsäännöllisyydet" @@ -4093,11 +4149,11 @@ msgstr "Kenttäkohtaiset epäsäännöllisyydet" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2-heijastus" @@ -4107,11 +4163,11 @@ msgstr "F2-heijastus" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Internet-avusteinen" @@ -4121,11 +4177,11 @@ msgstr "Internet-avusteinen" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4135,11 +4191,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4149,11 +4205,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor scatter" @@ -4163,11 +4219,11 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Maanpäällinen tai ilmakehän toistin tai transponderi" @@ -4177,11 +4233,11 @@ msgstr "Maanpäällinen tai ilmakehän toistin tai transponderi" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Sadesironta" @@ -4191,11 +4247,11 @@ msgstr "Sadesironta" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satelliitti" @@ -4205,11 +4261,11 @@ msgstr "Satelliitti" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-ekvatoriaali" @@ -4219,11 +4275,11 @@ msgstr "Trans-ekvatoriaali" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Tropospheric ducting" @@ -4232,18 +4288,18 @@ msgstr "Tropospheric ducting" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4255,21 +4311,21 @@ msgstr "Tropospheric ducting" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Näytä" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4280,7 +4336,7 @@ msgstr "Näytä" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4289,19 +4345,25 @@ msgstr "Näytä" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satelliitti" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4321,22 +4383,22 @@ msgstr "Vahvistus" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4382,11 +4444,11 @@ msgstr "Minimimäärä" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4395,11 +4457,10 @@ msgstr "Minimimäärä" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4419,7 +4480,8 @@ msgstr "Mitään ei löytynyt!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4435,12 +4497,13 @@ msgstr "Mitään ei löytynyt!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4464,7 +4527,7 @@ msgstr "Mitään ei löytynyt!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Radioamatöörikutsu" @@ -4475,12 +4538,12 @@ msgstr "Laske" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Näytä QSO:t" @@ -4546,7 +4609,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4570,11 +4633,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4588,12 +4651,12 @@ msgstr "Päivä" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4608,7 +4671,7 @@ msgstr "Päivä" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4621,7 +4684,7 @@ msgstr "Aika" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4676,20 +4739,20 @@ msgstr "Tärkeää" msgid "Log Files must have the file type *.adi" msgstr "Lokitiedoston pitää olla ADI-tiedosto *.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Tiedoston maksimilatauskoko on " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4750,8 +4813,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "VAARA" @@ -5134,8 +5197,8 @@ msgstr "POTA REF:t ADIF:ssa" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Tila" @@ -5154,7 +5217,7 @@ msgstr "Yksinkertainen nimi, joka kuvaa, mihin tätä API:a käytetään." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5221,7 +5284,7 @@ msgstr "Wavelog-instanssin API-URL on" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5275,7 +5338,7 @@ msgstr "Oikeudet" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5320,7 +5383,7 @@ msgstr "Luo vain lukuoikeuden omaava avain" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5329,8 +5392,8 @@ msgstr "Luo vain lukuoikeuden omaava avain" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5347,14 +5410,14 @@ msgstr "Luo vain lukuoikeuden omaava avain" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5410,9 +5473,9 @@ msgid "Filtering on" msgstr "Suodatus päällä" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Kunta" @@ -5468,19 +5531,14 @@ msgid "Counties Confirmed" msgstr "Vvahvistettu maakunnat" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5502,22 +5560,23 @@ msgid "Total" msgstr "Yhteensä" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5570,10 +5629,12 @@ msgid "Awards - CQ WAZ" msgstr "Awardit - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Suotimet" @@ -5583,92 +5644,114 @@ msgid "Show CQ Zone Map" msgstr "Näytä CQ-aluekartta" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Päivämäärien esiasetukset" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Tänään" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Eilen" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Viimeiset 7 päivää" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Viimeiset 30 päivää" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Tässä kuussa" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Viime kuussa" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Tänä vuonna" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "Viime vuosi" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Tyhjennä" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5676,7 +5759,9 @@ msgid "Date from" msgstr "Alkupäivämäärä" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5684,11 +5769,10 @@ msgid "Date to" msgstr "Loppupäivämäärä" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5698,9 +5782,8 @@ msgid "Confirmed" msgstr "Kuitattu" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5710,67 +5793,64 @@ msgstr "Workittu" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Näytä workitut" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Näytä vahvistetut" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Näytä workkimattomat" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5778,95 +5858,161 @@ msgstr "Näytä QSOt QSL-tyypillä" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL-kortti" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Taulukko" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Kartta." -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legenda:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL-paperikortti" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(LO)tW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-\"vahvistus\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) Työskennellyt" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Yhteenveto" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Yhteensä (ilman SAT)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Työskennelty yhteensä" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5929,15 +6075,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Työskennelty / Vahvistettu" @@ -5946,11 +6092,9 @@ msgstr "Työskennelty / Vahvistettu" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Jokainen bandi" @@ -5958,23 +6102,20 @@ msgstr "Jokainen bandi" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Palauta" @@ -6030,161 +6171,127 @@ msgstr "" "Tässä awardissa käytetyt kentät: DXCC (Täytyy olla kelvollinen DXCC-ADIF-" "Spec-Listan mukainen)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Näytä DXCC-kartta" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Sisällytä poistetut" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antarktis" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Afrikka" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Aasia" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Eurooppa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Pohjois-Amerikka" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Etelä-Amerikka" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oseania" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Jokainen bandi (ilman SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legenda:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL-paperikortti" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(LO)tW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-\"vahvistus\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) Työskennellyt" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "DXCC:n nimi" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefiksi" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "Ei tuloksia hakuehdoillasi. Yritä uudelleen." @@ -6454,23 +6561,23 @@ msgstr "Näytä IOTA-kartta" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Nimi" @@ -6479,14 +6586,14 @@ msgid "Deleted" msgstr "Poistettu" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6496,7 +6603,7 @@ msgstr "Poistettu" msgid "ITU Zone" msgstr "ITU-alue" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6507,21 +6614,21 @@ msgstr "" "saaneensa yhteyden vähintään 70:n 75:stä Kansainvälisen televiestintäliiton " "(ITU) määrittelemästä lähetysvyöhykkeestä (ITU Zone)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Lisätietoja löydät sivustolta %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Awardia varten käytetyt kentät ovat: ITU-vyöhyke (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Awardit - ITU-alueet" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Näytä ITU-vyöhykekartta" @@ -6579,7 +6686,7 @@ msgstr "Tulokset" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Kaupunki" @@ -6588,8 +6695,10 @@ msgstr "Kaupunki" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6724,7 +6833,7 @@ msgstr "Voivodikunta" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Koodi" @@ -6740,7 +6849,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6778,8 +6887,8 @@ msgid "Band Categories" msgstr "Bandikategoriat" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Korjaa osavaltio" @@ -6851,8 +6960,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "POTA ref.nro" @@ -6863,6 +6972,7 @@ msgstr "Maakunta" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Vie hiiri provinssin päälle" @@ -6929,7 +7039,7 @@ msgid "Reference" msgstr "Referenssi (ref)" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6997,7 +7107,7 @@ msgstr "" "vahvistettuja ruutuja halutulla taajuusalueella." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "Viralliset tiedot ja säännöt löytyvät tästä asiakirjasta: %s." @@ -7082,25 +7192,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Awardi - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Manner" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "WAE awardi" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7110,7 +7225,7 @@ msgstr "" "yhteyksistä radioamatööriasemiin Euroopan maissa ja saarilla, jotka on " "lueteltu WAE-maaluettelossa eri bandeilla." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7120,11 +7235,11 @@ msgstr "" "Mixed Modes. Se myönnetään viidessä luokassa: WAE III, WAE II, WAE I, WAE " "TOP ja WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Tämä awardi käyttää seuraavia kenttiä: Alue, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "WAE-nimi" @@ -7174,7 +7289,7 @@ msgid "Show WAJA Map" msgstr "Näytä WAJA-kartta" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefektuuri" @@ -7238,15 +7353,20 @@ msgid "Show WAP Map" msgstr "Näytä WAP-kartta" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Maakunta" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Provinssi" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Worked All Provinces of China" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7258,7 +7378,7 @@ msgstr "" "kaikissa Kiinan maakunnissa, kunnissa, autonomisilla alueilla ja " "erityishallintoalueilla, edistäen syvempää ymmärrystä Kiinasta." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7266,7 +7386,7 @@ msgstr "" "Awardinvoi ansaita pitkäaikaisella yhteyksien keräämisellä tai saavuttaa " "yhdessä yrityksessä vuosittaisen WAPC-kilpailun aikana." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7276,6 +7396,10 @@ msgstr "" "Kiina/318, Hongkong/321, Macao/152, Taiwan/386, Pratas Isl./505 tai " "Scarborough Reef/506) ja voimassa oleva osavaltio (ADIF: DXCC ja STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Näytä WAPC-kartta" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7390,8 +7514,8 @@ msgstr "Tämä awardi käyttää seuraavia kenttiä: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "WWFF ref.nro" @@ -7444,218 +7568,218 @@ msgstr "" "Varmuuskopio muistiinpanoistasi on luotu onnistuneesti. Löydät sen " "osoitteesta" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Napsauta valmistellaksesi lokitusta." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "virittää taajuuden" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Ponnahdusikkuna estetty" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Ponnahdusikkuna estettiin! Salli tämän sivuston ponnahdusikkunat pysyvästi." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT-yhteys vaaditaan" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Ota CAT-yhteys käyttöön radion viritystä varten" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Tyhjennä suodattimet" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Kaistasuodatin on säilytetty (kaistalukitus on aktiivinen)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio asetettu tilaan Ei mitään - CAT-yhteys pois käytöstä" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio viritetty" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Viritetty taajuudelle" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Virittäminen epäonnistui" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Radion viritys epäonnistui taajuudelle" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO valmis" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "lähetetty QSO-ikkunaan" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT-yhteys" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Napsauta ottaaksesi CAT-yhteyden käyttöön" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT seuraa radiota - Napsauta poistaaksesi käytöstä" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Napsauta ottaaksesi kaistalukon käyttöön (vaatii CAT-yhteyden)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Kaistan lukitus aktiivinen - Napsauta poistaaksesi käytöstä" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Bandilukko" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Bandi-lukitus käytössä - bandisuodatin seuraa radion bandia" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Bandisuodatin vaihdettiin" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "radiolta" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Taajuussuodatin asetettu" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "" "Taajuus tunnettujen taajuusalueiden ulkopuolella - näyttää kaikki " "taajuusalueet" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Odotetaan radiodataa..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Suosikkini" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Suosikkien lataus epäonnistui" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "Liikennetila käytössä. Kaistanpäästösuodin säilytetty (CAT-yhteys on " "aktiivinen)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Suosikkibandisii ja -modesi otettu käyttöön" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Submodet" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Submode filtteri käytössä" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Submodefiltteri poistettu käytöstä - kaikki näytetään" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Vaaditut submodet" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Määritä käyttäjäasetuksissa - Modet" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "Submodeja ei määritetty - määritä käyttäjäasetuksissa - Modet" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "Submodeja ei käytössä asetuksissa - näyttää kaikki spotit" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Ei käytössä - tälle modelle ei ole käyttäjäasetuksissa otettu submodea " "käyttöön" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Vaihda CW-tilan suodinta" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Vaihda digitaalisen tilan suodatin" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Vaihda phone-tilan suodatin" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Suosikit" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Tallenna nykyiset suodattimet..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Anna nimi tälle suodattimen esiasetukselle:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Suodattimen esiasetus tallennettu" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Suodattimen esiasetus ladattu" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Suodattimen esiasetus poistettu" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Oletko varma, että haluat poistaa tämän suodattimen esiasetuksen?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Ei tallennettuja suodattimen esiasetuksia" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7663,64 +7787,64 @@ msgstr "" "Enimmäismäärä 20 suodatinesiasetuksia saavutettu. Poista joitakin ennen " "uusien lisäämistä." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Ladataan tietoja DX-klusterista" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Viimeksi haettu" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Maksimi-ikä" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Haettu klo" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Seuraava päivitys" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minuutit" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "sekunnit" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spotteja haettu" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "näyttää" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "näytetään kaikki" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktiiviset suodattimet" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Noutaa..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Ei työskennelty" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Työskennelty, ei vahvistettu" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7728,266 +7852,269 @@ msgstr "Työskennelty, ei vahvistettu" msgid "LoTW User" msgstr "LoTW-käyttäjä" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Uusi kutsumerkki" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Uusi manner" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Uusi maa" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Työskennelty aiemmin" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Työskennelty %s %s kanssa" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "spotattu" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Tuore spottaus (< 5 minuuttia vanha)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Kilpailu" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Napsauta katsoaksesi" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "QRZ.comissa" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klikkaa nähdäksesi %s QRZ.comissa" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Katso lisätietoja" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Työskennelty" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Ei työskennelty tällä bandilla" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW-käyttäjä. Viimeinen lataus oli %d päivää sitten" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klikkaa nähdäksesi POTA.appissa" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Napsauta nähdäksesi SOTL.as:sa" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Napsauta nähdäksesi cqgma.org:ssa" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Napsauta nähdäksesi IOTA-World.org:ssa" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Katso yksityiskohdat mantereesta" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Katso yksityiskohdat mantereesta %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Katso yksityiskohdat CQ-zonesta" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Katso yksityiskohdat CQ-zonesta %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "in" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Poistu kokoruututilasta" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Vaihda kokoruututilaan" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "Bandin suodatusta ohjataan radiollasi, kun CAT-yhteys on käytössä" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Napsauta valmistellaksesi loggausta" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(vaatii CAT-yhteyden)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spottaaja" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Kommentti" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Ikä" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Saapuva" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Lähtevä" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spotit" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spotti" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spottaajat" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Ole hyvä ja odota" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Odota %s sekuntia ennen kuin lisäät toisen kutsumerkin QSO-lomakkeeseen" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Ladataan spottauksia..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Spottauksia ei löytynyt" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Dataa ei saatavilla" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Valituilla suodattimilla ei löytynyt spotteja" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Virhe ladattaessa spottauksia. Yritä uudelleen." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Näytä kaikki modet" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Näytä kaikki spottaukset" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Näytä spottaajat" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Laajenna karttaa" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Näytä päivä/yö" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "QTH:si" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Palaa kotiin" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX-klusteri" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX-klusterin apu" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Kompakti tila - Näytä/Piilota valikko" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7995,316 +8122,281 @@ msgstr "TRX:" msgid "None" msgstr "Ei mitään" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Pollaus - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Valitse kaikki mantereet" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Maailma" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Vaihda Afrikan maanosasuodatin" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Vaihda Antarktiksen manteresuodatin" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Vaihda Aasian maanosan suodatin" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Vaihda Euroopan maanosasuodatin" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Vaihda Pohjois-Amerikan maanosa-suodatin" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Vaihda Oseania-manner suodatin" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Vaihda Etelä-Amerikan maanosan suodatin" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Edistyneet suodattimet" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Pidä" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "ja napsauta valitaksesi useita vaihtoehtoja" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC-status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phone" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Vaaditut merkit" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Työskennelty kutsu" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX-spotti" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Lisämerkit" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Tuore (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Mantere-spotit" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Havaitun aseman maanosa" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Käytä suodatinta" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Suodata suosikit" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Tyhjennä kaikki suodattimet paitsi maanosa" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Aktivoi 160 m:n suodatin" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Aktivoi 80 m:n suodatin" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Aktivoi 60 m:n suodatin" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Aktivoi 40 m:n suodatin" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Aktivoi 30 m:n suodatin" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Aktivoi 20 m:n suodatin" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Aktivoi 17m:n suodatin" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Aktivoi 15 m:n suodatin" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Aktivoi 12 m:n suodatin" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Aktivoi 10 m:n suodatin" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Aktivoi 6 m:n suodatin" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Aktivoi VHF bandin suodatin" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Aktivoi UHF bandin suodatin" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Aktivoi SHF bandin suodatin" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Lataa submodeja..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Vaihda LoTW-käyttäjäsuodatin" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW-käyttäjät" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Vaihda DX Spot -suodatinta (spotattumaanosa ≠ spotterin maanosa)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Ota uusi mantere -suodatin käyttöön" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Uudet mantereet" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Vaihda uusien entiteettien suodatin" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Uudet entiteetit" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Vaihda uusien kutsumerkkien suodatin" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Uudet kutsumerkit" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Vaihda tuoreiden spotien suodatin (< 5 minuuttia vanhoja)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Tuore" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Vaihda kilpailusuodatin" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Vaihda Geo Huntteri (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Viitattu" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Avaa DX-karttanäkymä" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX-kartta" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Etsi spotteja..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Hakusarake" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Huomautus: Kartta näyttää DXCC-entiteettien sijainnit, ei varsinaisia " -"spottauslokaatioita" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Kaikki sarakkeet" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Ikä minuutteina" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submode" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Spotattu kutsu" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX -asema" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Lippu" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC Entity" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entiteetti" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Spotterin kutsumerkki" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotterin manner" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotterin CQ-alue" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Viimeinen QSO-päivämäärä" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Erityinen" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Erikoisliput" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8312,6 +8404,62 @@ msgstr "Erikoisliput" msgid "Message" msgstr "Viesti" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotterin manner" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotterin CQ-alue" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Etsi spotteja..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Huomautus: Kartta näyttää DXCC-entiteettien sijainnit, ei varsinaisia " +"spottauslokaatioita" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Ikä minuutteina" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Spotattu kutsu" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Lippu" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC Entity" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spotterin kutsumerkki" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Viimeinen QSO-päivämäärä" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Erityinen" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Erikoisliput" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Anna kelvollisia numeroita taajuudeksi" @@ -8587,7 +8735,7 @@ msgstr "" "referenssinumeroa)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8705,19 +8853,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8751,15 +8899,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Kyllä" @@ -8774,19 +8924,19 @@ msgstr "Kyllä" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8820,16 +8970,17 @@ msgstr "Kyllä" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Ei" @@ -8860,7 +9011,7 @@ msgid "First QSO" msgstr "Ensimmäinen QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Viimeinen QSO" @@ -8969,8 +9120,8 @@ msgid "Callsign DXCC identification" msgstr "Kutsumerkkien DXCC-tunniste" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Kutsumerkki: " @@ -9258,8 +9409,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9572,7 +9723,7 @@ msgstr "ADIF-nimi" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9642,7 +9793,7 @@ msgstr "Luo" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Kilpailun nimi" @@ -9719,8 +9870,8 @@ msgid "Locator" msgstr "Lokaattori" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9835,11 +9986,11 @@ msgstr "Tunniste" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Käytössä" @@ -9933,7 +10084,8 @@ msgid "Cron List" msgstr "Cron-luettelo" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10129,9 +10281,9 @@ msgstr "Tarvittu" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10153,10 +10305,10 @@ msgstr "Tarvittu" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Lähetetyt" @@ -10166,9 +10318,9 @@ msgstr "Lähetetyt" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10189,10 +10341,10 @@ msgstr "Lähetetyt" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Vastaanotetut" @@ -10200,17 +10352,17 @@ msgstr "Vastaanotetut" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10233,11 +10385,11 @@ msgstr "Vastaanotetut" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Pyydetyt" @@ -10263,6 +10415,38 @@ msgstr "Viimeisin päivitys %s." msgid "Data provided by HAMqsl." msgstr "Tiedot tarjoaa HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "K-index: Planetaarinen geomagneettinen aktiivisuus (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "A-index: Päivittäinen geomagneettinen aktiviteetti-indeksi" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Aurinkovuoindeksi" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Aurinkotuulen nopeus (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Signaali-kohinasuhde" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Auringon röntgensäteilyn vuotaso" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Auringonpilkkujakson numero" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Revontuliaktiivisuuden taso (Kp-indeksi)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Yhteyksien määrä tälle viikonpäivälle" @@ -10342,7 +10526,7 @@ msgstr "Aloituspäivämäärä" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Lopetuspäivämäärä" @@ -10684,7 +10868,8 @@ msgstr "Onnistui" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Epäonnistui" @@ -10763,109 +10948,128 @@ msgstr "Moduulit" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Asennettu" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Ei asennettu" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "Välimuistin tiedot" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "Nykyinen kokoonpano" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "Ensisijainen sovitin" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "Varmuuskopiosovitin" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "Polku %s -adapterille" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "Avaimen etuliite" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" -"Välimuisti käyttää tällä hetkellä varmuuskopio­sovitinta, koska ensisijainen " -"sovitin ei ole käytettävissä." - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "Välimuisti toimii oikein. Kaikki kunnossa!" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "Välimuistin tiedot" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "Koko yhteensä" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "Avainten määrä" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "Välimuisti toimii oikein. Kaikki kunnossa!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"Välimuisti käyttää tällä hetkellä vara-adapteria, koska ensisijainen " +"adapteri ei ole käytettävissä. Tarkista tiedosto-oikeudet, PHP-päätteet ja/" +"tai verkkoyhteytesi palveluihin (jos käytössäsi on redis/memcached)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"Välimuisti ei toimi! Järjestelmä käyttää tällä hetkellä %s -sovitinta. " +"Tarkista tiedosto-oikeudet, PHP-päätteet ja/tai verkkoyhteytesi palveluihin " +"(jos käytät redis/memcached-palvelua). Voit jatkaa Wavelogin käyttöä, mutta " +"välimuistiin ei tallenneta arvoja (mikä on huono asia)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "Saatavilla olevat adapterit" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "Tyhjennä välimuisti" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Git-informaatio" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Haara" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Tagi" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Viimeksi haettu" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Tarkista päivitykset" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10873,77 +11077,77 @@ msgstr "Tarkista päivitykset" msgid "Update now" msgstr "Päivitä nyt" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Tiedoston latauspäivä" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Tiedosto" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Viimeisin päivitys" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "DXCC-tietojen päivitys Club Logista" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Päivitä" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Lataa DOK-tiedosto" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "LoTW-käyttäjien lataus" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "POTA-tiedoston lataus" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "SCP-tiedoston lataus" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "SOTA-tiedoston lataus" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "WWFF-tiedoston lataus" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "TLE päivitys" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Hams Of Note päivitys" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCC Lokaattorit" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "QSO-tietokannan ylläpito" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -10953,141 +11157,141 @@ msgstr[0] "" msgstr[1] "" "Tietokanta sisältää %d QSO-yhteyttä ilman asemaprofiilia (sijaintia)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Valitse QSOt ja määritä ne olemassa olevalle asemasijainnille:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Kohdesijainti" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "määritä uudelleen" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Kaikilla tietokannan QSO-yhteyksillä on määritetty asemaprofiili (sijainti)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Kaikki kunnossa" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "albanialainen" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "armenialainen" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "bosnialainen" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "bulgarialainen" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Kiina (yksinkertaistettu)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "kroatialainen" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "tšekkiläinen" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "hollantilainen" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "englanti" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "virolainen" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "suomi" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "ranskalainen" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "saksalainen" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "kreikka" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "unkarilainen" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "italialainen" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "japanilainen" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "latvialainen" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "liettualainen" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "montenegrolainen" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "puolalainen" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "portugalilainen" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "venäläinen" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "serbialainen" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "slovakialainen" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "slovenialainen" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "espanjalainen" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "ruotsalainen" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "turkkilainen" @@ -11149,7 +11353,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Vain QSOt, joilla on määritelty lokaattori, viedään!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL-info" @@ -11395,7 +11599,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "QSL-viesti" @@ -11528,31 +11732,32 @@ msgid "QSL Date" msgstr "QSL-päivämäärä" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Näytä" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Tyhjä" @@ -11636,7 +11841,7 @@ msgstr "QSO:t on merkitty viedyksi HRDLog Lokikirjaan." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Muokkaa QSO:a" @@ -12036,76 +12241,76 @@ msgstr "Versioinfo" msgid "Failed to load the modal. Please try again." msgstr "Virhe modaalin lataamisessa. Yritä uudelleen." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Kuvaus:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Kyselyn kuvaus" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Kyselysi on tallennettu!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Muokkaa kyselyjä" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Tallennetut kyselyt:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Suorita kysely" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Tallennetut kyselyt" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Sinun täytyy tehdä kysely ennen kuin voit suorittaa hakua!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Vie ADIF-muotoon" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Avaa laajennettu lokikirja" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Varoitus! Oletko varma, että haluat poistaa tämän tallennetun kyselyn?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "Tallennettu kysely on poistettu!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "Tallennettua kyselyä ei voitu poistaa. Yritä uudelleen!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "Kyselyn kuvausta on päivitetty!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Tallennuksessa tapahtui virhe. Yritä uudelleen!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12115,15 +12320,15 @@ msgstr "" "voimassa. Tarkista, mikä DXCC on oikea tälle sijainnille. Jos olet varma " "valinnastasi, voit sivuuttaa tämän varoituksen." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Lukumäärä: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Lokaattoriruudut: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12131,57 +12336,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokaattoriruudut" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "Sijainnin haku epäonnistui. Tarkista selainkonsoli." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "Lokaattori" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Yhteensä" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSL-kortti " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Varoitus! Haluatko varmasti poistaa tämän QSL-kortin?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kortti" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL-kortti " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "QSL-kuvatiedosto" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "QSL-kortin etupuoli:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "QSL-kortin takapuoli:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Liitä muita QSOja QSL-korttiin" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Jokin meni pieleen. Yritä uudelleen!" @@ -12335,7 +12544,7 @@ msgid "Satellite Pass" msgstr "Satelliitin ylilento" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Ylläpitäjä" @@ -12360,7 +12569,7 @@ msgid "Log" msgstr "Kirjaa" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12457,7 +12666,7 @@ msgid "Gridsquare Zone checker" msgstr "Locator-ruutujen vyöhykkeiden tarkistus" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Apua" @@ -12592,7 +12801,7 @@ msgid "Total height of one label" msgstr "Yhden tarran kokonaiskorkeus" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Fonttikoko" @@ -12650,14 +12859,14 @@ msgstr "Paperin suunta" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Vaakasuuntainen" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Pystysuuntainen" @@ -12676,47 +12885,52 @@ msgstr "" "tyyliä." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Merkitse QSL tulostetuksi" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Tulosta" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Tarran tulostusvaihtoehdot" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Luo uusi tarratyyppi" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Luo uusi paperityyppi" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Paperityypit" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Leveys" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Korkeus" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Käytetty tarroissa" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Suunta" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Tarratyypit" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12724,56 +12938,66 @@ msgstr "Tarratyypit" msgid "QSOs" msgstr "QSO:t" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Käytä tulostusta varten" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Paperia ei ole määritetty" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "QSL-korttien odottavat tarrat" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "Odottavat QSOt" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Näytä QSQt" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Sisällytä oma kutsu?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "SIsällytä lokaattori?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Sisällytä referenssi? (Sig, SOTA, POTA, IOTA, WWFF; jos saatavilla " "asemasijainnissa)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Sisällytä via (jos täytetty)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Sisällytä QSLMSG (jos täytetty)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Sisällytä TNX-viesti?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Mistä tulostus aloitetaan?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Anna tarratulostuksen aloituskohta" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12930,21 +13154,21 @@ msgstr "DXCC CQ-alue" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Asema" @@ -13027,89 +13251,93 @@ msgstr "" "Varoitus. Tämä työkalu voi aiheuttaa peruuttamattomia muutoksia, ja sitä " "tulisi käyttää vain, jos tiedät mitä teet." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Kaikki asemasijainnit" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "Tarkista kaikki QSOt lokikirjasta virheellisten CQ-alueiden varalta" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Käytä Wavelogia määrittämään CQ-vyöhyke kaikille QSOille." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Tarkista" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "Tarkista kaikki QSOt lokikirjasta virheellisten ITU-alueiden varalta" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Käytä Wavelogia ITU-alueen määrittämiseen kaikille QSOille." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Tarkista lokaattoriruudut" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Tarkista lokaattoriruudut jotka eivät vastaa DXCC:tä" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Korjaa manner" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Päivitä puuttuvat tai virheelliset maanosatiedot" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Päivitä puuttuvat osavaltio/provinssitiedot" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Päivitä etäisyydet" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Laske ja päivitä etäisyystiedot QSOille" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "" "Tarkista kaikki QSO:t lokikirjasta virheellisten DXCC-merkintöjen varalta" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Käytä Wavelogia määrittääksesi DXCC kaikille QSO:ille." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Etsi ja tarkista lokista QSOt, joista puuttuu lokaattoriruutu" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Käytä callbook-palvelua lokaattoriruudun asettamiseen" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Tämä on rajoitettu 150 kutsumerkkiin per ajo!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Tarkista IOTA DXCCtä vastaan" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Käytä Wavelogia tarkistaaksesi IOTA DXCCtä vastaan" @@ -13154,10 +13382,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Alue" @@ -13226,9 +13454,9 @@ msgid "QSL Sent Method" msgstr "QSLn lähetystapa" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL via" @@ -13252,84 +13480,84 @@ msgstr "RX bandi" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Virheellinen" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Vahvistettu" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Direkti" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Elektroninen" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13687,26 +13915,26 @@ msgstr "Lokaattoriruudut kohteelle" msgid "Non DXCC matching gridsquare" msgstr "Lokaattoriruutu ei vastaa DXCC-aluetta" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "alkaen" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Ei mitään" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13714,51 +13942,69 @@ msgstr "" "Etäisyys kilometreinä. Haku etsii etäisyyksiä, jotka ovat suurempia tai yhtä " "suuria kuin tämä arvo." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Kesto" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Kesto minuutteina. Haku etsii kestoja, jotka ovat suurempia tai yhtä suuria " +"kuin tämä arvo." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Lajittele sarake" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "QSO-aika" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO Muokattu" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Lajittelusuunta" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Laskeva" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Nouseva" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Käytä suodatinta" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "QSL-suodattimet" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL lähetetty" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13775,32 +14021,32 @@ msgstr "QSL lähetetty" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "Jonossa" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13829,279 +14075,279 @@ msgstr "Jonossa" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Virheellinen (Ohita)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL vastaanotettu" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "QSL lähetetty. Tavalla" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "QSL vastaanotettu. Tavalla" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW lähetetty" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW vastaanotettu" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog lähetetty" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog vastaanotettu" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL lähetetty" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL vastaanotettu" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL lähetetty" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL vastaanotettu" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "QSL-kuvat" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ lähetetty" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ vastaanotettu" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Pikasuodattimet" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Pikahaku valituista: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Hakupäivämäärä" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "ETsi DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Etsi osavaltio" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Etsi lokaattori" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Etsi CQ-alue" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Etsi ITU-alue" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Etsi mode" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Etsi bandi" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "etsi IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Etsi SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Etsi POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Etsi WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Etsi operaattori" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Varoitus! Haluatko varmasti poistaa merkityt QSOt?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSOt tullaan poistamaan" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Valituissa: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Päivitä Callbook:sta" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "Lisää jonoon (Bureau)" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "Lisää jonoon (direkti)" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "Lisää jonoon (elektroninen)" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Lähetetty (bureau)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Lähetetty (direkti)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Lähetetty (elektroninen)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Ei lähetetty" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL-korttia ei tarvita" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Ei vastaanotettu" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Vastaanotettu (bureau)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Vastaanotettu (direkti)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Vastaanotettu (elektroninen)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Luo ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Tulosta tarra" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "QSL diaesitys" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Tulokset" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplikaatit" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Karttapallo" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Tietokantatyökalut" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Viimeksi muokattu" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL Msg (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL Msg (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Referenssini" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Ant az" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Antenniatsimuutti" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Ant el" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Antennielevaatio" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Lähetysteho" @@ -14181,15 +14427,15 @@ msgstr "Lokaattoriruutujen päivityksen tulokset:" msgid "The number of QSOs updated for gridsquare is" msgstr "Lokaattoriruudun osalta päivitettyjen QSOjen määrä on" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Sisällytä Via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Sisällytä QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Sisällytä TNX-viesti" @@ -14254,35 +14500,35 @@ msgstr "Tällä hetkellä tuetut maat" msgid "Basic QSO Information" msgstr "QSOn perustiedot" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Asematiedot" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Vahvistuspalvelut" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Maantieteellinen tieto" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Awardiohjelmat" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Lisätiedot" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Tekniset tiedot" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Vain virheenkorjausta varten" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14290,7 +14536,7 @@ msgstr "" "Tämä on tarkoitettu vain vianetsintää varten, eikä sitä ole tarkoitus " "näyttää oletusarvoisesti" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Karttatasot" @@ -14417,7 +14663,7 @@ msgid "Date Expires" msgstr "Päivä joloin vanhenee" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Last upload" @@ -15078,7 +15324,7 @@ msgstr "Onko mitään lisätietoa, josta meidän pitäisi tietää?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "Sähköposti" @@ -15095,11 +15341,11 @@ msgstr "Lähetä ”Ei lokissa” -kysely" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Via" @@ -15109,7 +15355,7 @@ msgstr "Ei QSOja löytynyt. Näyttää siltä ettet ollut aktiivinen tänä aika #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Lisää tulostusjonoon" @@ -15519,7 +15765,7 @@ msgstr "Merkitse pyydetyt QSLt lähetetyiksi" msgid "No QSLs to print were found!" msgstr "Tulostettavia QSL-kortteja ei löytynyt!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15661,7 +15907,7 @@ msgstr "Anna teholukema Watteina käyttäen vain numeroita." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Lähetysteho (W)" @@ -15723,9 +15969,9 @@ msgid "Station County" msgstr "Asema kunta" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "SIG-Info" @@ -15773,7 +16019,7 @@ msgstr "Huom: Ei muokattavissa. Näytetään vain tässä." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Muokattu" @@ -15898,16 +16144,16 @@ msgstr "Etsi DXClusterista viimeisin spottaus" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "IOTA ref.nro" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "SOTA ref.nro" @@ -15947,11 +16193,11 @@ msgstr "Esimerkiksi: Q03" msgid "E-mail address of QSO-partner" msgstr "QSO-kumppanin sähköpostiosoite" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Satelliitti" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Satelliitin Mode" @@ -16057,7 +16303,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Alla on luettelo aktiivisista radioista, jotka ovat yhteydessä Wavelogiin." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16065,16 +16311,33 @@ msgstr "" "Jos et ole vielä liittänyt yhtään radiolaitetta, siirry API-sivulle ja luo " "API-avain." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Kerhoaseman ylläpitäjänä voit asettaa oletusradion, joka koskee vain sinua. " +"Näin voit käyttää oletusradiota, joka valitaan automaattisesti " +"sisäänkirjautumisen yhteydessä, mutta voit silti käyttää muita radioita, jos " +"haluat." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Normaalina käyttäjänä voit asettaa itsellesi oletusradion. Näin voit käyttää " +"oletusradiota, joka valitaan automaattisesti sisäänkirjautumisen yhteydessä, " +"mutta voit silti käyttää muita radioita, jos haluat." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Ohjeet %s:n käyttöön löydät wikistä." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Voit selvittää, miten %sradio-funktioita%s käytetään wikissä." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "radiotoiminnot" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Ole hyvä ja odota..." @@ -16417,13 +16680,6 @@ msgstr "AOS-aika" msgid "LOS Time" msgstr "LOS-aika" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Kesto" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Reitti" @@ -16538,6 +16794,11 @@ msgstr "Tallenna kysely" msgid "Stored queries" msgstr "Tallennetut kyselyt" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Ohjeet %s:n käyttöön löydät wikistä." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "Hakusuodattimen toiminnot" @@ -16616,35 +16877,35 @@ msgstr "Merkitse QSL lähetetyksi (Direct)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Merkitse QSL vastaanotetuksi (Bureau)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Merkitse QSL vastaanotetuksi (Direct)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Merkitse QSL-kortti pyydetyksi (Bureau)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Merkitse QSL-kortti pyydetyksi (Direct)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Merkitse QSL-kortti tarpeettomaksi" @@ -17180,7 +17441,7 @@ msgstr "Aseman erityisintressiryhmän info (esim. DA/NW-357)." #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Ongelma? Tarkista %swiki%s." @@ -17396,7 +17657,7 @@ msgid "Link Location" msgstr "Linkitä sijainti" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Asemaprofiilin nimi" @@ -17416,19 +17677,19 @@ msgstr "" "analyysiin asti. Tämä on erityisen hyödyllistä, jos työskentelet useista eri " "sijainneista, jotka kuitenkin kuuluvat samaan DXCC- tai VUCC-alueeseen." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Muokkaa linkitettyjä sijainteja" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Vierailijasivusto" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Aseman sijainnit" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17436,11 +17697,11 @@ msgstr "" "Asemasijainnit määrittävät toiminta­paikat, kuten oman QTH:si, ystävän QTH:n " "tai siirrettävän (portable) aseman." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "Lokikirjojen tapaan asemaprofiili pitää joukon QSOja yhdessä." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17448,7 +17709,7 @@ msgstr "" "Vain yksi asema voi olla aktiivinen kerrallaan. Alla olevassa taulukossa " "tämä näkyy –Aktiivinen asema– -merkinnällä." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17456,23 +17717,23 @@ msgstr "" "Linked-sarake näyttää, onko asemasijainti liitetty yllä valittuun " "aktiiviseen lokikirjaan." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Luo aseman sijainti" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Näytä vain aktiivisen lokikirjan sijainnit" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Näytä kaikki sijainnit" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Näytä sijaintiluettelo" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17480,7 +17741,7 @@ msgstr "" "Varoitus: Sinun täytyy valita aktiivinen asemasijainti. Siirry kohtaan " "Kutsumerkit → Asemasijainnit ja aktivoi jokin niistä." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17488,23 +17749,23 @@ msgstr "" "Viimeaikaisten Wavelogin muutosten vuoksi, sinun täytyy osoittaa QSO:t " "uudelleen asemaprofiileihisi." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Huolto" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Tee uudelleenliitos kohdassa " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Linkitetty" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Suosikki" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "Merkitse / poista merkintä suosikiksi" @@ -18255,51 +18516,55 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Näytä kentät QSO-välilehdellä" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Näytä kartta QSO-ikkunassa" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Käytössä olevat kohteet näytetään QSO-välilehdellä Yleinen-välilehden sijaan." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Online QSL -pyyntöjen (OQRS) asetukset" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Yleinen teksti" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "Tämä teksti on valinnainen ja se voidaan näyttää OQRS-sivun yläosassa." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Ryhmitelty haku" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Pois päältä" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Päälle" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" "Kun tämä on käytössä, kaikki OQRS-aktiiviset asemasijainnit haetaan kerralla." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Näytä asemasijainnin nimi ryhmitellyissä hakutuloksissa" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18307,11 +18572,11 @@ msgstr "" "Jos ryhmitelty haku on käytössä, voit päättää, näytetäänkö asemasijainnin " "nimi tulostaulukossa." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Automaattinen OQRS-yhdistäminen" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18320,69 +18585,69 @@ msgstr "" "järjestelmä yrittää kohdistaa saapuvat pyynnöt automaattisesti olemassa " "oleviin lokeihin." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Automaattinen OQRS-yhdistäminen direkti-pyynnöille" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Kun tämä on käytössä, direkti-pyyntöjen automaattinen OQRS-yhdistäminen " "suoritetaan." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Oletusarvot" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Oletusbandin ja vahvistuksen asetukset" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Oletusbandi" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Oletus-QSL-menetelmät" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Kolmannen osapuolen palvelut" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Käyttäjänimi" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Salasana" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Testikirjautuminen" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc Käyttäjänimi" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc Salasana" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log sähköposti" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Club Log Salasana" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18392,15 +18657,15 @@ msgstr "" "sovelluskohtainen-salasana käyttääksesi Clublogia Wavelogissa. Vieraile " "%sclublog-asetussivullasi%s tehdäksesi niin." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgetit" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "On-Air -widgetti" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18408,31 +18673,31 @@ msgstr "" "Huomaa: Jotta voit käyttää tätä widgettiä, sinulla täytyy olla vähintään " "yksi CAT-radio määritettynä ja toiminnassa." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Kun tämä asetus on käytössä, löydät widgetin kohdasta %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Näytä ”Viimeksi nähty” -aika" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" "Tämä asetus määrittää, näytetäänkö 'Viimeksi nähty' -aika widgetissä vai ei." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Näytä vain viimeksi päivitetty CAT-radio" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Ei, näytä kaikki CAT-radiot" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18443,55 +18708,55 @@ msgstr "" "valita, näytetäänkö kaikki vai vain viimeksi päivitetty TRX. Jos sinulla on " "vain yksi CAT-radio, tällä asetuksella ei ole vaikutusta." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSO-widgetti" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Näytä tarkka QSO-aika" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" "Tämä asetus määrittää, näytetäänkö tarkka QSO-aika QSO-widgetissä vai ei." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Sekalaiset" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "AMSAT Status -lähetys" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Lataa SAT-QSOjen tila palveluun" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodon-palvelin" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "Mastodon-palvelimen URL-osoite" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Mastodon-palvelimesi pää-URL, esim. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Winkeyer-ominaisuudet käytössä" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18500,25 +18765,25 @@ msgstr "" "Winkeyer-tuki Wavelogissa on hyvin kokeellinen. Lue ensin wiki osoitteessa " "%s ennen kuin otat sen käyttöön." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Yksityinen syöteavain" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Katso profiilisi osoitteessa %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Näytä vain workittavissa olevat ylilennot" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18527,7 +18792,7 @@ msgstr "" "perusteella workittavissa olevat ylilennot Tätä varten henkilökohtainen " "syöteavain (Private Feed Key) on oltava määritetty." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Tallenna käyttäjätilin muutokset" @@ -18946,7 +19211,7 @@ msgstr "Näytetään kaikki tähän lokikirjaan liitettyjen asemasijaintien QSOt #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "viimeksi lähetetty" @@ -18974,119 +19239,127 @@ msgstr "Kokonaismatka" msgid "Other Path" msgstr "Muu polku" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"VUCC:n lokaattoriruutukenttään syötettiin vain yksi ruutu, vaikka sen " +"pitäisi sisältää kaksi tai neljä ruutua yhden sijaan." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Antenniatsimuutti" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Antennielevaatio" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL-kortti on lähetty buron kautta" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL-kortti on lähetetty direktinä" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSL-kortti on lähetetty sähköisesti" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL-kortti on lähetetty managerin kautta" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL-kortti on lähetetty" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL-kortti on vastaanotettu buron kautta" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL-kortti on vastaanotettu direktinä" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSL-kortti on vastaanotettu sähköisesti" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL-kortti on vastaanotettu managerin kautta" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL-kortti on vastaanotettu" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Tämä asmea käyttää LoTW-palvelua. Viimeinen yhteyksien lähetys oli" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Tämä QSO vahvistettiin" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Tämä QSO on vahvistettu LoTW:ssa." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Tämä QSO on vahvistettu eQSL:ssä." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Tämä QSO on vahvistettu QRZ.comissa." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Tämä QSO on vahvistettu Clublogissa." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Tämä QSO on vahvistettu DCL:ssä." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Lisää QSOja" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Jaa" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Lisätiedot" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "QSL-kortin ladattu etukuva" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Lähetä QSL-kortin kuva" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "QSL-kortin ladattu takakuva" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Merkitse QSL vastaanotetuksi (Electronic)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL-kuva" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSOa ei löytynyt" @@ -19278,6 +19551,19 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Välimuisti käyttää tällä hetkellä varmuuskopio­sovitinta, koska " +#~ "ensisijainen sovitin ei ole käytettävissä." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Virhe HamQTH-kyselyn istuntoavaimen hankinnassa" + +#~ msgid "radio functions" +#~ msgstr "radiotoiminnot" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Väärin kirjatut CQ-vyöhykkeet" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.mo b/application/locale/fr_FR/LC_MESSAGES/messages.mo index 61167458d..4b5d3d80e 100644 Binary files a/application/locale/fr_FR/LC_MESSAGES/messages.mo and b/application/locale/fr_FR/LC_MESSAGES/messages.mo differ diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 987db975a..7a8e0a298 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -14,11 +14,12 @@ # Stephane Tauziede , 2025. # F5MQU , 2025. # JONCOUX Philippe , 2025, 2026. +# Telectroboy , 2026. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-05 22:37+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-12 17:48+0000\n" "Last-Translator: JONCOUX Philippe \n" "Language-Team: French \n" @@ -27,7 +28,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -80,8 +81,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -92,11 +93,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -127,11 +128,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -152,8 +153,8 @@ msgid "Activated Gridsquare Map" msgstr "Carte des Locator activés" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -315,51 +316,51 @@ msgstr "La clé API %s a été supprimée" msgid "Awards" msgstr "Trophées" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Trophées - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -368,13 +369,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -386,29 +387,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Trophées - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Trophées - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Vue du journal - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -421,43 +422,58 @@ msgstr "Vue du journal - VUCC" msgid "Log View" msgstr "Vue du journal" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " et bande " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "et" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Toutes les bandes (sans SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "bande" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " et satellite " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " et une orbite " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " et une propagation " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " et le mode " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " et " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -478,14 +494,14 @@ msgstr " et " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -500,16 +516,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -523,111 +539,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Toutes Zones contactées)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Comtés US" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Vue du journal - Comtés" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Trophées - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Locators contactés" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Locators confirmés par LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Locators confirmés par Carte QSL papier" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Nombre total de carrés de la grille travaillés" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Trophées - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "Zones ITU" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 sur 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -658,8 +674,7 @@ msgstr "Créer un mode" msgid "Edit Band" msgstr "Modifier la bande" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -692,15 +707,24 @@ msgstr "Données CBR importées" msgid "Callsign statistics" msgstr "Statistiques des indicatifs" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " et bande " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " et satellite " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Testeur d'appels" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "Testeur d'appels CSV" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Testeur d'indicatifs d'appel" @@ -785,28 +809,31 @@ msgid "No user has configured Clublog." msgstr "Aucun utilisateur n'a configuré Clublog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -826,7 +853,7 @@ msgstr "Le calendrier des concours n'est pas accessible. Réessayez plus tard" #: application/controllers/Contesting.php:57 #: application/views/contesting/index.php:12 msgid "Contest Logging" -msgstr "Concours - enregistrement des QSO" +msgstr "Journalisation des compétitions" #: application/controllers/Contesting.php:128 #: application/views/interface_assets/header.php:330 @@ -838,7 +865,7 @@ msgid "Update Contest" msgstr "Mettre à jour le concours" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -856,12 +883,12 @@ msgstr "Modifier les traitements Cron" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "jamais" @@ -937,14 +964,14 @@ msgstr "Importation de la clé DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1192,7 +1219,7 @@ msgstr "Aucun QSO trouvé à télécharger." msgid "KML Export" msgstr "KML - Export" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "Etiquette pour carte QSL" @@ -1200,59 +1227,59 @@ msgstr "Etiquette pour carte QSL" msgid "Create Label Type" msgstr "Créer un type d'étiquette" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Nom de l'étiquette" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Type de papier" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Mesure" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Marge supérieure" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Marge de gauche" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSLs horizontalement" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSLs verticalement" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Espace horizontal" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Espace vertical" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Largeur de l'étiquette" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Hauteur de l'étiquette" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Taille de la police" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Nombre de QSO sur l'étiquette" @@ -1261,22 +1288,22 @@ msgid "Create Paper Type" msgstr "Créer un type de papier" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Nom du papier" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Largeur du papier" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Hauteur du papier" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1284,20 +1311,20 @@ msgstr "" "Votre papier n'a pas pu être enregistré. N'oubliez pas qu'il ne peut pas " "porter le même nom que les types de papier déjà existants." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Vous devez attribuer un paperType à l'étiquette avant d'imprimer" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "" "Vous devez créer une étiquette et la configurer pour qu'elle soit utilisée " "pour l'impression." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1305,31 +1332,31 @@ msgstr "" "Quelque chose s'est mal passé ! L'étiquette n'a pas pu être générée. " "Vérifiez la taille de l’étiquette et la taille de la police." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "0 QSO trouvés à imprimer !" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Modifier l'étiquette" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "L'étiquette a été enregistrée." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "L'étiquette a été supprimée." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Modifier le papier" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Le papier a été enregistrée." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Le papier a été supprimée." @@ -1353,55 +1380,55 @@ msgstr "Journaux des stations" msgid "Logbook" msgstr "Journal de trafic" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1409,95 +1436,97 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "" "Toutes les recherches dans l'annuaire ont échoué ou n'ont donné aucun " "résultat." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1505,7 +1534,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1522,13 +1551,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1567,15 +1596,15 @@ msgstr "" msgid "Mode" msgstr "Mode" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1596,15 +1625,15 @@ msgstr "Mode" msgid "RST (S)" msgstr "RST (E)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1626,7 +1655,7 @@ msgstr "RST (E)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1635,29 +1664,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Pays" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1670,7 +1699,7 @@ msgstr "Pays" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1678,7 +1707,7 @@ msgstr "Pays" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1687,12 +1716,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1701,7 +1730,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1709,7 +1738,7 @@ msgstr "IOTA" msgid "State" msgstr "Etat" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1718,19 +1747,19 @@ msgstr "Etat" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1746,20 +1775,20 @@ msgstr "Etat" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Locator" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1769,9 +1798,9 @@ msgstr "Locator" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1789,18 +1818,18 @@ msgstr "Locator" msgid "Distance" msgstr "Distance" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1808,25 +1837,26 @@ msgstr "Distance" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1837,13 +1867,13 @@ msgstr "Distance" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1882,13 +1912,14 @@ msgstr "Distance" msgid "Band" msgstr "Bande" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1909,13 +1940,13 @@ msgstr "Bande" msgid "Frequency" msgstr "Frequence" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1928,21 +1959,21 @@ msgstr "Frequence" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Opérateur" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1951,14 +1982,14 @@ msgstr "Opérateur" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "DXCC Supprimé" @@ -1966,12 +1997,12 @@ msgstr "DXCC Supprimé" msgid "Advanced logbook" msgstr "Journal avancé" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC mis à jour pour %d QSO(s)." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Carte pour DXCC %s et grille %s." @@ -1986,7 +2017,7 @@ msgstr "Recherche rapide" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1998,11 +2029,11 @@ msgstr "Certificat importé." msgid "Certificate Updated." msgstr "Certificat mis à jour." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certificat supprimé." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2015,7 +2046,7 @@ msgstr "" "depuis l'application tqsl sans mot de passe !%s Pour plus d'informations, " "veuillez consulter %sla page FAQ LoTW%s du wiki Wavelog." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2026,52 +2057,52 @@ msgstr "" "du fichier contient « key-only », il s'agit généralement d'une demande de " "certificat qui n'a pas encore été traitée par LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Erreur générique lors du traitement du certificat dans le fichier %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Erreur générique lors de l'extraction de la clé privée du certificat dans le " "fichier %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "Information ADIF LoTW" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "La connexion à LoTW a échoué." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Échec de la connexion LoTW pour l'utilisateur %s : %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Nom d'utilisateur/mot de passe incorrect" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW actuellement indisponible. Réessayez plus tard." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "Connexion LoTW OK !" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Aucun identifiant LoTW fourni." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "Importation ADIF LoTW" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Vous n'avez pas défini vos identifiants ARRL LoTW !" @@ -2096,7 +2127,7 @@ msgstr "Modifier le mode" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Notes" @@ -2417,19 +2448,19 @@ msgstr "Télécharger cartes QSL" msgid "Print Requested QSLs" msgstr "Imprimer les QSL demandées" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Ajouter QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Vous devez être connecté pour accéder à ce URL." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Transfert d'appel" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Aucun indicatif fourni." @@ -2438,18 +2469,18 @@ msgstr "Aucun indicatif fourni." msgid "Hardware Interfaces" msgstr "Interfaces matérielles" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Horodatage" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2457,61 +2488,65 @@ msgstr "Horodatage" msgid "Options" msgstr "Options" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Paramètres" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Par défaut (cliquez pour libérer)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Définir comme radio par défaut" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "INCONNU" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "dernière mise à jour" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Définir comme radio par défaut" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Par défaut (cliquez pour libérer)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Editer" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2520,22 +2555,41 @@ msgstr "Editer" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Supprimer" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "" +"WebSocket est actuellement le protocole par défaut (cliquez pour libérer)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Définir WebSocket comme option par défaut" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Aucune radio avec interface CAT trouvée." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Vous pouvez toujours définir l'option WebSocket comme option radio par " +"défaut." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Modifier les paramètres CAT" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Radio retirée avec succès" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Export EDI" @@ -2603,7 +2657,7 @@ msgstr "Vous n'avez pas d'emplacements de station. Allez %s pour le créer !" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2614,13 +2668,13 @@ msgstr "ici" msgid "Satellite Timers" msgstr "Minuteries de satellite" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2652,7 +2706,7 @@ msgstr "" #: application/controllers/Simplefle.php:24 #: application/views/interface_assets/header.php:137 msgid "Simple Fast Log Entry" -msgstr "SFLE (entrée rapide du journal)" +msgstr "Saisie de journal simple et rapide" #: application/controllers/Staticmap.php:152 #: application/controllers/Visitor.php:76 @@ -2675,7 +2729,8 @@ msgstr "Modifier l'emplacement de la station : " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2683,7 +2738,7 @@ msgstr "Modifier l'emplacement de la station : " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2696,7 +2751,7 @@ msgid "Duplicate Station Location:" msgstr "Emplacement de la station en double :" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Merci de vérifier le grid locator (%s)" @@ -2759,7 +2814,8 @@ msgstr "Erreur. Le lien est déjà utilisé !" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2767,19 +2823,19 @@ msgid "Disabled" msgstr "Désactivé" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Activer ce journal" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Journal actif" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2790,7 +2846,7 @@ msgstr "" "bord." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Voir la page publique pour le journal de bord : " @@ -2799,7 +2855,7 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Êtes-vous sûr de vouloir supprimer le slug public ?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" @@ -2807,12 +2863,12 @@ msgstr "" "Êtes-vous sûr de vouloir faire du profil de station %s la station active ?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Définir actif" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Station active" @@ -2820,31 +2876,31 @@ msgstr "Station active" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Etes-vous certain de supprimer tous les QSO de cette station ?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Journal vide" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Copier" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2857,7 +2913,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Veuillez en choisir un" @@ -2937,103 +2993,103 @@ msgstr "Préparation des exceptions DXCC : " msgid "Preparing DXCC Prefixes: " msgstr "Préparation des préfixes DXCC : " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "FAIT" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Mise à jour..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" -msgstr "Entités DXCC :" +msgstr "Entités Dxcc :" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" -msgstr "Exceptions DXCC :" +msgstr "Exceptions Dxcc :" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" -msgstr "Préfixes DXCC :" +msgstr "Préfixes Dxcc :" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Mise à jour SCP terminée. Résultat : " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Échec de la mise à jour SCP. Résultat : " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Mise à jour des utilisateurs LoTW terminée. Résultat : " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Mise à jour des utilisateurs LoTW échouée. Résultat : " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Mise à jour DOK terminée. Résultat : " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "La mise à jour DOK a échoué. Résultat : " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Mise à jour SOTA terminée. Résultat : " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "La mise à jour SOTA a échoué. Résultat : " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Mise à jour WWFF terminée. Résultat : " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Mise à jour WWFF échouée. Résultat : " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Mise à jour HAMqsl terminée. Résultats : " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Echec de la mise à jour HAMqsl. Résultats : " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Mise à jour POTA terminée. Résultat : " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "La mise à jour POTA a échoué. Résultat : " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Mise à jour TLE terminée. Résultat : " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "La mise à jour TLE a échoué. Résultat : " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Mise à jour LoTW SAT" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Mise à jour des radioamateurs remarquables" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Mise à jour du fichier Locator VUCC terminée. Résultat : " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Échec de la mise à jour du fichier Locator de VUCC. Résultat : " @@ -3067,61 +3123,61 @@ msgstr "Paramètre invalide !" msgid "Add User" msgstr "Ajouter un utilisateur" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Nom d'utilisateur %s déjà utilisé !" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-mail %s déjà utilisé !" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Mot de passe invalide !" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Utilisateur %s ajouté !" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Utilisateurs" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Modifier l'utilisateur" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "L'utilisateur %s a modifié" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profile" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Supprimer l'utilisateur" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Utilisateur supprimé" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Impossible de supprimer l'utilisateur !" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Erreur de base de données :" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3129,29 +3185,29 @@ msgstr "" "Félicitations ! Wavelog a été installé avec succès. Vous pouvez maintenant " "vous connecter pour la première fois." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Ceci n'est pas autorisé !" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "La connexion a échoué. Essayer à nouveau." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Se connecter" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Vous ne pouvez pas vous connecter directement à une station de club. " "Utilisez plutôt votre compte personnel." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3159,7 +3215,7 @@ msgstr "" "Votre compte est verrouillé en raison de trop nombreuses tentatives de " "connexion échouées. Veuillez réinitialiser votre mot de passe." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3170,52 +3226,52 @@ msgstr "" "un administrateur. Seuls les administrateurs sont actuellement autorisés à " "se connecter." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Identifiant ou mot de passe incorrect!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "L'utilisateur %s s'est déconnecté." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Nom de la station" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Indicatif de station" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "Station DXCC" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Zone CQ de la station" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Zone ITU de la station" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" -msgstr "QTH Locator de station" +msgstr "Localisateur de stations" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3224,37 +3280,37 @@ msgstr "" "Station créée avec succès ! Bienvenue sur Wavelog ! Pour terminer la " "configuration de votre station, cliquez %sici%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" "La configuration de la station a échoué ! Veuillez configurer votre station " "manuellement." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "La réinitialisation du mot de passe est désactivée sur la démo !" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Mot de passe oublié" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "Les paramètres de messagerie sont incorrects." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Réinitialisation du mot de passe traitée." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Mot de passe réinitialisé" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3262,7 +3318,7 @@ msgstr "" "Impossible d'afficher le compte de cet utilisateur. Essayez avec un " "utilisateur différent de \"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3270,7 +3326,7 @@ msgstr "" "Impossible d'attribuer un compte à cet email. Essayez une adresse autre que " "\"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3279,7 +3335,7 @@ msgstr "" "Vous ne pouvez pas actuellement usurper l'identité d'un autre utilisateur. " "Vous devez définir %s sur %s dans votre config.php !" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3289,15 +3345,15 @@ msgstr "" "Veuillez d'abord changer la clé de chiffrement dans votre fichier config." "php !" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Hachage invalide" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "Le hachage d'usurpation est trop ancien. Veuillez réessayer." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3305,15 +3361,15 @@ msgstr "" "Vous ne pouvez pas vous faire passer pour un autre utilisateur tant que vous " "n'êtes pas connecté en tant qu'utilisateur source" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Il y a eu un problème avec votre session. Veuillez réessayer." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "L'utilisateur demandé à imiter n'existe pas" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3321,13 +3377,13 @@ msgstr "" "Impossible de déterminer le niveau de permission correct pour la station de " "club. Réessayez après vous être reconnecté." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Oups.. Quelque chose s'est mal passé. Essaie de te reconnecter." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3335,7 +3391,7 @@ msgstr "" "La capacité de revenir rapidement a été désactivée après l'expiration du " "hachage de sécurité. Veuillez vous reconnecter." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3349,7 +3405,7 @@ msgid "Satellite Gridsquare Map" msgstr "Carte des carrés de grille satellite" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Recherche publique" @@ -3401,14 +3457,20 @@ msgstr "Plusieurs utilisateurs trouvés par slug" msgid "Gridsquare Zone finder" msgstr "Localisateur de zones de la grille" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "La recherche n'est pas configurée. Veuillez vérifier la configuration." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "" +"Erreur lors de l'obtention d'une clé de session pour l'annuaire. Erreur : %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "Erreur QRZCQ" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Erreur lors de l'obtention d'une clé de session pour la requête HamQTH" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3570,27 +3632,27 @@ msgstr "HRDlog : Aucun profil de station avec les identifiants HRDlog trouvé." msgid "Station not accessible" msgstr "Station inaccessible" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "ID de station non autorisé" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Aucun indicatif n'a été donné" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "Le DXCC doit être un nombre" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicatif d'appel de station incorrect %s lors de l'importation du QSO avec " "%s pour %s : IGNORÉ" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3598,11 +3660,11 @@ msgstr "" "Vous avez tenté d'importer un QSO sans date valide. Ce QSO n'a pas pu être " "importé. Il est invalide" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO en" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3610,7 +3672,7 @@ msgstr "" "Vous avez essayé d'importer un QSO sans indicatif donné. Ce QSO n'a pas été " "importé. Il est invalide" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3619,64 +3681,64 @@ msgstr "" "QSO sur %s : Vous avez essayé d'importer un QSO sans bande spécifiée. Ce QSO " "n'a pas été importé. Il est invalide" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "la date de réception de la QSL est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "la date de la QSL est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "la clublog_qso_upload_date est invalide (AAAAMMJJ)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dupliquer pour" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "pas de correspondance pour le QSO" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmé par LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "confirmé par le manager de l'Award" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "confirmé par recoupement des données DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "confirmation en attente" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "non confirmé" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "inconnu" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "Les références du POTA sont déjà dans le log" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO mis à jour" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3690,7 +3752,7 @@ msgstr "QSO mis à jour" msgid "Bearing" msgstr "Azimut" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "" "La table VuccGrids est vide. Veuillez d'abord importer les données des " @@ -3829,42 +3891,40 @@ msgstr "Différence" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3893,33 +3953,33 @@ msgstr "Différence" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3940,7 +4000,7 @@ msgstr "Différence" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Tout" @@ -3984,12 +4044,12 @@ msgstr "Période" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Propagation" @@ -4005,7 +4065,7 @@ msgstr "Tous sauf SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Rien/Vide" @@ -4015,11 +4075,11 @@ msgstr "Rien/Vide" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Aircraft Scatter" @@ -4029,11 +4089,11 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurores" @@ -4043,11 +4103,11 @@ msgstr "Aurores" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurore-E" @@ -4057,11 +4117,11 @@ msgstr "Aurore-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Rétrodiffusion" @@ -4071,11 +4131,11 @@ msgstr "Rétrodiffusion" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4085,11 +4145,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Terre-Lune-Terre" @@ -4099,11 +4159,11 @@ msgstr "Terre-Lune-Terre" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadique E" @@ -4113,11 +4173,11 @@ msgstr "Sporadique E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Irrégularités alignées au champ" @@ -4127,11 +4187,11 @@ msgstr "Irrégularités alignées au champ" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2 Réflexion" @@ -4141,11 +4201,11 @@ msgstr "F2 Réflexion" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Assisté par Internet" @@ -4155,11 +4215,11 @@ msgstr "Assisté par Internet" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Réflexion Ionosphérique" @@ -4169,11 +4229,11 @@ msgstr "Réflexion Ionosphérique" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4183,11 +4243,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Réflexions météorites" @@ -4197,11 +4257,11 @@ msgstr "Réflexions météorites" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Relais ou transpondeur terrestre ou atmosphérique" @@ -4211,11 +4271,11 @@ msgstr "Relais ou transpondeur terrestre ou atmosphérique" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Rain scatter" @@ -4225,11 +4285,11 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satellite" @@ -4239,11 +4299,11 @@ msgstr "Satellite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Transéquatoriale" @@ -4253,11 +4313,11 @@ msgstr "Transéquatoriale" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Tropospheric ducting" @@ -4266,18 +4326,18 @@ msgstr "Tropospheric ducting" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4289,21 +4349,21 @@ msgstr "Tropospheric ducting" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Afficher" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4314,7 +4374,7 @@ msgstr "Afficher" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4323,19 +4383,25 @@ msgstr "Afficher" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satellite" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4355,22 +4421,22 @@ msgstr "Confirmation" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4416,11 +4482,11 @@ msgstr "Nbre d'activation minimum" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4429,11 +4495,10 @@ msgstr "Nbre d'activation minimum" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4453,7 +4518,8 @@ msgstr "Rien trouvé !" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4469,12 +4535,13 @@ msgstr "Rien trouvé !" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4498,7 +4565,7 @@ msgstr "Rien trouvé !" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Indicatif" @@ -4509,12 +4576,12 @@ msgstr "Nombre" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Afficher les QSOs" @@ -4581,7 +4648,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4605,11 +4672,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4623,12 +4690,12 @@ msgstr "Date" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4643,7 +4710,7 @@ msgstr "Date" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4656,7 +4723,7 @@ msgstr "Heure" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4671,7 +4738,7 @@ msgstr "Heure" #: application/views/visitor/index.php:156 #: application/views/widgets/qsos.php:17 msgid "Call" -msgstr "QRZ" +msgstr "Appel" #: application/views/adif/dcl_success.php:34 msgid "DOK in Log" @@ -4711,20 +4778,20 @@ msgstr "Important" msgid "Log Files must have the file type *.adi" msgstr "Les fichiers de Log doivent avoir l'extention : *.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "La taille maximum d'un fichier à télécharger est " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4786,8 +4853,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "DANGER" @@ -5187,8 +5254,8 @@ msgstr "REF POTA en ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Statut" @@ -5207,7 +5274,7 @@ msgstr "Nom simple pour décrire l'utilisation de cette API." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5273,7 +5340,7 @@ msgstr "L'URL de l'API pour cette instance de Wavelog est" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5327,7 +5394,7 @@ msgstr "Autorisations" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5372,7 +5439,7 @@ msgstr "Créer une clé de lecture seulement" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5381,8 +5448,8 @@ msgstr "Créer une clé de lecture seulement" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5399,14 +5466,14 @@ msgstr "Créer une clé de lecture seulement" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5462,9 +5529,9 @@ msgid "Filtering on" msgstr "Filtré sur" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Comté" @@ -5519,19 +5586,14 @@ msgid "Counties Confirmed" msgstr "Comtés Confirmés" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5553,22 +5615,23 @@ msgid "Total" msgstr "Total" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5623,10 +5686,12 @@ msgid "Awards - CQ WAZ" msgstr "Trophée - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtres" @@ -5636,92 +5701,114 @@ msgid "Show CQ Zone Map" msgstr "Voir la carte" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Préréglages de date" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Aujourd'hui" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Hier" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "7 derniers jours" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "30 derniers jours" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Ce mois-ci" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Mois dernier" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Cette année" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "L'année dernière" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Effacer" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5729,7 +5816,9 @@ msgid "Date from" msgstr "Dater de" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5737,11 +5826,10 @@ msgid "Date to" msgstr "Date à" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5751,9 +5839,8 @@ msgid "Confirmed" msgstr "Confirmés" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5763,67 +5850,64 @@ msgstr "Réalisés" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Voir les 'réalisés'" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Voir les 'confirmés'" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Voir les 'non réalisés'" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5831,95 +5915,161 @@ msgstr "Afficher QSO avec type QSL" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Carte QSL" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Table" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Carte" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Légende :" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL - Carte Papier" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z) - \"confirmation\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) Contacté" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Résumé" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Total (hors SAT)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Total 'réalisés'" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5984,15 +6134,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Travaillé / Confirmé" @@ -6001,11 +6151,9 @@ msgstr "Travaillé / Confirmé" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Chaque bande" @@ -6013,23 +6161,20 @@ msgstr "Chaque bande" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Réinitialiser" @@ -6087,161 +6232,127 @@ msgstr "" "Champs pris en compte pour ce trophée : DXCC (doit être valide et figurer " "dans la liste DXCC-ADIF-Spec" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Afficher la carte DXCC" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Inclure supprimé" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antarctique" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Afrique" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Asie" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europe" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Amérique du Nord" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Amérique du Sud" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Océanie" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Toutes les bandes (sans SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Légende :" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL - Carte Papier" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z) - \"confirmation\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) Contacté" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "Nom DXCC" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Préfix" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" "Aucun résultat ne correspond à vos critères de recherche. Veuillez réessayer." @@ -6515,23 +6626,23 @@ msgstr "Afficher la carte IOTA" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Nom" @@ -6540,14 +6651,14 @@ msgid "Deleted" msgstr "Supprimé" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6557,7 +6668,7 @@ msgstr "Supprimé" msgid "ITU Zone" msgstr "Zone ITU" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6569,21 +6680,21 @@ msgstr "" "moins 70 des 75 zones de diffusion définies par l'Union Internationale des " "Télécommunications (UIT)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Vous pouvez trouver plus d'informations sur le site web de %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Champs requis pour ce trophée : ITU-Zone (ADIF : ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Récompenses - ITU Zones" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Afficher la carte ITU" @@ -6640,7 +6751,7 @@ msgstr "Résultats" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Ville" @@ -6649,8 +6760,10 @@ msgstr "Ville" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6786,7 +6899,7 @@ msgstr "Voïvodie" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Code" @@ -6802,7 +6915,7 @@ msgstr "TÉLÉPHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6840,8 +6953,8 @@ msgid "Band Categories" msgstr "Catégories de groupes" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "État fixe" @@ -6916,8 +7029,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "Référence POTA" @@ -6928,6 +7041,7 @@ msgstr "Province" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Survoler une province" @@ -6995,7 +7109,7 @@ msgid "Reference" msgstr "Référence" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -7063,7 +7177,7 @@ msgstr "" "de grille travaillés et confirmés sur une bande souhaitée." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "" @@ -7149,25 +7263,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Diplome - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Continent" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "Aucun QSOS correspondant aux critères de ce prix n'a été trouvé !" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "Trophée WAE" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7178,7 +7297,7 @@ msgstr "" "et sur les îles répertoriées dans la liste des pays WAE sur différentes " "bandes." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7188,11 +7307,11 @@ msgstr "" "modes numériques et mixtes. Il existe en cinq classes : WAE III, WAE II, WAE " "I, WAE TOP et WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Champs requis pour ce trophée : Région, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "Nom WAE" @@ -7243,7 +7362,7 @@ msgid "Show WAJA Map" msgstr "Afficher la carte WAJA" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Préfecture" @@ -7311,15 +7430,20 @@ msgid "Show WAP Map" msgstr "Afficher la carte WAP" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Province" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Province" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Toutes les provinces de la Chine contactées" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7332,7 +7456,7 @@ msgstr "" "régions administratives spéciales de la Chine, favorisant une compréhension " "plus approfondie de ce pays." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7340,7 +7464,7 @@ msgstr "" "Le trophée peut être gagné grâce à une accumulation de contacts à long terme " "ou obtenu en une seule fois lors du concours annuel WAPC." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7350,6 +7474,10 @@ msgstr "" "Chine/318, HongKong/321, Macao/152, Taiwan/386, l'ile de Pratas/505 ou " "Scarborough Reef/506) et Etat valide (ADIF : DXCC et ETAT)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Afficher la carte WAPC" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7467,8 +7595,8 @@ msgstr "Champs requis pour ce trophée : WWFF (ADIF : WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "Référence WWFF" @@ -7524,219 +7652,219 @@ msgstr "" "La sauvegarde de vos notes a été effectuée avec succès. Le résultat se " "trouve à" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Cliquez sur pour préparer la journalisation." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "pour régler la fréquence" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Fenêtre contextuelle bloquée" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "La fenêtre contextuelle a été bloquée ! Veuillez autoriser les fenêtres " "contextuelles pour ce site de manière permanente." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Connexion CAT requise" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Activez la connexion CAT pour régler la radio" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Filtres transparents" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Filtre de bande préservé (verrouillage de bande actif)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio réglée sur Aucune - Connexion CAT désactivée" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio réglée" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Accordé à" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Échec du réglage" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Impossible de régler la radio sur la fréquence" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO préparé" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "envoyé au formulaire de connexion" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "Connexion CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Cliquez pour activer la connexion CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "Radio CAT suiveuse - Cliquez pour désactiver" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Cliquez pour activer le verrouillage de bande (connexion CAT requise)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Verrouillage de band activé - Cliquez pour désactiver" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "verrouillage de bande" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "" "Verrouillage de bande activé - le filtre de bande suivra la bande radio" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Filtre de bande modifié en" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "par émetteur-récepteur" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Filtre de fréquence réglé sur" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Fréquences hors bandes connues - affichage de toutes les bandes" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "En attente des données radio..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Mes favoris" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Impossible de charger les favoris" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Modes appliqués. Filtre de bande conservé (connexion CAT active)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Utilisez vos groupes et modes préférés" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Mes sous-modes" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Filtre de sous-mode activé" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Filtre de sous-mode désactivé - tout affiché" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Sous-modes requis" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Configurer dans les paramètres utilisateur - Modes" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Aucun sous-mode configuré - configurez-les dans Paramètres utilisateur > " "Modes" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Aucun sous-mode activé dans les paramètres - affichage de tous les spots" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Désactivé - aucun sous-mode n'est activé pour ce mode dans les paramètres " "utilisateur" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Activer/désactiver le filtre CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Activer/désactiver le filtre du mode numérique" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Activer/désactiver le filtre Phonie" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favoris" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Enregistrer les filtres actuels..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Saisissez un nom pour ce préréglage de filtre:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Préréglage de filtre enregistré" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Préréglage de filtre chargé" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Préréglage de filtre supprimé" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Êtes-vous sûr de vouloir supprimer ce filtre prédéfini ?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Aucun préréglage de filtre enregistré" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7744,64 +7872,64 @@ msgstr "" "Le nombre maximal de 20 préréglages de filtres a été atteint. Veuillez en " "supprimer certains avant d'en ajouter de nouveaux." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Chargement des données depuis le cluster DX" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Dernière récupération pour" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Âge maximum" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Récupéré à" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Prochaine mise à jour dans" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minutes" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "secondes" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "taches récupérées" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "montrer" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "afficher tout" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Filtres actifs" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Récupération..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Non réalisés" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Contacté, non Confirmé" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7809,269 +7937,272 @@ msgstr "Contacté, non Confirmé" msgid "LoTW User" msgstr "Utilisateur LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nouvel Indicatif" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nouveau Continent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nouveau pays" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "J'ai travaillé avant" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "J'ai travaillé sur %s avec %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "repéré" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Tache fraîche (moins de 5 minutes)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Concours" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Cliquez pour afficher" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "sur QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Cliquez pour afficher %s sur QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Voir les détails pour" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "J'ai travaillé sur" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Je n'ai pas travaillé sur ce groupe" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "Utilisateur de LoTW. Dernier téléchargement il y a %d jours" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Cliquez pour afficher sur POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Cliquez pour consulter sur SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Cliquez pour consulter sur cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Cliquez ici pour consulter le site IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Voir les détails pour le continent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Voir les détails pour le continent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Voir les détails pour la zone CQ" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Voir les détails pour la zone CQ %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "dans" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Quitter le mode plein écran" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Basculer vers le plein écran" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Le filtrage de bande est contrôlé par votre radio lorsque la connexion CAT " "est activée" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Cliquez pour préparer la journalisation" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(nécessite une connexion CAT)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Commentaire" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Âge" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Entrant" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Sortant" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "Spots" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "place" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "observateurs" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "S'il vous plaît, attendez" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Veuillez patienter %s secondes avant d'envoyer un autre indicatif d'appel au " "formulaire QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Zones de chargement..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Aucun spot trouvé" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Aucune donnée disponible" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Aucun spot trouvé pour les filtres sélectionnés" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Erreur lors du chargement des spots. Veuillez réessayer." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Afficher tous les modes" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Afficher tous les emplacements" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Observateurs de tirage" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Étendre la carte" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Spectacle jour/nuit" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Votre QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Retour à l'accueil" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Aide du cluster DX" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Mode compact - Afficher/Masquer le menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX :" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8079,318 +8210,283 @@ msgstr "TRX :" msgid "None" msgstr "Aucun" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "En direct - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Vérification - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de :" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Sélectionnez tous les continents" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Monde" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Activer/désactiver le filtre pour le continent Afrique" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Activer/désactiver le filtre du continent antarctique" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Activer/désactiver le filtre pour le continent Asie" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Activer/désactiver le filtre pour le continent Europe" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Activer/désactiver le filtre pour le continent Amérique du Nord" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Activer/désactiver le filtre du continent Océanie" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Activer/désactiver le filtre pour le continent Amérique du Sud" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Filtres avancés" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Prise" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "et cliquez pour sélectionner plusieurs options" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Statut DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phonie" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Drapeaux obligatoires" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Indicatif d'appel utilisé" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "Dx Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Drapeaux supplémentaires" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Frais (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spots de Continent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Station continentale repérée" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Appliquer les filtres" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Filtrer les favoris" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Effacer tous les filtres sauf De Continent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Activer/désactiver le filtre de bande 160 m" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Activer/désactiver le filtre de bande 80m" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Activer/désactiver le filtre de bande 60m" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Activer/désactiver le filtre de bande 40m" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Activer/désactiver le filtre de bande 30m" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Activer/désactiver le filtre de bande 20m" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Activer/désactiver le filtre de bande 17m" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Activer/désactiver le filtre de bande 15m" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Activer/désactiver le filtre de bande 12m" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Activer/désactiver le filtre de bande 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Activer/désactiver le filtre de bande 6 m" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Activer/désactiver le filtre des bandes VHF" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Activer/désactiver le filtre des bandes UHF" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Activer/désactiver le filtre des bandes SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Chargement des sous-modes..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Activer/désactiver le filtre utilisateur LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "utilisateurs de LoTW" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" "Activer/désactiver le filtre DX Spot (continent observé ≠ continent de " "l'observateur)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Activer/désactiver le filtre Nouveaux continents" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nouveaux continents" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Activer/désactiver le filtre Nouvelles entités" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nouvelles entités" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Activer/désactiver le filtre des nouveaux indicatifs d'appel" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nouveaux indicatifs d'appel" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Activer/désactiver le filtre des taches récentes (moins de 5 minutes)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Frais" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Activer/désactiver le filtre de concours" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Activer/désactiver Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Référence" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Ouvrir la vue de la carte DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "Carte DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Recherchez des endroits..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Colonne de recherche" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Remarque : La carte indique l'emplacement des entités DXCC, et non " -"l'emplacement précis des points d'intérêt" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Toutes les colonnes" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Age in minutes" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Informations sur le spot" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Sous-mode" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Spotted Callsign" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "Station DX" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Flag" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC Entity" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entity" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Spotter Callsign" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter Continent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotter CQ Zone" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Date du dernier QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Special" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Special Flags" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8398,6 +8494,62 @@ msgstr "Special Flags" msgid "Message" msgstr "Message" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter Continent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotter CQ Zone" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Recherchez des endroits..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Remarque : La carte indique l'emplacement des entités DXCC, et non " +"l'emplacement précis des points d'intérêt" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Age in minutes" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Spotted Callsign" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Flag" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC Entity" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spotter Callsign" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Date du dernier QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Special" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Special Flags" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Veuillez saisir des chiffres valides pour la fréquence" @@ -8677,7 +8829,7 @@ msgstr "" "la référence IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8795,19 +8947,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8841,15 +8993,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Oui" @@ -8864,19 +9018,19 @@ msgstr "Oui" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8910,16 +9064,17 @@ msgstr "Oui" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Non" @@ -8950,7 +9105,7 @@ msgid "First QSO" msgstr "Premier QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Dernier QSO" @@ -9063,8 +9218,8 @@ msgid "Callsign DXCC identification" msgstr "Identification de l'indicatif d'appel DXCC" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Indicatif : " @@ -9362,8 +9517,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9676,7 +9831,7 @@ msgstr "Nom ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9712,18 +9867,16 @@ msgstr "DANGER !" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " -msgstr "" -"ATTENTION ! Etes vous certain de vouloir supprimer le " -"concours : " +msgstr "Attention ! Êtes-vous sûr de vouloir supprimer le concours suivant : " #: application/views/contesting/add.php:56 msgid "Warning! Are you sure you want to activate all contests?" -msgstr "ATTENTION ! Etes vous certain de vouloir activer tous les concours ?" +msgstr "Attention ! Etes vous certain de vouloir activer tous les concours ?" #: application/views/contesting/add.php:57 msgid "Warning! Are you sure you want to deactivate all contests?" msgstr "" -"ATTENTION ! Etes vous certain de vouloir désactiver tous les concours ?" +"Attention ! Etes vous certain de vouloir désactiver tous les concours ?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 @@ -9749,7 +9902,7 @@ msgstr "Créer" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Nom du concours" @@ -9786,15 +9939,15 @@ msgstr "Echange" #: application/views/contesting/index.php:27 msgid "Serial" -msgstr "N° QSO" +msgstr "En série" #: application/views/contesting/index.php:28 msgid "Serial + Exchange" -msgstr "N° QSO + Echange" +msgstr "Série + Échange" #: application/views/contesting/index.php:29 msgid "Serial + Gridsquare" -msgstr "N° QSO + Locator" +msgstr "Série + Grille" #: application/views/contesting/index.php:30 msgid "Serial + Gridsquare + Exchange" @@ -9829,8 +9982,8 @@ msgid "Locator" msgstr "Locator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9881,7 +10034,7 @@ msgstr "Série" #: application/views/contesting/index.php:270 #: application/views/qso/edit_ajax.php:703 msgid "Serial (S)" -msgstr "N° QSO (S)" +msgstr "Série (S)" #: application/views/contesting/index.php:192 msgid "Gridsquare (S)" @@ -9896,7 +10049,7 @@ msgstr "Ech (S)" #: application/views/contesting/index.php:271 #: application/views/qso/edit_ajax.php:698 msgid "Serial (R)" -msgstr "N° QSO (R)" +msgstr "Série (R)" #: application/views/contesting/index.php:216 msgid "Gridsquare (R)" @@ -9945,11 +10098,11 @@ msgstr "Identifier" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Activé" @@ -10044,7 +10197,8 @@ msgid "Cron List" msgstr "Liste Cron" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "Identité" @@ -10190,7 +10344,7 @@ msgstr "" #: application/views/dashboard/index.php:193 msgid "Attention: you need to set an active station location." -msgstr "ATTENTION : vous devez activer le profil d'une station." +msgstr "Attention : vous devez définir un emplacement de station actif." #: application/views/dashboard/index.php:200 msgid "" @@ -10247,9 +10401,9 @@ msgstr "Demandés" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10271,10 +10425,10 @@ msgstr "Demandés" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Envoyées" @@ -10284,9 +10438,9 @@ msgstr "Envoyées" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10307,10 +10461,10 @@ msgstr "Envoyées" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Reçues" @@ -10318,17 +10472,17 @@ msgstr "Reçues" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10351,11 +10505,11 @@ msgstr "Reçues" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Demandées" @@ -10381,6 +10535,38 @@ msgstr "Dernière mis à jour à %s." msgid "Data provided by HAMqsl." msgstr "Données fournies par HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "Indice K : Activité géomagnétique planétaire (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "Indice A : Indice d'activité géomagnétique quotidienne" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Indice de flux solaire" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Vitesse du vent solaire (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Rapport signal/bruit" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Niveau de flux solaire de rayons X" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Nombre de taches solaires" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Niveau d'activité aurorale (Kp borealis)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Nombre de QSO pour ce jour de la semaine" @@ -10460,7 +10646,7 @@ msgstr "Date début" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Date fin" @@ -10600,7 +10786,7 @@ msgstr "" #: application/views/lotw_views/upload_cert.php:8 #: application/views/lotw_views/upload_cert.php:34 msgid "Upload Logbook of the World .p12 Certificate" -msgstr "Envoyer certificat .p12 de LoTW" +msgstr "Certificat de téléchargement du Journal de bord du monde .p12" #: application/views/dcl_views/upload_cert.php:19 #: application/views/lotw_views/upload_cert.php:19 @@ -10799,7 +10985,8 @@ msgstr "Succès" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Echoué" @@ -10880,109 +11067,130 @@ msgstr "Modules" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Installé" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Non installé" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "Informations sur le cache" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "Configuration actuelle" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "Adaptateur principal" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "Adaptateur de sauvegarde" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "Chemin d'accès pour l'adaptateur %s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "Préfixe clé" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" -"Le cache utilise actuellement l'adaptateur de secours car l'adaptateur " -"principal est indisponible." - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "Le cache fonctionne correctement. Tout est OK !" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "Détails du cache" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "Taille totale" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "Nombre de clés" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "Le cache fonctionne correctement. Tout est ok !" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"Le cache utilise actuellement l'adaptateur de secours car l'adaptateur " +"principal est indisponible. Vérifiez les permissions de vos fichiers, vos " +"extensions PHP et/ou votre connexion réseau aux services (si vous utilisez " +"redis/memcached)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"Le cache ne fonctionne pas ! Le système utilise actuellement un adaptateur " +"%s. Vérifiez les permissions de vos fichiers, vos extensions PHP et/ou votre " +"connexion réseau aux services (si vous utilisez redis/memcached). Vous " +"pouvez continuer à utiliser Wavelog, mais aucune valeur ne sera mise en " +"cache (ce qui est problématique)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "Adaptateurs disponibles" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "vider le cache" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Informations Git" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Autre direction" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "Non disponible" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Engager" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Etiquette" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Dernière récupération" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Rechercher une nouvelle version" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10990,77 +11198,77 @@ msgstr "Rechercher une nouvelle version" msgid "Update now" msgstr "Mettre à jour maintenant" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Date de téléchargement du fichier" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Fichier" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Dernière mise à jour" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "Mise à jour du DXCC depuis Club Log" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Mettre à jour" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Téléchargement du fichier DOK" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "Téléchargement des utilisateurs de LoTW" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "Téléchargement du fichier POTA" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "Téléchargement du fichier SCP" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "Téléchargement du fichier SOTA" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "Téléchargement du fichier WWFF" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "Mise à jour TLE" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Mise à jour Hams Of Note" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "Locators VUCC" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Maintenance de la base de données des QSO" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -11070,144 +11278,144 @@ msgstr[0] "" msgstr[1] "" "Ls base de données contient %d QSO sans profil de station (emplacement)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Veuillez marquer les QSO et les réaffecter à un emplacement de station " "existant :" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Emplacement de la cible" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Réaffecter" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Chaque QSO de votre base de données est attribué à un profil de station " "(emplacement)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Tout va bien" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albanais" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Arménien" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bosniaque" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Bulgare" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Chinois (simplifié)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Croate" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Tchèque" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Néerlandais" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Anglais" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estonien" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Finlandais" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Français" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Allemand" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Grecque" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Hongrois" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Italien" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japonais" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Letton" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Lituanien" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Monténégrin" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polonais" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portugais" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Russe" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Serbe" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Slovaque" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Slovène" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Espagnol" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Suédois" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turque" @@ -11270,7 +11478,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Seuls les QSO avec un Locator défini seront exportés !" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "Info QSL" @@ -11520,7 +11728,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "Message QSL" @@ -11662,31 +11870,32 @@ msgid "QSL Date" msgstr "Date de la QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Voir" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Vide" @@ -11773,7 +11982,7 @@ msgstr "Les QSO sont marqués comme exportés vers le carnet de trafic HRDLog." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Editer QSO" @@ -12174,76 +12383,76 @@ msgstr "Informations sur la version" msgid "Failed to load the modal. Please try again." msgstr "Échec du chargement de la fenêtre modale. Veuillez réessayer." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Description :" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Description de la requête" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Votre requête a été enregistrée !" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Modifier les requêtes" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Requêtes stockées :" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Exécuter la requête" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Requêtes stockées" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Vous devez faire une requête avant de rechercher !" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Exporter vers ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Ouvrir dans le journal de trafic avancé" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Attention ! Voulez-vous vraiment supprimer cette requête enregistrée ?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "La requête enregistrée a été supprimée !" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "La requête enregistrée n'a pas pu être supprimée. Veuillez réessayer !" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "La description de la requête a été mise à jour !" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Une erreur s'est produite lors de la sauvegarde. Veuillez réessayer !" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12253,15 +12462,15 @@ msgstr "" "plus valide. Vérifiez quel DXCC correspond à cet localisation. Si vous en " "êtes sûr, ignorez cet avertissement." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Quantité : " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Locator : " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12269,57 +12478,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locator" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" +"La localisation a échoué. Veuillez consulter la console de votre navigateur." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "Grilles des Locators" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Total" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "Carte QSL pour " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Attention ! Voulez-vous vraiment supprimer cette carte QSL ?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Carte eQSL" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL pour " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "Fichier image de la QSL" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Recto de la carte QSL :" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Verso de la carte QSL :" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Ajouter des QSO supplémentaires à une carte QSL" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Une erreur s'est produite. Veuillez réessayer !" @@ -12473,7 +12687,7 @@ msgid "Satellite Pass" msgstr "Passage de Satellite" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Administrateur" @@ -12498,7 +12712,7 @@ msgid "Log" msgstr "Log" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12595,7 +12809,7 @@ msgid "Gridsquare Zone checker" msgstr "Vérificateur de zone Gridsquare" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Aide" @@ -12732,7 +12946,7 @@ msgid "Total height of one label" msgstr "Hauteur totale d'une étiquette" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Taille de la police" @@ -12792,14 +13006,14 @@ msgstr "Orientation du papier" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Paysage" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Portrait" @@ -12818,47 +13032,52 @@ msgstr "" "quelque chose de significatif, peut-être le style de l'étiquette." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Marquer la QSL comme imprimée" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Imprimer" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Options d'impression d'étiquettes" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Créer un nouveau type d'étiquette" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Créer un nouveau type de papier" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Types de papier" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Largeur" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Hauteur" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Utilisé par les étiquettes" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Orientation" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Types d'étiquettes" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12866,56 +13085,66 @@ msgstr "Types d'étiquettes" msgid "QSOs" msgstr "Nb QSOs /Bandes /Modes" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Utiliser pour imprimer" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Aucun papier sélectionné" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Étiquettes de cartes QSL en attente" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSOs en attente" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Voir les QSOs" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Inclure mon appel ?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Ajouter le Locator ?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Inclure une référence ? (SIG, SOTA, POTA, IOTA, WWFF ; si compatible à votre " "localisation)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Inclure Via (si rempli) ?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Inclure QSLMSG (si rempli) ?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Inclure message TNX (si rempli) ?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Commencer à imprimer à ?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Saisissez la position de départ pour l'impression des étiquettes" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -13081,21 +13310,21 @@ msgstr "Zone CQ DXCC" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Station" @@ -13180,95 +13409,99 @@ msgstr "" "Avertissement. Cet outil peut être dangereux pour vos données et ne doit " "être utilisé que si vous savez ce que vous faites." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Emplacements de toutes les stations" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "" "Vérifiez tous les QSO dans le carnet de trafic pour les zones CQ incorrectes." -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Utilisez Wavelog pour déterminer la zone CQ pour tous les QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Vérifier" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "" "Vérifiez tous les QSO dans le carnet de trafic pour les zones UIT incorrectes" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "" "Utilisez Wavelog pour déterminer la zone UIT pour toutes les liaisons radio " "(QSO)." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Vérifier les cases de la grille" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Vérifiez les cases de la grille qui ne correspondent pas au DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Réparer le continent" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "" "Mettre à jour les informations manquantes ou incorrectes sur les continents" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Mettre à jour les informations manquantes sur l'État/la province" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Mise à jour des distances" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Calculer et mettre à jour les informations de distance pour les QSO" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "" "Vérifiez tous les QSO dans le carnet de trafic pour les DXCC incorrects" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Utilisez Wavelog pour déterminer le DXCC de tous les QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Recherchez les QSO dont la grille est manquante dans l'annuaire" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "" "Utilisez la recherche dans l'annuaire pour définir la case de la grille" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Ceci est limité à 150 indicatifs d'appel par exécution !" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Vérifier IOTA par rapport à DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Utilisez Wavelog pour vérifier la conformité IOTA avec DXCC" @@ -13313,10 +13546,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Région" @@ -13385,9 +13618,9 @@ msgid "QSL Sent Method" msgstr "Méthode d'envoi des QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL via" @@ -13411,84 +13644,84 @@ msgstr "Bande RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Invalide" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Vérifiée" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Direct" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Numérique" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13854,26 +14087,26 @@ msgstr "Grilles pour" msgid "Non DXCC matching gridsquare" msgstr "Grille non DXCC correspondante" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Date, du" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "au" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Aucun / Vide" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13881,51 +14114,69 @@ msgstr "" "Distance en kilomètres. La recherche portera sur les distances supérieures " "ou égales à cette valeur." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Durée" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Durée en minutes. La recherche portera sur les durées supérieures ou égales " +"à cette valeur." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Colonne de tri" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "Heure QSO" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO modifié" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Sens de tri" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Descendant" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Ascendant" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Appliquer les filtres" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "Filtres QSL" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL Envoyée" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13942,32 +14193,32 @@ msgstr "QSL Envoyée" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "En attente" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13996,281 +14247,281 @@ msgstr "En attente" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Invalide (Ignoré)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL Reçue" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "QSL Méthode (envoi)" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "QSL Méthode (reçue)" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW Envoyé" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW Reçu" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog Envoyé" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog reçu" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL Envoyée" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL Reçue" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL envoyé" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL reçu" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "Images QSL" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ envoyé" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ reçu" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Filtres rapides" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Recherche rapide (avec infos de la ligne sélectionnée) : " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Date de recherche" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Même DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Même Etat" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Même Locator" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Même Zone CQ" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Recherche de la Zone ITU" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Même Mode" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Même Band" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Même IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Même SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Même POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Même WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Recherche de l'opérateur" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" "ATTENTION ! Etes vous certain de vouloir supprimer les QSO " "sélectionnés ?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " Les QSO seront supprimés" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Action pour lignes sélectionnées : " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Mise à jour depuis Callbook" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "En attente (Bureau)" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "En attente (Direct)" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "En attente (Electronic)" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Envoyée (Bureau)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Envoyée (Direct)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Envoyée (Electronic)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Non envoyée" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL Non requis" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Non reçu" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Reçue (Bureau)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Reçue (Direct)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Reçue (Numérique)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Exporter en ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Imprimer Etiquette" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "Diaporama QSL" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "Nb lignes" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Doublon(s)" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Carte du globe" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Outils de base de données" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Dernière modification" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL MSG (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL MSG (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Ma Refs" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Az Ant" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Azimuth de l'antenne" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "El Ant" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Elévation de l'antenne" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Puissance de la station" @@ -14350,15 +14601,15 @@ msgstr "Résultats de la mise à jour de gridsquare :" msgid "The number of QSOs updated for gridsquare is" msgstr "Le nombre de QSO mis à jour pour gridsquare est" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Ajouter Via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Inclure QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Inclure message TNX" @@ -14425,35 +14676,35 @@ msgstr "Pays actuellement pris en charge" msgid "Basic QSO Information" msgstr "Informations de base sur les QSO" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Détails de la station" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Services de confirmation" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Informations géographiques" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Programmes de récompenses" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Informations Complémentaires" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Détails techniques" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "À des fins de débogage uniquement" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14461,7 +14712,7 @@ msgstr "" "Ceci est destiné uniquement au débogage et n'est pas conçu pour être affiché " "par défaut" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Couches de carte" @@ -14591,7 +14842,7 @@ msgid "Date Expires" msgstr "Date d'expiration" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Dernier téléchargement" @@ -15268,7 +15519,7 @@ msgstr "Y a-t-il d'autres informations que nous devrions connaître ?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "E-mail" @@ -15285,11 +15536,11 @@ msgstr "Envoyer une requête non enregistrée" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Via" @@ -15301,7 +15552,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Ajouter à la file d'impression" @@ -15564,7 +15815,7 @@ msgstr "Date de confirmation" #: application/views/qslcard/confirmationresult.php:21 #: application/views/user/index.php:30 msgid "Type" -msgstr "Taper" +msgstr "Type" #: application/views/qslcard/confirmationresult.php:54 msgid "No confirmations found." @@ -15603,7 +15854,7 @@ msgstr "Ajouter des QSO" #: application/views/qslcard/searchresult.php:193 msgid "Add to QSL" -msgstr "Ajouter des QSL" +msgstr "Ajouter aux QSL" #: application/views/qslprint/index.php:16 msgid "Export Requested QSLs for Printing" @@ -15721,7 +15972,7 @@ msgstr "Mark a demandé les QSL envoyées" msgid "No QSLs to print were found!" msgstr "Aucune carte QSL à imprimer n'a été trouvée !" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15866,7 +16117,7 @@ msgstr "Saisissez la ouissance en Watts en utilisant uniquement des chiffres." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Puissance Emission (W)" @@ -15928,9 +16179,9 @@ msgid "Station County" msgstr "Comté de la station" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "Information sur le signal" @@ -15978,7 +16229,7 @@ msgstr "Remarque : Non modifiable. Affiché uniquement ici." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Modifié" @@ -16103,16 +16354,16 @@ msgstr "Recherchez le dernier Spot sur DXCluster" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "Référence IOTA" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "Référence SOTA" @@ -16152,11 +16403,11 @@ msgstr "Par exemple : Q03" msgid "E-mail address of QSO-partner" msgstr "Adresse e-mail du correspondant" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Nom du Satellite" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Mode du Satellite" @@ -16263,7 +16514,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Vous trouverez ci-dessous une liste des radios actives connectées à Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16271,16 +16522,35 @@ msgstr "" "Si vous n'avez pas encore connecté de radios, consultez la page API pour " "générer des clés API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"En tant qu'opérateur de station de radio amateur, vous pouvez définir une " +"radio par défaut qui vous est propre. Ainsi, une radio sera automatiquement " +"sélectionnée lors de votre connexion, tout en vous permettant d'utiliser " +"d'autres radios si vous le souhaitez." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"En tant qu'utilisateur normal, vous pouvez définir une radio par défaut. " +"Ainsi, une radio sera automatiquement sélectionnée à votre connexion, tout " +"en vous permettant d'utiliser d'autres radios si vous le souhaitez." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Vous pouvez découvrir comment utiliser le %s dans le wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "" +"Vous pouvez trouver des informations sur l'utilisation des fonctions " +"%sradio%s dans le wiki." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "Fonctions radio" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Attendez s'il vous plait..." @@ -16624,13 +16894,6 @@ msgstr "Heure AOS" msgid "LOS Time" msgstr "Heure LOS" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Durée" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Chemin" @@ -16747,6 +17010,11 @@ msgstr "Enregistrer la requête" msgid "Stored queries" msgstr "Requêtes stockées" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Vous pouvez découvrir comment utiliser le %s dans le wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "Fonctions filtres de recherche" @@ -16824,35 +17092,35 @@ msgstr "Marquer les QSL comme Envoyées (Direct)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Marquer les QSL comme Reçues (Bureau)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Marquer les QSL comme Reçues (Direct)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Marquer les QSL comme demandées (Bureau)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Marquer les QSL comme demandées (Direct)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Marquer les QSL comme non requises" @@ -17183,8 +17451,8 @@ msgid "" "Here, the first qso uses the set serial 1, and the second will use 2 as the " "serial. If you want to wipe your sent exchange, use ',-':" msgstr "" -"Ici, le premier QSO utilise le numéro progressif 1, et le second le numéro " -"2. Pour effacer vos échanges, utilisez « ,- » :" +"Ici, le premier QSO utilise le numéro de série 1, et le second utilisera le " +"numéro 2. Si vous souhaitez effacer vos échanges envoyés, utilisez «,-» :" #: application/views/simplefle/syntax_help.php:59 msgid "" @@ -17409,7 +17677,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problème ? Consultez le %swiki%s." @@ -17626,7 +17894,7 @@ msgid "Link Location" msgstr "Emplacement du lien" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Nom du profile" @@ -17646,19 +17914,19 @@ msgstr "" "carnet de station aux analyses. C'est très pratique lorsque vous opérez " "depuis plusieurs emplacements appartenant au même cercle DXCC ou VUCC." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Modifier les emplacements liés" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Site visiteur" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Emplacements des stations" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17666,13 +17934,13 @@ msgstr "" "Les emplacements des stations définissent les emplacements de " "fonctionnement, tels que votre QTH, le QTH d'un ami ou une station portable." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "Similaire aux carnets de trafic, un profil de station conserve un ensemble " "de QSO simultanément." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17680,7 +17948,7 @@ msgstr "" "Une seule station peut être active à la fois. Dans le tableau ci-dessous, " "elle est indiquée par le symbole « Station active »." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17688,23 +17956,23 @@ msgstr "" "La colonne « Lié » indique si l'emplacement de la station est lié au carnet " "de trafic actif sélectionné ci-dessus." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Créer un emplacement de station" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Afficher uniquement les emplacements du carnet de trafic actif" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Afficher tous les emplacements" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Afficher une liste d'emplacements" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17712,7 +17980,7 @@ msgstr "" "Attention : Vous devez définir un emplacement de station actif. Accédez à " "Indicatif > Emplacement de la station pour en sélectionner un." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17720,23 +17988,23 @@ msgstr "" "En raison de changements récents dans Wavelog, vous devez réaffecter les QSO " "à vos profils de station." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Entretien" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Veuillez les réaffecter à " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Lié" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Préféré" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "marquer/démarquer comme favori" @@ -17772,7 +18040,7 @@ msgstr "Elévation" #: application/views/statistics/index.php:14 #: application/views/statistics/index.php:96 msgid "Years" -msgstr "Nb QSOs /An" +msgstr "Années" #: application/views/statistics/index.php:15 #: application/views/statistics/index.php:99 @@ -18501,43 +18769,47 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Afficher les champs sur l'onglet QSO" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Afficher la carte dans la fenêtre QSO" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Les éléments activés seront affichés dans l'onglet QSO et non dans l'onglet " "Général." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Paramètres de demande de QSL en ligne (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Texte global" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Ce texte est un texte facultatif qui peut être affiché en haut de la page " "OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Recherche groupée" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Désactivé" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Activé" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18545,12 +18817,12 @@ msgstr "" "Lorsque cette option est activée, tous les emplacements de stations " "disposant d'un OQRS actif, seront analysés immédiatement." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" "Afficher le nom de la station dans les résultats de recherches groupées" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18558,11 +18830,11 @@ msgstr "" "Si la recherche groupée est activée, vous pouvez décider si le nom de " "l'emplacement de la station doit être affiché dans le tableau des résultats." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Correspondance automatique d'OQRS" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18571,69 +18843,69 @@ msgstr "" "et le système tentera de faire correspondre automatiquement les requêtes " "entrantes avec les logs existants." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Correspondance automatique d'OQRS pour les requêtes directes" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Si cette option est activée, la correspondance d'OQRS pour les requêtes " "directes sera automatique." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Valeur par défaut" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Paramètres par défaut" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Bandes" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Méthode QSL" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Services Tiers" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Utilisateur" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Mot de passe" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Test de connexion" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Utilisateur" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Mot de passe" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log Email" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Mot de passe" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18643,15 +18915,15 @@ msgstr "" "générer un mot de passe de l'application pour utiliser Clublog dans Wavelog. " "Pour ce faire, rendez-vous sur %svotre page de paramètres Clublog%s." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "Widget sur l'air" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18659,16 +18931,16 @@ msgstr "" "Remarque : pour utiliser ce widget, vous devez disposer d'au moins une radio " "CAT configurée et fonctionnelle." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Une fois activé, le widget sera disponible à l'adresse %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Afficher l'heure de « Dernière vue »" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18676,15 +18948,15 @@ msgstr "" "Ce paramètre détermine si l'heure de « Dernière vue » est affichée ou non " "dans le widget." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Afficher uniquement la radio la plus récemment mise à jour" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Non, montrer toutes les radios" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18696,15 +18968,15 @@ msgstr "" "uniquement la dernière mise à jour. Si vous n'avez qu'une seule radio, ce " "paramètre n'a aucun effet." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "Widget des QSO" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Afficher l'heure exacte du QSO" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18712,40 +18984,40 @@ msgstr "" "Ce paramètre détermine si l'heure exacte du QSO doit être affichée ou non " "dans le widget QSO." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Divers" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Envoi du statut AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Envoi des statuts des QSO par Satellite sur" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodon Serveur" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL du serveur Mastodon" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principale de votre serveur Mastodon, par exemple %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Activer Winkeyer" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18754,25 +19026,25 @@ msgstr "" "La prise en charge de Winkeyer dans Wavelog est encore expérimentale. " "Veuillez consulter le wiki à l'adresse %s avant de l'activer." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Clé d'accès privé" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Consultez votre profil à %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Afficher uniquement les passages valides" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18781,7 +19053,7 @@ msgstr "" "fonction du Locator défini dans votre compte hams.at. Une clé d'accès privé " "doit être définie." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Sauvegarder" @@ -18915,7 +19187,7 @@ msgstr "Bienvenue dans la démo de Wavelog" #: application/views/user/login.php:57 msgid "This demo will be reset every night at 0200z." -msgstr "Cette démo sera réinitialisée chaque nuit à 02h00 UTC." +msgstr "Cette démo sera réinitialisée chaque nuit à 02h00 Z." #: application/views/user/login.php:60 #, php-format @@ -19215,7 +19487,7 @@ msgstr "Affichage de tous les QSO des stations liées à ce journal de trafic" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "Dernier envoi" @@ -19243,119 +19515,128 @@ msgstr "Distance Totale" msgid "Other Path" msgstr "Autre chemin" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"Une seule case de la grille a été saisie dans le champ des cases de la " +"grille VUCC, alors qu'il devrait contenir deux ou quatre cases au lieu d'une " +"seule." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Azimuth de l'Antenne" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Elévation de l'Antenne" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "La carte QSL a été envoyée via le bureau" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "La carte QSL a été envoyée en direct" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "La carte QSL a été envoyée numériquement" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "La carte QSL a été envoyée via QSL Manager" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "La carte QSL a été envoyée" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "La carte QSL a été reçue via le bureau" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "La carte QSL a été reçue en direct" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "La carte QSL a été reçue numériquement" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "La carte QSL a été reçue via QSL Manager" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "La carte QSL a été reçue" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Cette station utilise LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Ce QSO est confirmé depuis le" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Ce QSO est confirmé sur LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Ce QSO est confirmé sur eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Ce QSO est confirmé sur QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Ce QSO est confirmé sur Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Ce QSO est confirmé sur DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Autres QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Partager" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Détails" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Sélectionner l'image 'recto' de la QSL" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Télécharger le(s) image(s) de la QSL" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Sélectionner l'image 'verso' de la QSL" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Marquer QSL Reçue (Electronic)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "Image eQSL" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO introuvable" @@ -19548,6 +19829,46 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Le cache utilise actuellement l'adaptateur de secours car l'adaptateur " +#~ "principal est indisponible." + +#~ msgid "Don't show" +#~ msgstr "Ne pas afficher" + +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable. Check your file permissions, php-extensions and/or if you " +#~ "are using redis/memcached your network connection to the services." +#~ msgstr "" +#~ "Le cache utilise actuellement l'adaptateur de secours car l'adaptateur " +#~ "principal est indisponible. Vérifiez les permissions de vos fichiers, vos " +#~ "extensions PHP et/ou, si vous utilisez redis/memcached, votre connexion " +#~ "réseau aux services." + +#, php-format +#~ msgid "" +#~ "Cache does not work! Currently the system is using a %s adapter. Check " +#~ "your file permissions, php-extensions and/or if you are using redis/" +#~ "memcached your network connection to the services. You can continue using " +#~ "Wavelog, but no values will be cached (which is bad)." +#~ msgstr "" +#~ "Le cache ne fonctionne pas ! Le système utilise actuellement un " +#~ "adaptateur %s. Vérifiez les permissions de vos fichiers, vos extensions " +#~ "PHP et/ou, si vous utilisez redis/memcached, votre connexion réseau aux " +#~ "services. Vous pouvez continuer à utiliser Wavelog, mais aucune valeur ne " +#~ "sera mise en cache (ce qui est problématique)." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "" +#~ "Erreur lors de l'obtention d'une clé de session pour la requête HamQTH" + +#~ msgid "radio functions" +#~ msgstr "Fonctions radio" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Zones CQ mal enregistrées" diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po index e6a369fcc..60eb44d4e 100644 --- a/application/locale/hr/LC_MESSAGES/messages.po +++ b/application/locale/hr/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2026-01-11 07:07+0000\n" "Last-Translator: marin \n" "Language-Team: Croatian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17369,169 +17615,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17539,85 +17789,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -18001,7 +18251,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18029,119 +18279,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/hu/LC_MESSAGES/messages.po b/application/locale/hu/LC_MESSAGES/messages.po index 78246bfc5..607f1a9b0 100644 --- a/application/locale/hu/LC_MESSAGES/messages.po +++ b/application/locale/hu/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2025-11-28 09:48+0000\n" "Last-Translator: Mathias Regner \n" "Language-Team: Hungarian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17363,169 +17609,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17533,85 +17783,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17995,7 +18245,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18023,119 +18273,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/hy/LC_MESSAGES/messages.po b/application/locale/hy/LC_MESSAGES/messages.po index d5776325f..23e7c3c58 100644 --- a/application/locale/hy/LC_MESSAGES/messages.po +++ b/application/locale/hy/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2025-08-23 15:21+0000\n" "Last-Translator: Matthias Jung \n" "Language-Team: Armenian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17352,169 +17598,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17522,85 +17772,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17984,7 +18234,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18012,119 +18262,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.mo b/application/locale/it_IT/LC_MESSAGES/messages.mo index f160cd68f..348317a63 100644 Binary files a/application/locale/it_IT/LC_MESSAGES/messages.mo and b/application/locale/it_IT/LC_MESSAGES/messages.mo differ diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index 1a50d379c..b86082b3a 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -6,12 +6,13 @@ # "Francisco (F4VSE)" , 2024, 2025. # Fabian Berg , 2024. # "Erkin Mercan (TA4AQG-SP9AQG)" , 2025. +# iv3cvn , 2026. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-01-24 15:29+0000\n" -"Last-Translator: Luca \n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-09 09:12+0000\n" +"Last-Translator: iv3cvn \n" "Language-Team: Italian \n" "Language: it_IT\n" @@ -19,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -72,8 +73,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -84,11 +85,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -119,11 +120,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -144,8 +145,8 @@ msgid "Activated Gridsquare Map" msgstr "Mappa locatori attivati" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -305,53 +306,53 @@ msgstr "La chiave %s è stata cancellata" #: application/views/logbookadvanced/edit.php:22 #: application/views/qso/edit_ajax.php:36 msgid "Awards" -msgstr "Premi" +msgstr "Diplomi" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" -msgstr "Premi - %s" +msgstr "Diplomi - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -360,13 +361,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -378,29 +379,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Trofei - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" -msgstr "Premi - WAJA" +msgstr "Diplomi - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Visualizza log - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -413,43 +414,58 @@ msgstr "Visualizza log - VUCC" msgid "Log View" msgstr "Visualizza Log" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " e banda " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "e" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Ogni banda (senza SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "banda" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " e satellite " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " e tipo orbita " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " e propagazione " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " e modo " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " e " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -470,14 +486,14 @@ msgstr " e " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -492,16 +508,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -515,115 +531,115 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (collegate tutte le zone)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Collegati tutti gli stati (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Contee USA" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Visualizza log - Contee" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " -msgstr "Premi - " +msgstr "Diplomi - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Locatori collegati" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Locatori confermati via LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Locatori confermati via QSL cartacea" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Totale locatori collegati" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" -msgstr "Memoriale Fred Fish (FFMA)" +msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " -msgstr "Premi - SIG - " +msgstr "Diplomi - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "Zone ITU" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Collegato in tutti i continenti (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" -msgstr "Premio \"Polska\"" +msgstr "Diploma \"Polska\"" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:336 @@ -650,8 +666,7 @@ msgstr "Crea modo" msgid "Edit Band" msgstr "Modifica banda" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -684,17 +699,26 @@ msgstr "Dati CBR importati" msgid "Callsign statistics" msgstr "Statistiche dei nominativi" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " e banda " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " e satellite " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" -msgstr "" +msgstr "Call Tester" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "Tester di chiamata CSV" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" -msgstr "" +msgstr "Tester del nominativo" #: application/controllers/Club.php:23 msgid "Club Officer" @@ -777,28 +801,31 @@ msgid "No user has configured Clublog." msgstr "Nessun utente ha configurato Clublog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -830,7 +857,7 @@ msgid "Update Contest" msgstr "Aggiorna contest" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -848,12 +875,12 @@ msgstr "Modifica Cronjob" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "mai" @@ -928,14 +955,14 @@ msgstr "Importazione chiave DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -965,7 +992,7 @@ msgstr "Chiave/i eliminata/e." #: application/controllers/Debug.php:114 msgid "(empty)" -msgstr "" +msgstr "(vuoto)" #: application/controllers/Debug.php:132 msgid "Debug" @@ -1183,7 +1210,7 @@ msgstr "Nessun QSO da caricare." msgid "KML Export" msgstr "Esportazione KML" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "Etichette QSL" @@ -1191,59 +1218,59 @@ msgstr "Etichette QSL" msgid "Create Label Type" msgstr "Definisci tipologia di etichetta" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Nome etichetta" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Tipologia di carta" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Misura" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Margine Superiore" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Margine Sinistro" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSL orizzontali" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSL verticali" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Spaziatura orizzontale" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Spaziatura verticale" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Larghezza etichetta" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Altezza etichetta" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Dimensione dei caratteri" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Numero di QSO per etichetta" @@ -1252,22 +1279,22 @@ msgid "Create Paper Type" msgstr "Crea tipologia di foglio" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Nome foglio" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Larghezza foglio" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Altezza foglio" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1275,19 +1302,19 @@ msgstr "" "Il foglio non è stato salvato. Ricorda che non può avere lo stesso nome di " "altri tipi di foglio già esistenti." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "" "È necessario assegnare un tipo di foglio all'etichetta prima della stampa" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "È necessario creare un'etichetta e impostarla per la stampa." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1295,31 +1322,31 @@ msgstr "" "Qualcosa è andato storto! Non è stato possibile generare l'etichetta. " "Controllare le dimensioni dell'etichetta e del carattere." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "0 QSO da stampare!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Modifica etichetta" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Etichetta salvata." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Etichetta cancellata." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Modifica foglio" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Foglio salvato." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Foglio cancellato." @@ -1343,55 +1370,55 @@ msgstr "Registri di stazione" msgid "Logbook" msgstr "Registro" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1399,93 +1426,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." -msgstr "" +msgstr "Tutte le ricerche del nominativo non hanno prodotto alcun risultato." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1493,7 +1522,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1510,13 +1539,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1555,15 +1584,15 @@ msgstr "" msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1582,17 +1611,17 @@ msgstr "Modo" #: application/views/view_log/partial/log_ajax.php:5 #: application/views/view_log/qso.php:119 application/views/visitor/index.php:9 msgid "RST (S)" -msgstr "RST (I)" +msgstr "RST (S)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1614,7 +1643,7 @@ msgstr "RST (I)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1623,29 +1652,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" -msgstr "Paese" +msgstr "Country" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1658,7 +1687,7 @@ msgstr "Paese" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1666,7 +1695,7 @@ msgstr "Paese" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1675,12 +1704,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1689,7 +1718,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1697,7 +1726,7 @@ msgstr "IOTA" msgid "State" msgstr "Stato" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1706,19 +1735,19 @@ msgstr "Stato" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1734,20 +1763,20 @@ msgstr "Stato" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Locatore" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1757,9 +1786,9 @@ msgstr "Locatore" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1777,18 +1806,18 @@ msgstr "Locatore" msgid "Distance" msgstr "Distanza" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1796,25 +1825,26 @@ msgstr "Distanza" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1825,13 +1855,13 @@ msgstr "Distanza" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1870,13 +1900,14 @@ msgstr "Distanza" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1897,13 +1928,13 @@ msgstr "Banda" msgid "Frequency" msgstr "Frequenza" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1916,21 +1947,21 @@ msgstr "Frequenza" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operatore" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1939,14 +1970,14 @@ msgstr "Operatore" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "DXCC eliminati" @@ -1954,12 +1985,12 @@ msgstr "DXCC eliminati" msgid "Advanced logbook" msgstr "Registro avanzato" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC aggiornato per %d QSO." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Mappa per DXCC %s e locatore %s." @@ -1974,7 +2005,7 @@ msgstr "Ricerca rapida" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1986,11 +2017,11 @@ msgstr "Certificato importato." msgid "Certificate Updated." msgstr "Certificato aggiornato." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certificato cancellato." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2003,7 +2034,7 @@ msgstr "" "tqsl senza password!%s Per ulteriori informazioni visita la %spagina delle " "FAQ di LoTW%s nel Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2014,52 +2045,52 @@ msgstr "" "file contiene 'key-only', si tratta tipicamente di una richiesta di " "certificato che non è stata ancora elaborata da LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Errore generico nell'elaborazione del certificato nel file %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Errore generico durante l'estrazione della chiave privata dal certificato " "nel file %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "Informazioni ADIF LoTW" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Connessione a LoTW fallita." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Accesso fallito su LoTW per l'utente %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Nome utente o password errati" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW non è al momento raggiungibile. Riprova più tardi." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "Accesso a LoTW completato!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Le credenziali di LoTW non sono state impostate." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "Importazione ADIF LoTW" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Non hai definito le tue credenziali ARRL LoTW!" @@ -2084,7 +2115,7 @@ msgstr "Modifica modo" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Note" @@ -2404,19 +2435,19 @@ msgstr "Carica QSL" msgid "Print Requested QSLs" msgstr "Stampa QSL richieste" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Aggiungi QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Devi effettuare l'accesso per accedere a questo URL." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Trasferisci nominativo" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Nessun nominativo fornito." @@ -2425,18 +2456,18 @@ msgstr "Nessun nominativo fornito." msgid "Hardware Interfaces" msgstr "Interfacce hardware" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Orario" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2444,61 +2475,65 @@ msgstr "Orario" msgid "Options" msgstr "Opzioni" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Impostazioni" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Predefinito (premi per rimuovere)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Imposta come radio predefinita" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "SCONOSCIUTO" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "ultimo aggiornamento" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Imposta come radio predefinita" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Predefinito (premi per rimuovere)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Modifica" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2507,22 +2542,39 @@ msgstr "Modifica" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Elimina" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket è attualmente il predefinito (premi per sbloccare)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Imposta WebSocket come radio predefinita" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Nessuna radio interfacciata via CAT trovata." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Puoi comunque impostare l'opzione WebSocket come tua radio predefinita." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Modifica impostazioni CAT" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Radio rimossa con successo" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Esporta EDI" @@ -2590,7 +2642,7 @@ msgstr "Non hai stazioni impostate. Vai %s per crearle!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2601,13 +2653,13 @@ msgstr "qui" msgid "Satellite Timers" msgstr "Orari satelliti" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2639,7 +2691,7 @@ msgstr "" #: application/controllers/Simplefle.php:24 #: application/views/interface_assets/header.php:137 msgid "Simple Fast Log Entry" -msgstr "Simple Fast Log Entry" +msgstr "Inserimento veloce log" #: application/controllers/Staticmap.php:152 #: application/controllers/Visitor.php:76 @@ -2662,7 +2714,8 @@ msgstr "Modifica postazioni: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2670,7 +2723,7 @@ msgstr "Modifica postazioni: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2683,7 +2736,7 @@ msgid "Duplicate Station Location:" msgstr "Duplica postazione:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Prego verifica il locatore (%s)" @@ -2746,7 +2799,8 @@ msgstr "Errore. Collegamento già in uso!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2754,19 +2808,19 @@ msgid "Disabled" msgstr "Disabilitato" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Imposta come registro attivo" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Registro attivo" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2776,7 +2830,7 @@ msgstr "" "ricollegare qualsiasi località collegata qui a un altro registro." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Visualizza pagina pubblica del registro di stazione: " @@ -2785,7 +2839,7 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Sei sicuro di voler eliminare questo identificativo pubblico?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" @@ -2793,12 +2847,12 @@ msgstr "" "Sei sicuro di voler rendere il profilo della stazione %s la stazione attiva?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Imposta come attiva" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Stazione attiva" @@ -2806,33 +2860,33 @@ msgstr "Stazione attiva" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "Sei sicuro di voler eliminare tutti i QSO all'interno di questo profilo " "stazione?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Svuota log" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Copia" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2845,7 +2899,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Per favore seleziona uno" @@ -2925,103 +2979,103 @@ msgstr "Preparazione eccezioni DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Preparazione prefissi DXCC: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "COMPLETATO" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Aggiornamento..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Entità DXCC:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Eccezioni DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Prefissi DXCC:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Aggiornamento SCP completato. Risultato: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Aggiornamento SCP fallito. Risultato: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Aggiornamento utenti LoTW completato. Risultato: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Aggiornamento utenti LoTW fallito. Risultato: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Aggiornamento DOK completato. Risultato: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "Aggiornamento DOK fallito. Risultato: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Aggiornamento SOTA completato. Risultato: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "Aggiornamento SOTA fallito. Risultato: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Aggiornamento WWFF completato. Risultato: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Aggiornamento WWFF fallito. Risultato: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "aggiornamento HAMqsl completato. Risultato: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Aggiornamento HAMqsl fallito. Risultato: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Aggiornamento POTA completato. Risultato: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "Aggiornamento POTA fallito. Risultato: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Aggiornamento TLE completato. Risultato: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "Aggiornamento TLE fallito. RIsultato: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Aggiorna LoTW SAT" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Aggiornamento di Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC Grid file aggiornato. Risultato: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Aggiornamento file Grid VUCC fallito. Risultato: " @@ -3055,61 +3109,61 @@ msgstr "Parametro non valido!" msgid "Add User" msgstr "Aggiungi utente" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Il nome utente %s è già stato utilizzato!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "L'indirizzo mail %s è già stato utilizzato!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Password non valida!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Utente %s aggiunto!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Utenti" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Modifica utente" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Utente %s modificato" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profilo" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Elimina utente" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Utente eliminato" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Impossibile eliminare l'utente!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Errore del database:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3117,29 +3171,29 @@ msgstr "" "Congratulazioni! Wavelog è stato installato con successo. Ora puoi " "effettuare il primo accesso." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Questo non è consentito!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Accesso non riuscito. Riprova." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Accesso" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Non è possibile accedere direttamente a una clubstation. Utilizza invece il " "tuo account personale." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3147,7 +3201,7 @@ msgstr "" "Il tuo account è stato bloccato a causa di troppi tentativi di accesso non " "riusciti. Ti preghiamo di reimpostare la tua password." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3158,52 +3212,52 @@ msgstr "" "un amministratore. Al momento solo gli amministratori possono effettuare " "l'accesso." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Username o password non validi!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Utente %s scollegato." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Nome della stazione" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Nominativo di stazione" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "DXCC della stazione" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Zona CQ della stazione" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Zona ITU della stazione" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Locatore della stazione" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3212,36 +3266,36 @@ msgstr "" "Stazione creata con successo! Benvenuto su Wavelog! Per completare la " "configurazione della tua stazione, clicca %squi%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" "Impostazione della stazione non riuscita! Impostare manualmente la stazione." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "La reimpostazione della password è disabilitata nella versione demo!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Password dimenticata" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "Le impostazioni dell'e-mail non sono corrette." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Reimpostazione password completata." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Reimposta password" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3249,7 +3303,7 @@ msgstr "" "Impossibile impostare l'account con questo nome utente. Prova con un nome " "diverso da “%s”." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3257,7 +3311,7 @@ msgstr "" "Impossibile impostare l'account con questo nome utente. Prova con un nome " "diverso da “%s”." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3266,7 +3320,7 @@ msgstr "" "Al momento non è possibile impersonare un altro utente. È necessario " "impostare %s su %s nel file config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3275,15 +3329,15 @@ msgstr "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Hash non valido" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "L'hash di impersonificazione è troppo vecchio. Riprova." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3291,15 +3345,15 @@ msgstr "" "Non è possibile impersonare un altro utente se non si è connessi come utente " "di origine" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Si è verificato un problema con la tua sessione. Riprova." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "L'utente richiesto da impersonare non esiste" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3307,14 +3361,14 @@ msgstr "" "Impossibile determinare il livello di autorizzazione corretto per la " "clubstation. Riprova dopo aver effettuato nuovamente l'accesso." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "" "Ops... Qualcosa è andato storto. Prova a effettuare nuovamente l'accesso." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3322,7 +3376,7 @@ msgstr "" "La possibilità di tornare rapidamente è stata disabilitata dopo la scadenza " "dell'hash di sicurezza. Effettua nuovamente l'accesso." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3336,7 +3390,7 @@ msgid "Satellite Gridsquare Map" msgstr "Mappa locatori sallite" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Ricerca pubblica" @@ -3388,14 +3442,21 @@ msgstr "Utenti multipli trovati tramite slug" msgid "Gridsquare Zone finder" msgstr "Trova zona del locatore" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Ricerca dei nominativi non configurata. Ricontrolla la configurazione." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "" +"Errore durante l'ottenimento di una chiave di sessione per il callbook. " +"Errore: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "Errore QRZCQ" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Errore nel ottenere una chiave di sessione per la query HamQTH" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3548,29 +3609,29 @@ msgstr "HRDlog: nessun profilo di stazione con credenziali HRDlog trovate." #: application/models/Logbook_model.php:311 msgid "Station not accessible" -msgstr "" +msgstr "Stazione non accessibile" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "ID stazione non consentito" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Nessun nominatio fornito" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC deve essere numerico" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Callsign della stazione errato ( %s) durante l'importazione di QSO con %s " "per %s: SALTATO" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3578,11 +3639,11 @@ msgstr "" "Hai cercato di importare un QSO senza una data valida. Questo QSO non è " "stato importato. Non è valido" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO alle" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3590,7 +3651,7 @@ msgstr "" "Hai tentato di importare un QSO senza alcun nominativo di chiamata. Questo " "QSO non è stato importato perchè non valido" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3599,64 +3660,64 @@ msgstr "" "QSO su %s: Hai provato a importare un QSO senza una banda specificata. " "Questo QSO non è stato importato. È non valido" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "La data di ricezione QSL non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "La data di invio QSL non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "La data di upload Clublog non è valida (AAAAMMGG)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicata" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "Impossibile abbinare QSO" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confermato da LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "confermato dal responsabile del premio" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "confermato dal controllo incrociato dei dati DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "Conferma in sospeso" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "Non confermato" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "sconosciuto" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "Riferimento POTA già presente nel registro di stazione" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO aggiornato" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3670,7 +3731,7 @@ msgstr "QSO aggiornato" msgid "Bearing" msgstr "Direzione" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "" "La tabella VuccGrids è vuota. Per favore, importa prima i dati dei locatori " @@ -3809,42 +3870,40 @@ msgstr "Differenza" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3873,33 +3932,33 @@ msgstr "Differenza" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3920,7 +3979,7 @@ msgstr "Differenza" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Tutti" @@ -3964,12 +4023,12 @@ msgstr "Periodo" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Propagazione" @@ -3985,7 +4044,7 @@ msgstr "Tutti tranne SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Nessuno/Vuoto" @@ -3995,11 +4054,11 @@ msgstr "Nessuno/Vuoto" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Aircraft Scatter" @@ -4009,11 +4068,11 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4023,11 +4082,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4037,11 +4096,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -4051,11 +4110,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4065,11 +4124,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Terra-Luna-Terra" @@ -4079,11 +4138,11 @@ msgstr "Terra-Luna-Terra" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "E Sporadico" @@ -4093,11 +4152,11 @@ msgstr "E Sporadico" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Irregolarità allineamento del campo" @@ -4107,11 +4166,11 @@ msgstr "Irregolarità allineamento del campo" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "Riflessione F2" @@ -4121,11 +4180,11 @@ msgstr "Riflessione F2" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Assistito da Internet" @@ -4135,11 +4194,11 @@ msgstr "Assistito da Internet" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4149,11 +4208,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4163,11 +4222,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor scatter" @@ -4177,11 +4236,11 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Ripetitore/transponder terrestre o atmosferico" @@ -4191,11 +4250,11 @@ msgstr "Ripetitore/transponder terrestre o atmosferico" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Rain scatter" @@ -4205,11 +4264,11 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satellite" @@ -4219,11 +4278,11 @@ msgstr "Satellite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-equatoriale" @@ -4233,11 +4292,11 @@ msgstr "Trans-equatoriale" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Canalizzazioni troposferiche" @@ -4246,18 +4305,18 @@ msgstr "Canalizzazioni troposferiche" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4269,21 +4328,21 @@ msgstr "Canalizzazioni troposferiche" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Mostra" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4294,7 +4353,7 @@ msgstr "Mostra" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4303,19 +4362,25 @@ msgstr "Mostra" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satellite" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4335,22 +4400,22 @@ msgstr "Conferma" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4396,11 +4461,11 @@ msgstr "Conteggio minimo" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4409,11 +4474,10 @@ msgstr "Conteggio minimo" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4433,7 +4497,8 @@ msgstr "Non ho trovato nulla!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4449,12 +4514,13 @@ msgstr "Non ho trovato nulla!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4478,10 +4544,10 @@ msgstr "Non ho trovato nulla!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" -msgstr "Indicativo di chiamata" +msgstr "Callsign" #: application/views/activators/index.php:99 msgid "Count" @@ -4489,12 +4555,12 @@ msgstr "Conteggio" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Mostra QSO" @@ -4560,7 +4626,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4584,11 +4650,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4602,12 +4668,12 @@ msgstr "Data" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4622,7 +4688,7 @@ msgstr "Data" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4635,7 +4701,7 @@ msgstr "Orario" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4690,20 +4756,20 @@ msgstr "Importante" msgid "Log Files must have the file type *.adi" msgstr "I file di log devono avere estensione *.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Dimensione massima del file caricabile: " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4764,8 +4830,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "PERICOLO" @@ -5153,8 +5219,8 @@ msgstr "Referenze POTA in ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Stato" @@ -5173,7 +5239,7 @@ msgstr "Nome semplice per descrivere per cosa usi questa API." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5239,7 +5305,7 @@ msgstr "L'URL API per questa istanza Wavelog è" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5293,7 +5359,7 @@ msgstr "Autorizzazioni" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5338,7 +5404,7 @@ msgstr "Crea una chiave di sola lettura" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5347,8 +5413,8 @@ msgstr "Crea una chiave di sola lettura" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5365,14 +5431,14 @@ msgstr "Crea una chiave di sola lettura" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5428,9 +5494,9 @@ msgid "Filtering on" msgstr "Filtraggio per" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Contea" @@ -5464,7 +5530,7 @@ msgstr "" #: application/views/awards/counties/index.php:10 msgid "Special USA-CA awards are also available to SWLs on a heard basis." -msgstr "I premi speciali USA-CA sono disponibili anche per gli ascolti SWL." +msgstr "I diplomi speciali USA-CA sono disponibili anche per gli ascolti SWL." #: application/views/awards/counties/index.php:11 msgid "" @@ -5484,19 +5550,14 @@ msgid "Counties Confirmed" msgstr "Contee confermate" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5518,22 +5579,23 @@ msgid "Total" msgstr "Totale" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5557,9 +5619,9 @@ msgid "" "practical aspects of amateur radio." msgstr "" "La rivista CQ si trovava negli Stati Uniti ed era una delle riviste " -"radioamatoriali più popolari al mondo. Hanno interrotto il servizio entro la " +"radioamatoriali più popolari al mondo. Hanno interrotto il servizio alla " "fine del 2023. La rivista è apparsa per la prima volta nel gennaio 1945 e si " -"concentra sui premi e sugli aspetti pratici della radio amatoriale." +"concentra sui diplomi e sugli aspetti pratici della radio amatoriale." #: application/views/awards/cq/index.php:34 msgid "" @@ -5585,13 +5647,15 @@ msgstr "Campi presi in considerazione per questo premio: CQ-Zone (ADIF: CQZ)" #: application/views/awards/cq/index.php:38 msgid "Awards - CQ WAZ" -msgstr "Premi - CQ WAZ" +msgstr "Diplomi - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtri" @@ -5601,92 +5665,114 @@ msgid "Show CQ Zone Map" msgstr "Mostra mappa zona CQ" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Preimpostazioni data" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Oggi" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Ieri" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Ultimi 7 giorni" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Ultimi 30 giorni" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Questo mese" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Il mese scorso" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Quest'anno" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "L'anno scorso" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Pulisci" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5694,7 +5780,9 @@ msgid "Date from" msgstr "Da" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5702,11 +5790,10 @@ msgid "Date to" msgstr "A" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5716,9 +5803,8 @@ msgid "Confirmed" msgstr "Confermato" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5728,67 +5814,64 @@ msgstr "Collegato" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Mostra collegati" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Mostra confermati" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Mostra non collegati" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5796,95 +5879,161 @@ msgstr "Mostra QSO con tipo QSL" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Cartolina QSL" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabella" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mappa" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legenda:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL-Cartacea" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "Conferma QR(Z)" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) Lavorato" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Riepilogo" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Totale (escluso satelliti)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Totale collegati" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5933,8 +6082,8 @@ msgid "" "This information is provided by the %s. Information about the DOK Awards and " "its rules can be found %s." msgstr "" -"Queste informazioni sono fornite da %s. Informazioni sui premi DOK e le sue " -"regole sono disponibili %s." +"Queste informazioni sono fornite da %s. Informazioni sui diplomi DOK e le " +"sue regole sono disponibili %s." #: application/views/awards/dok/index.php:11 msgid "Fields taken for this Award: DOK (ADIF: DARC_DOK)" @@ -5949,15 +6098,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Collegato / Confermato" @@ -5966,11 +6115,9 @@ msgstr "Collegato / Confermato" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Ogni banda" @@ -5978,23 +6125,20 @@ msgstr "Ogni banda" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Resetta" @@ -6051,161 +6195,127 @@ msgstr "" "Campi presi in considerazione per questo premio: DXCC (Deve essere valido " "dalla lista DXCC-ADIF-Spec)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Mostra mappa DXCC" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Includi eliminati" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antartide" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Africa" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Asia" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "America del Nord" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "America del Sud" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oceania" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Ogni banda (senza SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legenda:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL-Cartacea" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "Conferma QR(Z)" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) Collegato" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "Nome DXCC" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefisso" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" "Nessun risultato trovato per i criteri di ricerca. Per favore, riprova." @@ -6280,10 +6390,10 @@ msgstr "" "bidirezionale tramite satellite amatoriale con ciascun locatore. Non è " "richiesto alcun rapporto minimo sul segnale. I contatti devono essere " "effettuati dalla stessa posizione o da posizioni che non distano più di 200 " -"chilometri l'una dall'altra. L'attestazione del richiedente nella domanda di " -"premio funge da conferma del rispetto della regola della distanza. Gli " -"individui possono richiedere e ottenere più premi GridMaster se ottenuti da " -"un'altra posizione, che si trova in un raggio oltre i 200 chilometri." +"chilometri l'una dall'altra. L'attestazione del richiedente nella richiesta " +"del diploma funge da conferma del rispetto della regola della distanza. Gli " +"individui possono richiedere e ottenere più diplomi GridMaster se ottenuti " +"da un'altra posizione, che si trova in un raggio oltre i 200 chilometri." #: application/views/awards/gridmaster/index.php:14 msgid "website" @@ -6370,10 +6480,10 @@ msgid "" "activities on the bands by encouraging contacts across as many Swiss cantons " "as possible on multiple bands." msgstr "" -"L'USKA (Union of Swiss Shortwave Amateurs) sponsorizza due premi: il Premio " -"HELVETIA 26 (H26) e il Premio SVIZZERA. Questi sono volti a promuovere le " -"attività radio incoraggiando i collegamenti nel maggior numero possibile di " -"cantoni svizzeri su più bande." +"L'USKA (Union of Swiss Shortwave Amateurs) sponsorizza due diplomi: il " +"Diploma HELVETIA 26 (H26) e il Diploma SVIZZERA. Questi sono volti a " +"promuovere le attività radio incoraggiando i collegamenti nel maggior numero " +"possibile di cantoni svizzeri su più bande." #: application/views/awards/helvetia/index.php:25 msgid "" @@ -6381,9 +6491,9 @@ msgid "" "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" -"Questi premi sono disponibili in due versioni: una per le bande HF e l'altra " -"per le bande VHF (comprese SHF e UHF). I contatti validi per questi premi " -"partono dal 1° gennaio 1980" +"Questi diplomi sono disponibili in due versioni: una per le bande HF e " +"l'altra per le bande VHF (comprese SHF e UHF). I contatti validi per questi " +"diplomi partono dal 1° gennaio 1980" #: application/views/awards/helvetia/index.php:27 msgid "" @@ -6408,7 +6518,7 @@ msgstr "CQ" #: application/views/awards/iota/index.php:18 msgid "IOTA Awards" -msgstr "Premi IOTA" +msgstr "Diplomi IOTA" #: application/views/awards/iota/index.php:19 msgid "" @@ -6449,7 +6559,7 @@ msgstr "" "questi gruppi. Il programma ha una serie di regole ben definite e incoraggia " "la competizione amichevole tra i cacciatori pubblicando i risultati dei " "partecipanti in un Albo d'Onore e in elenchi annuali, oltre a riconoscerli " -"con certificati e premi prestigiosi." +"con certificati e diplomi prestigiosi." #: application/views/awards/iota/index.php:21 #, php-format @@ -6478,23 +6588,23 @@ msgstr "Mostra mappa IOTA" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Nome" @@ -6503,14 +6613,14 @@ msgid "Deleted" msgstr "Eliminato" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6520,7 +6630,7 @@ msgstr "Eliminato" msgid "ITU Zone" msgstr "Zona ITU" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6532,21 +6642,21 @@ msgstr "" "zone di trasmissione definite dall'Unione internazionale delle " "telecomunicazioni (ITU)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Puoi trovare maggiori informazioni sul sito web %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Campi presi in considerazione per questo premio: Zona ITU (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" -msgstr "Premi - Zone ITU" +msgstr "Diplomi - Zone ITU" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Mostra mappa della zona ITU" @@ -6570,8 +6680,8 @@ msgid "" "however names of city may be omitted. An additional sticker will be issued " "at every 50 contacts like 150, 250, 350, 450, 550, 650, 750 cities." msgstr "" -"JCC-200, 300, 400, 500, 600, 700 e 800 saranno emessi come premi separati. " -"Un elenco di schede QSL deve essere disposto in ordine di numero di " +"JCC-200, 300, 400, 500, 600, 700 e 800 saranno emessi come diplomi separati. " +"Un elenco di cartoline QSL deve essere disposto in ordine di numero di " "riferimento JCC, tuttavia i nomi delle città possono essere omessi. Un " "adesivo aggiuntivo verrà emesso ogni 50 contatti come 150, 250, 350, 450, " "550, 650, 750 città." @@ -6604,7 +6714,7 @@ msgstr "Risultati" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Città" @@ -6613,8 +6723,10 @@ msgstr "Città" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6748,7 +6860,7 @@ msgstr "Voivodato" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Codice" @@ -6764,7 +6876,7 @@ msgstr "FONIA" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6802,8 +6914,8 @@ msgid "Band Categories" msgstr "Categorie di bande" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Correggi stato" @@ -6833,7 +6945,7 @@ msgstr "auto-compilare gli stati dai localizzatori Maidenhead." #: application/views/awards/pota/index.php:7 msgid "POTA Awards" -msgstr "Premi POTA" +msgstr "Diplomi POTA" #: application/views/awards/pota/index.php:8 msgid "" @@ -6853,7 +6965,7 @@ msgid "" "and more." msgstr "" "POTA funziona in modo simile a SOTA, con Attivatori e Cacciatori. Per i " -"premi, ci sono diverse categorie in base al numero di parchi, aree " +"diplomi, ci sono diverse categorie in base al numero di parchi, aree " "geografiche e altro ancora." #: application/views/awards/pota/index.php:10 @@ -6863,7 +6975,7 @@ msgid "" "For more information about the available awards and categories, please visit " "the %s." msgstr "" -"Per ulteriori informazioni sui premi e le categorie disponibili, visita %s." +"Per ulteriori informazioni sui diplomi e le categorie disponibili, visita %s." #: application/views/awards/pota/index.php:11 msgid "Fields taken for this Award: POTA_REF (must contain Park-Reference)" @@ -6875,8 +6987,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "Referenza POTA" @@ -6887,6 +6999,7 @@ msgstr "Provincia" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Muovi il cursore su una provincia" @@ -6905,8 +7018,8 @@ msgid "" "implemented in Wavelog." msgstr "" "La categoria SIG o Special Interest Group offre la possibilità di utilizzare " -"qualsiasi tipo di \"Special Interest Group Award\" per i premi che non sono " -"implementati in Wavelog." +"qualsiasi tipo di \"Special Interest Group Award\" per i diplomi che non " +"sono implementati in Wavelog." #: application/views/awards/sig/index.php:9 msgid "" @@ -6915,8 +7028,9 @@ msgid "" "evaluate all other types of markers for special interest groups." msgstr "" "La ragione di ciò è che il formato ADIF comune fornisce solo pochi campi " -"dedicati per determinati premi. Selezionando SIG, si consente di utilizzare " -"tutti gli altri tipi di marcatori per gruppi di interesse speciale." +"dedicati per determinati diplomi. Selezionando SIG, si consente di " +"utilizzare tutti gli altri tipi di marcatori per gruppi di interesse " +"speciale." #: application/views/awards/sig/index.php:10 msgid "" @@ -6953,7 +7067,7 @@ msgid "Reference" msgstr "Riferenza" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6980,7 +7094,7 @@ msgstr "Esporta QSO in ADIF" #: application/views/awards/sota/index.php:7 msgid "SOTA Awards" -msgstr "Premi SOTA" +msgstr "Diplomi SOTA" #: application/views/awards/sota/index.php:8 msgid "" @@ -7021,7 +7135,7 @@ msgstr "" "locatori collegati e confermati su una specifica banda." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "" @@ -7106,27 +7220,32 @@ msgstr "" #: application/views/awards/wac/index.php:14 msgid "Awards - Worked All Continents (WAC)" -msgstr "Premi - Collegati tutti i continenti (WAC)" +msgstr "Diplomi - Collegati tutti i continenti (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Continente" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "Premio WAE" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7136,7 +7255,7 @@ msgstr "" "contatti con stazioni radioamatoriali nei paesi europei e sulle isole " "elencate nell'elenco dei paesi WAE su diverse bande." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7146,11 +7265,11 @@ msgstr "" "Digital e Mixed. Viene rilasciato in cinque classi: WAE III, WAE II, WAE I, " "WAE TOP e il WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Campi presi in considerazione per questo premio: Regione, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "Nome WAE" @@ -7202,7 +7321,7 @@ msgid "Show WAJA Map" msgstr "Mostra mappa WAJA" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefettura" @@ -7254,7 +7373,7 @@ msgstr "" msgctxt "uses 'here'" msgid "Information about the WAP Awards and its rules can be found %s." msgstr "" -"Le informazioni sui premi WAP e le sue regole sono disponibili presso: %s." +"Le informazioni sui diplomi WAP e le sue regole sono disponibili presso: %s." #: application/views/awards/wap/index.php:25 msgid "" @@ -7269,15 +7388,20 @@ msgid "Show WAP Map" msgstr "Mostra mappa WAP" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Provincia" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Provincia" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Collegate tutte le province della Cina" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7289,7 +7413,7 @@ msgstr "" "le province, comuni, regioni autonome e regioni amministrative speciali " "della Cina, promuovendo una più profonda comprensione della Cina." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7297,7 +7421,7 @@ msgstr "" "Il premio può essere ottenuto attraverso l'accumulo a lungo termine di " "contatti o raggiunto in un unico sforzo durante il contest annuale WAPC." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7307,6 +7431,10 @@ msgstr "" "Cina/318, Hong Kong/321, Macao/152, Taiwan/386, Isole Pratas/505 o Scoglio " "di Scarborough/506) e Stato valido (ADIF: DXCC e STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Mostra mappa WAPC" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7332,10 +7460,10 @@ msgid "" "101st year, they have redesigned the certificates and the program in hopes " "of streamlining and improving the award program." msgstr "" -"Il premio più popolare dell'ARRL è il Worked All States Award. Migliaia e " +"Il diploma più popolare dell'ARRL è il Worked All States Award. Migliaia e " "migliaia di premi sono stati assegnati ai radioamatori di tutto il mondo. " "Nel 101° anno di ARRL, hanno ridisegnato i certificati e il programma nella " -"speranza di semplificare e migliorare il programma dei premi." +"speranza di semplificare e migliorare il programma dei diplomi." #: application/views/awards/was/index.php:27 msgid "" @@ -7413,7 +7541,7 @@ msgid "" msgstr "" "Più di 26.000 aree protette di flora e fauna (PFF) in tutto il mondo sono " "già registrate nella directory WWFF. Cacciatori e Attivatori possono " -"richiedere premi, sia a livello globale che nazionale." +"richiedere diplomi, sia a livello globale che nazionale." #: application/views/awards/wwff/index.php:11 msgid "Fields taken for this Award: WWFF (ADIF: WWFF_REF)" @@ -7423,8 +7551,8 @@ msgstr "Campi presi in considerazione per questo premio: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "Referenza WWFF" @@ -7479,221 +7607,221 @@ msgstr "" "Il backup delle note è stato completato correttamente. L'output è " "disponibile all'indirizzo" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Fare clic per preparare il registro." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "per sintonizzare la frequenza" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Popup bloccato" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Il pop-up è stato bloccato! Consenti i pop-up per questo sito in modo " "permanente." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Connessione CAT richiesta" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Abilita la connessione CAT per sintonizzare la radio" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Cancella filtri" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Filtro di banda preservato (blocco di banda attivo)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio impostato su Nessuno - Connessione CAT disabilitata" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio sintonizzata" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Sintonizzato su" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Sintonizzazione fallita" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Impossibile sintonizzare la radio sulla frequenza" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO Pronto" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "inviato al modulo di log" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "Connessione CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Fare clic per abilitare la connessione CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT segue la radio - Clicca per disabilitare" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "" "Fai clic per abilitare il blocco di banda (richiede la connessione CAT)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Blocco di banda attivo - Clicca per disattivare" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Blocco di banda" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "" "Blocco di banda abilitato - il filtro di banda seguirà la banda della radio" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Filtro di banda cambiato in" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "per ricetrasmettitore" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Filtro di frequenza impostato su" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "" "Frequenza al di fuori delle bande conosciute - mostrando tutte le bande" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "In attesa dei dati della radio..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "I miei preferiti" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Caricamento dei preferiti non riuscito" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "Modalità applicate. Filtro di banda preservato (connessione CAT attiva)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Applicato le tue bande e modo preferite" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "I miei sotto-modi" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Filtro sotto-modi abilitato" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Filtro sotto-modi disabilitato - mostrando tutto" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Sotto-modi richiesti" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Configura in Impostazioni utente - Modalità" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Nessun sotto-modo configurata - configura in Impostazioni utente - Modi" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Nessun sotto-modo abilitato nelle impostazioni - mostrando tutti gli spot" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Disabilitato - nessuna sotto-modo abilitato per questa modalità nelle " "Impostazioni utente" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Commuta filtro modo CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Attiva filtro modi digitali" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Abilita filtro fonia" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Preferiti" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Salva i filtri correnti..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Inserisci un nome per questo preset di filtro:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Preimpostazione filtro salvata" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Preimpostazione filtro caricata" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Preimpostazione filtro eliminato" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Sei sicuro di eliminare questa preimpostazione filtro?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Nessuna preimpostazione filtro salvata" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7701,64 +7829,64 @@ msgstr "" "È stato raggiunto il massimo di 20 preimpostazioni dei filtri. Eliminane " "alcuni prima di aggiungerne di nuovi." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Caricamento dati dal DX Cluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Ultimo recupero per" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Età massima" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Recuperato a" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Prossimo aggiornamento in" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minuti" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "secondi" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spot recuperati" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "mostrando" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "mostrando tutto" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Filtri attivi" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Recuperando..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Non collegato" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Collegato, non Confermato" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7766,268 +7894,271 @@ msgstr "Collegato, non Confermato" msgid "LoTW User" msgstr "Utente LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nuovo nominativo" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nuovo Continente" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nuovo Paese" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Collegato precedentemente" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Collegato in %s con %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "da" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "segnalato" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Spot recenti (<5 minuti)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Contest" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Clicca per visualizzare" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "su QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Clicca per visualizzare %s su QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Vedi dettagli per" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Collegato in" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Non collegato su questa banda" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "Utente LoTW. Ultimo caricamento %d giorni fa" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Fai clic per visualizzare su POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Clicca per visualizzare su SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Fai clic per visualizzare su cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Clicca per visualizzare su IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Vedi i dettagli per continente" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Vedi i dettagli per il continente %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Vedi i dettagli per CQ Zone" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Vedi i dettagli per CQ Zone %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "in" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Esci dalla modalità a schermo intero" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Attiva/disattiva schermo intero" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Il filtro per banda è controllato dalla tua radio quando la connessione CAT " "è abilitata" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Fai clic per preparare il log" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(richiede connessione CAT)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Segnalatore" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Commento" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Età" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "In arrivo" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "In uscita" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spot" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "segnalatori" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Attendere, per favore" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Attendere %s secondi prima di inviare un altro nominativo al modulo QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Caricamento degli spot..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Nessuno spot trovato" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Nessun dato disponibile" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Nessun spot trovato con i filtri selezionati" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Errore nel caricamento degli spot. Riprova." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Mostra tutti i modi" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Mostra tutti gli spot" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Disegna i segnalatori" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Estendi mappa" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Mostra giorno/notte" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Il tuo QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Torna all'inizio" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Help DX Cluster" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Modalità compatta - Nascondi/Mostra menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "RTX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8035,317 +8166,282 @@ msgstr "RTX:" msgid "None" msgstr "Nessuna" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Polling - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Seleziona tutti i continenti" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Mondo" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Attiva filtro continente Africa" -#: application/views/bandmap/list.php:255 -msgid "Toggle Antarctica continent filter" -msgstr "Attiva/disattiva il filtro del continente Antarctica" - #: application/views/bandmap/list.php:256 +msgid "Toggle Antarctica continent filter" +msgstr "Attiva/disattiva il filtro del continente Antartide" + +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Attiva/disattiva il filtro del continente Asia" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Attiva il filtro continente Europa" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Attiva/disattiva filtro continente America del Nord" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Uscita filtro continente Oceania" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Attiva/disattiva il filtro del continente Sud America" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Filtri avanzati" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Mantieni" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "e clicca per selezionare più opzioni" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Stato DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Fonia" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" -msgstr "DIGI" +msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" -msgstr "" +msgstr "Bandiere necessarie" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Nominativo collegato" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" -msgstr "" +msgstr "Bandiere addizionali" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Recenti (<5 minuti)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spot dal Continente" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Stazioni riportate per continente" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Applica filtri" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Filtra Preferiti" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Cancella tutti i filtri tranne De Continent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Attiva/disattiva filtro banda 160m" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Attiva/disattiva filtro della banda 80m" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Attiva/disattiva il filtro della banda 60m" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Attiva/disattiva il filtro della banda dei 40m" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Attiva/disattiva il filtro della banda 30m" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Attiva/disattiva il filtro della banda 20m" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Attiva/disattiva il filtro della banda 17m" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Attiva/disattiva il filtro della banda 15m" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Attiva/disattiva il filtro della banda 12m" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Attiva/disattiva il filtro della banda 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Attiva/disattiva il filtro della banda 6m" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Attiva/disattiva il filtro delle bande VHF" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Attiva/disattiva il filtro delle bande UHF" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Attiva/disattiva il filtro delle bande SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Caricamento dei sotto-modi..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Attiva filtro utente LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "Utenti LoTW" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" "Attiva filtro DX Spot (continente segnalato ≠ continente di chi segnala)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Attiva/disattiva filtro nuovi continenti" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nuovi continenti" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Attiva filtro Nuove Entità" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nuove entità" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Attiva/disattiva filtro nuovi nominativi" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nuovi nominativi" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Attiva il filtro per gli spot recenti (< 5 minuti)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Recente" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Attiva/disattiva filtro contest" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Attiva/disattiva Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" -msgstr "" +msgstr "Referenziato" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Apri la visualizzazione della mappa DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "Mappa DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Cerca spot..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Cerca colonna" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Nota: La mappa mostra le posizioni delle entità DXCC, non le posizioni " -"effettive" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Tutte le colonne" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Età in minuti" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Informazioni sullo Spot" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Sottomodo" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Nominativo segnalato" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "Stazione DX" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "Entità DXCC" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entità" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Nominativo del segnalatore" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Continente del segnalatore" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Zona CQ del segnalatore" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Data ultimo QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Speciale" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8353,6 +8449,62 @@ msgstr "" msgid "Message" msgstr "Messaggio" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Continente del segnalatore" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Zona CQ del segnalatore" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Cerca spot..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Nota: La mappa mostra le posizioni delle entità DXCC, non le posizioni " +"effettive" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Età in minuti" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Nominativo segnalato" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Bandiera" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "Entità DXCC" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Nominativo del segnalatore" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Data ultimo QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Speciale" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Bandiere speciali" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Inserisci numeri validi per la frequenza" @@ -8631,7 +8783,7 @@ msgstr "" "codice di riferimento IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8749,19 +8901,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8795,15 +8947,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Si" @@ -8818,19 +8972,19 @@ msgstr "Si" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8864,16 +9018,17 @@ msgstr "Si" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "No" @@ -8905,7 +9060,7 @@ msgid "First QSO" msgstr "Primo QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Ultimo QSO" @@ -8930,7 +9085,7 @@ msgstr "Problemi riscontrati:" #: application/views/calltester/comparison_result.php:30 msgid "Logbook Model Results" -msgstr "" +msgstr "Risultati del modello del logbook" #: application/views/calltester/comparison_result.php:44 msgid "Comparison Summary" @@ -8942,7 +9097,7 @@ msgstr "Presente solo nella Classe DXCC:" #: application/views/calltester/comparison_result.php:46 msgid "Only found in Logbook Model:" -msgstr "" +msgstr "Trovato unicamente nel modello di Logbook:" #: application/views/calltester/comparison_result.php:47 msgid "Found in both methods:" @@ -9015,8 +9170,8 @@ msgid "Callsign DXCC identification" msgstr "Identificazione del DXCC relativo al nominativo" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Nominativo: " @@ -9253,7 +9408,7 @@ msgstr "" #: application/views/club/permissions.php:294 msgid "User Callsign" -msgstr "Indicativo di chiamata dell'utente" +msgstr "Callsign dell'utente" #: application/views/club/permissions.php:313 msgid "Notify the user via email about the change" @@ -9266,7 +9421,7 @@ msgstr "Sei sicuro di voler cancellare questo utente dal club/sezione?" #: application/views/club/permissions.php:347 #, php-format msgid "Callsign: %s" -msgstr "Indicativo di chiamata: %s" +msgstr "Callsign: %s" #: application/views/club/permissions.php:348 #, php-format @@ -9309,8 +9464,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9323,7 +9478,7 @@ msgstr "Nome del profilo" #: application/views/oqrs/showrequests.php:91 #: application/views/qrz/export.php:40 application/views/webadif/export.php:42 msgid "Station callsign" -msgstr "Indicativo di chiamata della stazione" +msgstr "Callsign della stazione" #: application/views/clublog/export.php:36 #: application/views/hrdlog/export.php:36 application/views/qrz/export.php:41 @@ -9622,7 +9777,7 @@ msgstr "Nome ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9692,7 +9847,7 @@ msgstr "Crea" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Nome Contest" @@ -9745,7 +9900,7 @@ msgstr "Progressivo + Locatore + Exchange" #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:678 application/views/qso/index.php:454 msgid "Operator Callsign" -msgstr "Indicativo di chiamata dell'operatore" +msgstr "Callsign dell'operatore" #: application/views/contesting/index.php:50 #: application/views/contesting/index.php:55 @@ -9771,8 +9926,8 @@ msgid "Locator" msgstr "Locatore" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9887,11 +10042,11 @@ msgstr "Identificativo" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Abilitato" @@ -9986,7 +10141,8 @@ msgid "Cron List" msgstr "Lista Cron" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10183,9 +10339,9 @@ msgstr "Mancanti" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10207,10 +10363,10 @@ msgstr "Mancanti" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Inviata" @@ -10220,9 +10376,9 @@ msgstr "Inviata" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10243,10 +10399,10 @@ msgstr "Inviata" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Ricevuta" @@ -10254,17 +10410,17 @@ msgstr "Ricevuta" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10287,11 +10443,11 @@ msgstr "Ricevuta" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Richiesta" @@ -10317,6 +10473,38 @@ msgstr "Ultimo aggiornamento alle %s." msgid "Data provided by HAMqsl." msgstr "Dati forniti da HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "Indice K: Indicatore globale dell'attività geomagnetica (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "Indice A: Indice dell'attività geomagnetica giornaliera" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Indice del flusso solare" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Velocità del vento solare (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Rapporto segnale/rumore" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Livello di flusso di raggi X solari" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Numero di macchie solari" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Livello di attività dell'aurora boreale (Kp borealis)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Numero di QSO per questo giorno della settimana" @@ -10396,7 +10584,7 @@ msgstr "Data di inizio" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Data di fine" @@ -10580,29 +10768,29 @@ msgstr "Carica File" #: application/views/debug/index.php:2 msgid "Are you sure you want to clear the cache?" -msgstr "" +msgstr "Sei sicuro di voler svuotare la cache?" #: application/views/debug/index.php:3 msgid "Failed to clear cache!" -msgstr "" +msgstr "Pulizia cache fallita!" #: application/views/debug/index.php:4 #, php-format msgid "Last version check: %s" -msgstr "" +msgstr "Controllo ultima versione: %s" #: application/views/debug/index.php:5 msgid "Wavelog is up to date!" -msgstr "" +msgstr "Wavelog è aggiornato!" #: application/views/debug/index.php:6 #, php-format msgid "There is a newer version available: %s" -msgstr "" +msgstr "È disponibile una nuova versione: %s" #: application/views/debug/index.php:7 msgid "The Remote Repository doesn't know your branch." -msgstr "" +msgstr "Il repository remoto non conosce il tuo branch." #: application/views/debug/index.php:32 msgid "Wavelog Information" @@ -10735,7 +10923,8 @@ msgstr "Successo" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Fallito" @@ -10814,107 +11003,130 @@ msgstr "Moduli" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Installato" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Non installato" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" -msgstr "" +msgstr "Informazioni sulla cache" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" -msgstr "" +msgstr "Configurazione attuale" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" -msgstr "" +msgstr "Adattatore primario" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" -msgstr "" +msgstr "Adattatore secondario" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" -msgstr "" +msgstr "Percorso per l'adattatore %s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "Prefisso Chiave" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" -msgstr "" +msgstr "Dettagli cache" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" -msgstr "" +msgstr "Dimensione totale" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" -msgstr "" +msgstr "Numero di tasti" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "La cache sta lavorando correttamente. Tutto ok!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"La cache sta attualmente utilizzando l'adattatore secondario perché il " +"primario non è disponibile. Controlla le autorizzazioni dei file, le " +"estensioni PHP e/o la connessione di rete ai servizi (se stai usando redis/" +"memcached)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"La cache non funziona! Attualmente il sistema sta utilizzando un adattatore " +"%s. Controlla i permessi dei file, le estensioni PHP e/o la connessione di " +"rete ai servizi (se si utilizza redis/memcached). Puoi continuare a usare " +"Wavelog, ma nessun valore verrà memorizzato nella cache (il che è " +"sconsigliato)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" -msgstr "" - -#: application/views/debug/index.php:496 -msgid "Clear Cache" -msgstr "" +msgstr "Adattatori disponibili" #: application/views/debug/index.php:543 +msgid "Clear Cache" +msgstr "Svuota la cache" + +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Informazioni su Git" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Etichetta" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Ultimo controllo" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Controlla se ci sono nuove versioni" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10922,77 +11134,77 @@ msgstr "Controlla se ci sono nuove versioni" msgid "Update now" msgstr "Aggiorna ora" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Data di download del file" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "File" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Ultimo aggiornamento" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "Aggiornamento DXCC da Clulog" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Aggiorna" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Download del file DOK" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "Scarica utenti LoTW" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "Download del file POTA" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "Download del file SCP" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "Download del file SOTA" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "Download del file WWFF" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "Aggiornamento TLE" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Aggiorna Hams Of Note" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "Locatori VUCC" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Manutenzione del database QSO" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -11002,143 +11214,143 @@ msgstr[0] "" msgstr[1] "" "Il Database contiene %d collegamenti senza un profilo stazione (ubicazione)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Si prega di contrassegnare i QSOs e riassegnarli a una posizione della " "stazione esistente:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Posizione target" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Riassegna" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Ogni QSO nel tuo database è assegnato a un profilo stazione (posizione)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Tutto ok" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albanese" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Armeno" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bosniaco" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Bulgaro" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Cinese (semplificato)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Croato" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Ceco" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Olandese" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Inglese" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estone" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Finlandese" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Francese" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Tedesco" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Greco" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Ungherese" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Giapponese" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Lettone" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Lituano" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Montenegrino" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polacco" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portoghese" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Serbo" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Slovacco" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Sloveno" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Spagnolo" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Svedese" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turco" @@ -11201,7 +11413,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Solo i QSOs con un locatore definito saranno esportati!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "Info QSL" @@ -11450,7 +11662,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "Messaggio QSL" @@ -11571,7 +11783,7 @@ msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." msgstr "" -"Scegli questa opzione se hai manualmente caricato tutti i tuoi QSO su eQSL o " +"Scegli questa opzione se hai caricato manualmente tutti i tuoi QSO su eQSL o " "se l'ultima richiesta è andata in timeout." #: application/views/eqslcard/index.php:10 @@ -11587,31 +11799,32 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Vista" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Vuoto" @@ -11702,7 +11915,7 @@ msgstr "I QSO sono contrassegnati come esportati su HRDLog." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Modifica QSO" @@ -12100,77 +12313,77 @@ msgstr "Informazioni sulla versione" msgid "Failed to load the modal. Please try again." msgstr "Impossibile caricare il modulo. Per favore riprova." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Descrizione:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Descrizione della query" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "La tua query è stata salvata!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Modifica query" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Query salvate:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Esegui Query" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Query salvate" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Devi definire una query prima di cercare!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Esporta in ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Apri il registro avanzato" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Attenzione! Sei sicuro di voler eliminare questa query salvata?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "La query memorizzata è stata eliminata!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "La query memorizzata non può essere eliminata. Per favore riprova!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "La descrizione della query è stata aggiornata!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "" "Qualcosa è andato storto con il salvataggio. Ti preghiamo di riprovare!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12180,15 +12393,15 @@ msgstr "" "Controlla quale DXCC per questa particolare posizione è quello corretto. Se " "sei sicuro, ignora questo avviso." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Quantità: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Locatori: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12196,57 +12409,63 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatori" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" +"Ricerca della posizione non riuscita. Si prega di controllare la console del " +"browser." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "locatore" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Conteggio totale" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "Cartolina per " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Attenzione! Sei sicuro di voler eliminare questa QSL?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartolina eQSL" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "Cartolina eQSL per " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "Immagine della QSL" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Fronte QSL:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Retro QSL:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Aggiungi ulteriori QSO a una QSL" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Qualcosa è andato storto. Per favore riprova!" @@ -12400,7 +12619,7 @@ msgid "Satellite Pass" msgstr "Passaggio del satellite" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Amministratore" @@ -12425,7 +12644,7 @@ msgid "Log" msgstr "Registro" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12522,7 +12741,7 @@ msgid "Gridsquare Zone checker" msgstr "Controlla locatori" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Aiuto" @@ -12657,7 +12876,7 @@ msgid "Total height of one label" msgstr "Altezza totale di un'etichetta" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Dimensione del carattere" @@ -12719,14 +12938,14 @@ msgstr "Orientamento del foglio" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Orizzontale" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Verticale" @@ -12745,47 +12964,52 @@ msgstr "" "di significativo, magari lo stile dell'etichetta." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Segna QSL come stampata" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Stampa" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Opzioni di stampa etichette" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Crea un nuovo tipo di etichetta" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Crea un nuovo tipo di foglio" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Tipi di foglio" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Larghezza" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Altezza" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Utilizzato dalle etichette" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Orientamento" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Tipi di etichette" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12793,56 +13017,66 @@ msgstr "Tipi di etichette" msgid "QSOs" msgstr "QSO" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Usa per la stampa" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Nessun foglio assegnato" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Etichette QSL in attesa" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSO in attesa" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Visualizza QSO" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Includere il mio call?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Includere il locatore?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Includere riferimento? (SIG, SOTA, POTA, IOTA, WWFF; se disponibile nella " "posizione)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Includere Via (se compilato)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Includere QSLMSG (se compilato)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Includere il messaggio TNX?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Iniziare a stampare a?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Inserisci la posizione della prima etichetta da stampare" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -13002,21 +13236,21 @@ msgstr "Zona CQ DXCC" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Stazione" @@ -13100,88 +13334,92 @@ msgstr "" "Avviso. Questo strumento può essere pericoloso per i tuoi dati e dovrebbe " "essere usato solo se sai cosa stai facendo." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Tutte le locations delle stazioni" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "Controlla tutti i QSO nel logbook per zone CQ errate" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Usa Wavelog per determinare la CQ Zone per tutti i QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Controlla" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "Controlla tutti i QSO nel logbook per le ITU Zone errate" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Usa Wavelog per determinare la zona ITU per tutti i QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Controlla locatori" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Controlla i grid squares che non corrispondono al DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" -msgstr "Sistema continente" +msgstr "Correggi continente" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Aggiorna le informazioni sul continente mancanti o errate" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Aggiorna le informazioni mancanti su stato/provincia" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Aggiorna le distanze" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Calcola e aggiorna le informazioni sulla distanza per i QSO" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "Controlla tutti i QSO nel registro per DXCC errati" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Usa Wavelog per determinare DXCC per tutti i QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Cerca i QSO con locatore mancante nel registro" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Ricerca nel registro per impostare il locatore" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Questa funzione è limitata a 150 nominativi per ogni esecuzione!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Controlla IOTA rispetto a DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Usa Wavelog per controllare IOTA contro DXCC" @@ -13226,10 +13464,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Regione" @@ -13298,9 +13536,9 @@ msgid "QSL Sent Method" msgstr "Metodo di invio QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL tramite" @@ -13324,84 +13562,84 @@ msgstr "Banda RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Non valido" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Verificato" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Diretta" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Elettronica" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13758,26 +13996,26 @@ msgstr "Locatori per" msgid "Non DXCC matching gridsquare" msgstr "Locatori non corrispondenti al DXCC" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Da" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Nessuno/Vuoto" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13785,51 +14023,69 @@ msgstr "" "Distanza in chilometri. La ricerca troverà distanze maggiori o uguali a " "questo valore." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Durata" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Durata in minuti. La ricerca cercherà durate maggiori o uguali a questo " +"valore." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Ordina per colonna" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "Orario QSO" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO Modificato" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Direzione di ordinamento" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Discendente" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Ascendente" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Applica filtri" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "Filtri QSL" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL inviata" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13846,32 +14102,32 @@ msgstr "QSL inviata" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "In coda" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13900,279 +14156,279 @@ msgstr "In coda" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Invalido (Ignora)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL ricevuta" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "Metodo invio QSL" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "Metodo di ricezione QSL" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW inviato" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW ricevuto" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog inviato" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog ricevuto" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL inviata" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL ricevuta" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL inviato" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL ricevuto" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "Immagini QSL" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ inviato" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ ricevuto" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Filtri rapidi" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Ricerca rapida con selezionato: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Ricerca data" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Cerca DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Cerca Stato" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Cerca locatore" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Cerca Zona CQ" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Cerca Zona ITU" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Modalità di ricerca" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Cerca banda" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Cerca IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Cerca SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Cerca POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Cerca WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Cerca Operatore" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Attenzione! Sei sicuro di voler eliminare il/i QSO selezionato/i?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO saranno eliminati" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Con selezionato: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Aggiornamento dal Callbook" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "Coda Bureau" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "Coda Direct" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" -msgstr "Coda QSL Elettronica" +msgstr "In coda (elettronica)" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Inviato (Bureau)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Inviato (Direct)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" -msgstr "Inviato (QSL elettronica)" +msgstr "Inviata (elettronica)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Non inviato" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL non richiesta" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Non ricevuta" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Ricevuto (Bureau)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Ricevuto (Direct)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" -msgstr "Ricevuto (QSL elettronica)" +msgstr "Ricevuta (elettronica)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Crea ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Stampa etichetta" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "Presentazione QSL" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Risultati" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplicati" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Mappa del mondo" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Strumenti per database" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Ultima modifica" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "Da" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "Messaggio QSL inviato" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "Messaggio QSL ricevuto" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Le mie referenze" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" -msgstr "AZ ant" +msgstr "Az ant" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Azimut dell'antenna" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" -msgstr "EL antenna" +msgstr "El ant" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Elevazione dell'antenna" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Potenza di trasmissione" @@ -14252,15 +14508,15 @@ msgstr "Risultati per l'aggiornamento del locatore:" msgid "The number of QSOs updated for gridsquare is" msgstr "Il numero di QSO aggiornati per il quadrato di griglia è" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Includere Via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Includi QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Includi il messaggio TNX" @@ -14327,35 +14583,35 @@ msgstr "Paesu attualmente supportati" msgid "Basic QSO Information" msgstr "Informazioni di base sul QSO" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Dettagli della stazione" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Servizi di conferma" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Informazioni geografiche" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" -msgstr "Programmi di premi" +msgstr "Programmi di diplomi" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Informazioni aggiuntive" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Dettagli tecnici" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Solo per debug" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14363,7 +14619,7 @@ msgstr "" "Questa funzione è pensata solo per scopi di debug e non per essere " "visualizzato di default" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Livelli mappa" @@ -14491,7 +14747,7 @@ msgid "Date Expires" msgstr "Data di Scadenza" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Last upload" @@ -15165,7 +15421,7 @@ msgstr "C'è qualche informazione aggiuntiva che dobbiamo sapere?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "E-mail" @@ -15182,11 +15438,11 @@ msgstr "Invia richiesta non in log" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Tramite" @@ -15196,7 +15452,7 @@ msgstr "Nessun QSO trovato. Sembra che tu non fossi attivo in questo momento." #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Aggiungi alla coda di stampa" @@ -15617,7 +15873,7 @@ msgstr "Segna le QSL richieste come inviate" msgid "No QSLs to print were found!" msgstr "Nessuna QSL da stampare trovata!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15761,7 +16017,7 @@ msgstr "Dare valore di potenza in Watt. Includere solo numeri nell input." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Potenza di Trasmissione (W)" @@ -15823,9 +16079,9 @@ msgid "Station County" msgstr "Contea della Stazione" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "Informazioni SIG" @@ -15873,7 +16129,7 @@ msgstr "Nota: Non modificabile. Sola visualizzazione." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Modificato" @@ -15958,10 +16214,12 @@ msgid "" "You have already filled in a callsign. First finish this QSO before filling " "the last spot from DXcluster." msgstr "" +"Hai già inserito un nominativo. Completa questo QSO prima di inserire " +"l'ultimo spot dal DXcluster." #: application/views/qso/index.php:47 msgid "No spots found in this frequency." -msgstr "" +msgstr "Nessuno spot trovato in questa frequenza." #: application/views/qso/index.php:93 msgid "LIVE" @@ -15996,16 +16254,16 @@ msgstr "Cerca DXCluster per l'ultimo Spot" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "Referenza IOTA" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "Referenza SOTA" @@ -16045,11 +16303,11 @@ msgstr "Per esempio: Q03" msgid "E-mail address of QSO-partner" msgstr "Indirizzo e-mail del corrispondente" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Nome Satellite" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Modo Satellite" @@ -16155,7 +16413,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Di seguito è riportato un elenco delle radio attive collegate a Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16163,16 +16421,34 @@ msgstr "" "Se non hai ancora collegato alcuna radio, consulta la pagina API per " "generare le chiavi API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Come operatore di stazione del club, puoi impostare una radio predefinita " +"che si applica solo a te. Questo ti consente di avere una radio predefinita " +"che viene selezionata automaticamente quando accedi, pur potendo utilizzare " +"altre radio se lo desideri." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Come utente normale, puoi impostare una radio predefinita per te stesso. " +"Questo ti permette di avere una radio predefinita che viene selezionata " +"automaticamente quando effettui l'accesso, pur potendo utilizzare altre " +"radio se lo desideri." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Puoi scoprire come utilizzare il %s nella wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Puoi scoprire come utilizzare le %sfunzioni radio%s nella wiki." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "funzioni radio" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Attendere prego..." @@ -16515,13 +16791,6 @@ msgstr "Tempo AOS" msgid "LOS Time" msgstr "LOS Tempo" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Durata" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Percorso" @@ -16638,6 +16907,11 @@ msgstr "Salva query" msgid "Stored queries" msgstr "Query salvate" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Puoi scoprire come utilizzare il %s nella wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "funzioni di filtro di ricerca" @@ -16715,35 +16989,35 @@ msgstr "Segna QSL Inviata (Direct)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Segna QSL Ricevuta (Bureau)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Segna QSL Ricevuta (Diretta)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Segna QSL come richiesto (Bureau)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Segna QSL come richiesto (Diretta)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Segna QSL non come richiesto" @@ -17293,7 +17567,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemi? Prova a cercare nella %swiki%s." @@ -17509,7 +17783,7 @@ msgid "Link Location" msgstr "Posizione del link" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Nome Profilo" @@ -17529,19 +17803,19 @@ msgstr "" "sessione dalle aree del registro alla analisi. Ottimo quando operi in più " "posizioni ma fanno parte dello stesso cerchio DXCC o VUCC." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Modifica postazioni collegate" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Sito dei visitatori" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Posizioni delle stazioni" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17549,13 +17823,13 @@ msgstr "" "Le posizioni delle stazioni definiscono le sedi operative, come il tuo QTH, " "il QTH di un amico o una stazione portatile." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "Simile ai registri di stazione, un profilo della stazione raggruppa un " "insieme di QSO." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17563,7 +17837,7 @@ msgstr "" "Solo una stazione può essere attiva alla volta. Nella tabella qui sotto " "questo è mostrato con il badge -Stazione Attiva-." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17571,23 +17845,23 @@ msgstr "" "La colonna 'Collegato' mostra se la posizione della stazione è collegata con " "il registro di stazione attivo selezionato sopra." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Crea una posizione della stazione" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Mostra solo le posizioni dal registro di stazione" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Mostra tutte le posizioni" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Mostra un elenco di località" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17595,7 +17869,7 @@ msgstr "" "Attenzione: è necessario impostare una posizione della stazione attiva. Vai " "su Chiamata->Posizione della stazione per selezionarne una." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17603,23 +17877,23 @@ msgstr "" "A causa di recenti modifiche all'interno di Wavelog, è necessario " "riassegnare i QSO ai profili della tua stazione." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Manutenzione" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Per favore, riassegna loro a " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Collegato" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Favorito" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "segna/non segnare come preferito" @@ -18218,7 +18492,7 @@ msgstr "DX Waterfall" #: application/views/user/edit.php:451 msgid "squelched" -msgstr "" +msgstr "squelched" #: application/views/user/edit.php:454 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." @@ -18252,7 +18526,7 @@ msgstr "Quicklog - Azione al rilascio del tasto Invio" #: application/views/user/edit.php:493 msgid "Log Callsign" -msgstr "Chiamata di log" +msgstr "Inserisci a log" #: application/views/user/edit.php:495 msgid "" @@ -18380,43 +18654,47 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Mostra campi sulla scheda QSO" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Mostra la mappa nella finestra QSO" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Gli elementi abilitati verranno mostrati nella scheda QSO anziché nella " "scheda Generale." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Impostazioni della richiesta QSL online (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Testo globale" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Questo testo è un testo facoltativo che può essere visualizzato in cima alla " "pagina OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Ricerca raggruppata" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" -msgstr "Spento" +msgstr "Disattivo" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" -msgstr "Acceso" +msgstr "Attivo" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18424,13 +18702,13 @@ msgstr "" "Quando questo è attivo, tutte le località della stazione con OQRS attivo " "verranno cercate contemporaneamente." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" "Mostra il nome della posizione della stazione nei risultati di ricerca " "raggruppati" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18438,11 +18716,11 @@ msgstr "" "Se la ricerca raggruppata è ATTIVA, puoi decidere se il nome della posizione " "della stazione deve essere mostrato nella tabella dei risultati." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Corrispondenza OQRS automatica" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18451,69 +18729,69 @@ msgstr "" "sistema cercherà di abbinare le richieste in arrivo con i log esistenti in " "modo automatico." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Abbinamento OQRS automatico per richieste dirette" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Se questo è attivo, il matching automatico OQRS per la richiesta diretta " "avverrà." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Valori predefiniti" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Impostazioni per la banda predefinita e conferma" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Default Band" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Metodi QSL predefiniti" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Servizi di terze parti" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Nome utente di Logbook of The World (LoTW)" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Password di Logbook of The World (LoTW)" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Test di accesso" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Nome utente eQSL.cc" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Password eQSL.cc" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Email di ClubLog" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Password del Club Log" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18523,15 +18801,15 @@ msgstr "" "generare una password per l'app per utilizzare Clublog in Wavelog. Visita " "%sle impostazioni di Clublog%s per farlo." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widget" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "Widget On-Air" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18539,16 +18817,16 @@ msgstr "" "Nota: Per utilizzare questo widget, è necessario avere almeno una radio CAT " "configurata e funzionante." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Quando abilitato, il widget sarà disponibile su %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Mostra il tempo di \"Ultima visualizzazione\"" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18556,15 +18834,15 @@ msgstr "" "Questa impostazione controlla se l'orario 'Ultimo accesso' viene " "visualizzato nel widget o meno." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Mostra solo la radio aggiornata più di recente" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "No, mostra tutte le radio" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18576,15 +18854,15 @@ msgstr "" "aggiornata più di recente. Nel caso tu abbia solo una radio, questa " "impostazione non ha effetto." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "Widget QSOs" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Mostra l'ora esatta del QSO" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18592,40 +18870,40 @@ msgstr "" "Questa impostazione controlla se l'orario esatto del QSO deve essere " "visualizzato nel widget QSO oppure no." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Varie" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Caricamento dello stato AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Carica lo stato dei QSOs SAT su" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL del server Mastodon" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principale del tuo server Mastodon, ad esempio %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Caratteristiche Winkeyer abilitate" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18634,25 +18912,25 @@ msgstr "" "Il supporto per Winkeyer in Wavelog è molto sperimentale. Leggi prima il " "wiki su %s prima di abilitare." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Chiave di alimentazione privata" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Guarda il tuo profilo su %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Mostra solo passaggi funzionanti" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18661,7 +18939,7 @@ msgstr "" "impostata nel tuo account hams.at. Richiede che la chiave del feed privato " "sia impostata." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Salva Account" @@ -19087,7 +19365,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "ultimo inviato" @@ -19115,119 +19393,127 @@ msgstr "Distanza Totale" msgid "Other Path" msgstr "Altro percorso" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"Un solo gridsquare è stato inserito nel campo delle griglie VUCC, che " +"dovrebbe contenere due o quattro gridsquare invece di uno singolo." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Azimut dell'antenna" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Elevazione dell'antenna" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "La cartolina QSL è stata inviata via bureau" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "La cartolina QSL è stata inviata via diretta" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "La QSL è stata inviata elettronicamente" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "La QSL è stata inviata tramite manager" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "La QSL è stata inviata" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "La cartolina QSL è stata ricevuta via bureau" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "La cartolina QSL è stata ricevuta via diretta" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "La QSL è stata ricevuta elettronicamente" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "La QSL è stata ricevuta tramite manager" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "La QSL è stata ricevuta" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Questa stazione utilizza LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Questo QSO è stato confermato il" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Questo QSO è confermato su LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Questo QSO è confermato su eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Questo QSO è confermato su QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Questo QSO è confermato su Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Questo QSO è confermato su DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Più QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Condividi" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Dettagli" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Carica immagine fronte cartolina QSL" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Carica immagine cartolina QSL" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Carica immagine retro cartolina QSL" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Segna QSL Ricevuta (Elettronico)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "immagine eQSL" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO non trovato" @@ -19395,15 +19681,15 @@ msgstr "Zone potenzialmente errate" #: application/views/zonechecker/result.php:19 msgid "Cache Hits" -msgstr "" +msgstr "Risultati della cache" #: application/views/zonechecker/result.php:20 msgid "Cache Misses" -msgstr "" +msgstr "Perdite della cache" #: application/views/zonechecker/result.php:21 msgid "Hit Rate" -msgstr "" +msgstr "Tasso di successo" #: application/views/zonechecker/result.php:55 msgid "ITUz" @@ -19421,6 +19707,19 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "La cache sta utilizzando l'adattatore secondario perché il primario non è " +#~ "disponibile." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Errore nel ottenere una chiave di sessione per la query HamQTH" + +#~ msgid "radio functions" +#~ msgstr "funzioni radio" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Zone CQ registrate incorrettamente" diff --git a/application/locale/ja/LC_MESSAGES/messages.mo b/application/locale/ja/LC_MESSAGES/messages.mo index 339e744c7..9ffdb47f8 100644 Binary files a/application/locale/ja/LC_MESSAGES/messages.mo and b/application/locale/ja/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ja/LC_MESSAGES/messages.po b/application/locale/ja/LC_MESSAGES/messages.po index ffad23e92..e6817ba7e 100644 --- a/application/locale/ja/LC_MESSAGES/messages.po +++ b/application/locale/ja/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-05 14:02+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-12 17:48+0000\n" "Last-Translator: \"S.NAKAO(JG3HLX)\" \n" "Language-Team: Japanese \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -71,8 +71,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -83,11 +83,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -118,11 +118,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -143,8 +143,8 @@ msgid "Activated Gridsquare Map" msgstr "アクティブ化されたグリッドロケーターマップ" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -306,51 +306,51 @@ msgstr "APIキー %s は削除されました" msgid "Awards" msgstr "アワード" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "アワード歴 - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -359,13 +359,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -377,29 +377,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "アワード歴 - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "アワード歴- WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "ログ表示 - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -412,43 +412,58 @@ msgstr "ログ表示 - VUCC" msgid "Log View" msgstr "ログ表示" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " 及びバンド " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "そして" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "すべてのバンド(SATを除く)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "バンド" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " 及び衛星 " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " 及び軌道の種類 " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " および伝播 " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " とモード " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " そして " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -469,14 +484,14 @@ msgstr " そして " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -491,16 +506,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -514,111 +529,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ(全ゾーンと交信済み)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "全州対応済み(WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "米国の郡" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "ログ表示 - 郡" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "アワード歴 - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "グリッドスクエアは機能した" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "LoTWでグリッドスクエアを確認" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "グリッドスクエアは紙のQSLで確認済み" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "作業したグリッドスクエアの合計" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial アワード (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "アワード - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "ITUゾーン" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -649,8 +664,7 @@ msgstr "作成モード" msgid "Edit Band" msgstr "バンドを編集" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -683,15 +697,24 @@ msgstr "CBRデータのインポート" msgid "Callsign statistics" msgstr "コールサインの統計" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " 及びバンド " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " and sat " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "コールテスター" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "CSV コールテスター" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "コールサインテスター" @@ -774,28 +797,31 @@ msgid "No user has configured Clublog." msgstr "Clublog を設定しているユーザーはいません。" #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -829,7 +855,7 @@ msgid "Update Contest" msgstr "コンテストの更新" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -847,12 +873,12 @@ msgstr "Cronジョブを編集する" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "一度もない" @@ -927,14 +953,14 @@ msgstr "DCLキーのインポート" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1182,7 +1208,7 @@ msgstr "アップロードする QSO が見つかりません。" msgid "KML Export" msgstr "KMLエクスポート" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "QSLカードラベル" @@ -1190,59 +1216,59 @@ msgstr "QSLカードラベル" msgid "Create Label Type" msgstr "ラベルタイプを作成" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "ラベル名" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "用紙の種類" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "測定" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "上余白" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "左余白" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSLを横向きに" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSLを縦に" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "水平方向のスペース" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "垂直空間" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "ラベル幅" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "ラベルの高さ" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "フォントサイズ" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "ラベル上のQSO数" @@ -1251,22 +1277,22 @@ msgid "Create Paper Type" msgstr "用紙タイプを作成" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "論文名" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "紙幅" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "紙の高さ" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1274,18 +1300,18 @@ msgstr "" "ファイルを保存できませんでした。既存ファイルと同一の名称を使用することはでき" "ません。" -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "印刷する前にラベルに用紙タイプを割り当てる必要があります" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "ラベルを作成し、印刷に使用するように設定する必要があります。" -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1293,31 +1319,31 @@ msgstr "" "問題が発生しました。ラベルを生成できませんでした。ラベルのサイズとフォントサ" "イズを確認してください。" -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "印刷用に0件のQSOが見つかりました!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "ラベルを編集" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "ラベルが保存されました。" -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "ラベルが削除されました。" -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "論文の編集" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "紙が保存されました。" -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "書類が削除されました。" @@ -1341,55 +1367,55 @@ msgstr "ステーションのログブック" msgid "Logbook" msgstr "ログブック" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1397,93 +1423,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "すべてのコールブック検索が失敗したか、結果が提供されませんでした。" -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1491,7 +1519,7 @@ msgstr "すべてのコールブック検索が失敗したか、結果が提供 #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1508,13 +1536,13 @@ msgstr "すべてのコールブック検索が失敗したか、結果が提供 #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1553,15 +1581,15 @@ msgstr "すべてのコールブック検索が失敗したか、結果が提供 msgid "Mode" msgstr "モード" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1582,15 +1610,15 @@ msgstr "モード" msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1612,7 +1640,7 @@ msgstr "RST (S)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1621,29 +1649,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "国" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1656,7 +1684,7 @@ msgstr "国" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1664,7 +1692,7 @@ msgstr "国" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1673,12 +1701,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1687,7 +1715,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1695,7 +1723,7 @@ msgstr "IOTA" msgid "State" msgstr "州" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1704,19 +1732,19 @@ msgstr "州" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1732,20 +1760,20 @@ msgstr "州" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "グリッドスクエア" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1755,9 +1783,9 @@ msgstr "グリッドスクエア" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1775,18 +1803,18 @@ msgstr "グリッドスクエア" msgid "Distance" msgstr "距離" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1794,25 +1822,26 @@ msgstr "距離" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1823,13 +1852,13 @@ msgstr "距離" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1868,13 +1897,14 @@ msgstr "距離" msgid "Band" msgstr "バンド" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1895,13 +1925,13 @@ msgstr "バンド" msgid "Frequency" msgstr "周波数" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1914,21 +1944,21 @@ msgstr "周波数" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "オペレーター" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1937,14 +1967,14 @@ msgstr "オペレーター" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "DXCCを削除しました" @@ -1952,12 +1982,12 @@ msgstr "DXCCを削除しました" msgid "Advanced logbook" msgstr "ログブックの詳細" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCCが %d QSO 更新されました。" -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "DXCC %s およびグリッドスクエア %s のマップ。" @@ -1972,7 +2002,7 @@ msgstr "クイック検索" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1984,11 +2014,11 @@ msgstr "証明書がインポートされました。" msgid "Certificate Updated." msgstr "証明書が更新されました。" -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "証明書が削除されました。" -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2000,7 +2030,7 @@ msgstr "" "ワードなしで tqsl アプリケーションから LoTW 証明書をエクスポートしてくださ" "い!%s詳細については、Wavelog Wiki の %sLoTW FAQ ページ%s をご覧ください。" -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2011,52 +2041,52 @@ msgstr "" "が含まれている場合、これは通常、LoTW によってまだ処理されていない証明書要求で" "す。" -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "ファイル内の証明書の処理中に一般的なエラーが発生しました %s 。" -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "ファイル内の証明書から秘密鍵を抽出する際に一般的なエラーが発生しました %s 。" -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF情報" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "LoTWへの接続に失敗しました。" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTWへのログインがユーザー %s で失敗しました: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "ユーザー名/パスワードが間違っています" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "" "LoTWは現在ご利用いただけません。しばらくしてからもう一度お試しください。" -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "LoTWログインOK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "LoTWの認証情報が提供されていません。" -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW ADIF インポート" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "ARRL LoTWの認証情報を設定していません!" @@ -2081,7 +2111,7 @@ msgstr "編集モード" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "メモ帳" @@ -2395,19 +2425,19 @@ msgstr "QSLカードをアップロードする" msgid "Print Requested QSLs" msgstr "リクエストされたQSLを印刷する" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "QSOを追加" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "この URL にアクセスするにはログインする必要があります。" -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "通話転送" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "コールサインが提供されていません。" @@ -2416,18 +2446,18 @@ msgstr "コールサインが提供されていません。" msgid "Hardware Interfaces" msgstr "ハードウェアインターフェース" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "無線" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "タイムスタンプ" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2435,61 +2465,65 @@ msgstr "タイムスタンプ" msgid "Options" msgstr "オプション" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "設定" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "デフォルト(クリックして解除)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "デフォルトの無線機として設定" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "不明" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "最終更新日" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "デフォルトの無線機として設定" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "デフォルト(クリックして解除)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "編集" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2498,22 +2532,38 @@ msgstr "編集" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "削除" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocketは現在デフォルトです(クリックして解除)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "WebSocketをデフォルトのラジオとして設定する" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "CAT インターフェースの無線機が見つかりません。" -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "WebSocket オプションをデフォルトのラジオとして設定することもできます。" + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "CAT設定の編集" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "ラジオが正常に削除されました" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "EDIエクスポート" @@ -2581,7 +2631,7 @@ msgstr "ステーションの場所がありません。進む %s が作成し #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2592,13 +2642,13 @@ msgstr "ここ" msgid "Satellite Timers" msgstr "衛星タイマー" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2652,7 +2702,8 @@ msgstr "ステーションの場所を編集: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2660,7 +2711,7 @@ msgstr "ステーションの場所を編集: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2673,7 +2724,7 @@ msgid "Duplicate Station Location:" msgstr "重複ステーションの場所:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "グリッドロケータの値を確認してください( %s )" @@ -2736,7 +2787,8 @@ msgstr "エラー。リンクは既に使用中です!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2744,19 +2796,19 @@ msgid "Disabled" msgstr "無効" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "アクティブなログブックとして設定" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "アクティブなログブック" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2766,7 +2818,7 @@ msgstr "" "場所は、別のログブックに再リンクする必要があります。" #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "ログブックの公開ページを表示: " @@ -2775,7 +2827,7 @@ msgid "Are you sure you want to delete the public slug?" msgstr "パブリックスラッグを削除してもよろしいですか?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" @@ -2784,12 +2836,12 @@ msgstr "" "すか?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "アクティブに設定" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "アクティブステーション" @@ -2797,31 +2849,31 @@ msgstr "アクティブステーション" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "この局プロファイル内のすべての QSO を削除してもよろしいですか?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "ログ削除" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "コピー" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2834,7 +2886,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "1つ選択してください" @@ -2914,103 +2966,103 @@ msgstr "DXCC例外の準備: " msgid "Preparing DXCC Prefixes: " msgstr "DXCC プレフィックスの準備: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "終了" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "更新中..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Dxcc エンティティ:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Dxcc 例外:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Dxcc プレフィックス:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP 更新が完了しました。結果: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP 更新に失敗しました。結果: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTWユーザーのアップデートが完了しました。結果: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTWユーザーの更新に失敗しました。結果: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK 更新が完了しました。結果: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK 更新が完了しました。結果: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTAアップデートが完了しました。結果: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA アップデートに失敗しました。結果: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFFアップデートが完了しました。結果: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF アップデートに失敗しました。結果: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl 更新完了。結果: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl 更新に失敗しました。結果: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA 更新が完了しました。結果: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA 更新に失敗しました。結果: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLEアップデートが完了しました。結果: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE 更新に失敗しました。結果: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SATアップデート" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "注目のハムの最新情報" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCCグリッドファイルの更新が完了しました。結果: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC グリッドファイルの更新に失敗しました。結果: " @@ -3044,61 +3096,61 @@ msgstr "無効なパラメータです!" msgid "Add User" msgstr "ユーザーを追加" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "ユーザー名 %s は すでに使用されています!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "Eメール %s は すでに使用されています!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "パスワードが無効です!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "ユーザー %s が追加されました!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "ユーザー" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "ユーザーを編集" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "ユーザー %s が編集されました" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "プロフィール" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "ユーザーを削除" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "ユーザーを削除しました" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "ユーザーを削除できませんでした!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "データベース エラー:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3106,29 +3158,29 @@ msgstr "" "おめでとうございます!Wavelog のインストールに成功しました。これで初回ログイ" "ンが可能になります。" -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "これは許可されていません!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "ログインに失敗しました。もう一度お試しください。" -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "ログイン" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "clubstation に直接ログインすることはできません。代わりに個人アカウントをご利" "用ください。" -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3136,7 +3188,7 @@ msgstr "" "アカウントがロックされています。これは、ログイン試行が複数回失敗したためで" "す。パスワードを再設定してください。" -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3146,52 +3198,52 @@ msgstr "" "セージが予期せず表示されたり、繰り返し表示されたりする場合は、管理者にお問い" "合わせください。現在、ログインできるのは管理者のみです。" -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "ユーザー名またはパスワードが間違っています!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "ユーザー %s がログアウトしました。" -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "ステーション名" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "ステーションのコールサイン" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "DXCC局" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "ステーションCQゾーン" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "ITUゾーンステーション" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "グリッドロケータ" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3200,37 +3252,37 @@ msgstr "" "ステーションが正常に作成されました!Wavelogへようこそ!ステーションの設定を完" "了するには、%shere%sをクリックしてください。" -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" "ステーションのセットアップに失敗しました!手動でステーションを設定してくださ" "い。" -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "デモではパスワードのリセットが利用できません!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "パスワードを忘れた" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "メール設定が正しくありません。" -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "パスワードのリセットが完了しました。" -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "パスワードをリセットする" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3238,7 +3290,7 @@ msgstr "" "このユーザー名でアカウントを設定できませんでした。別のユーザー名(%s 以外)を" "お試しください。" -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3246,7 +3298,7 @@ msgstr "" "このメールアドレスでアカウントを設定できませんでした。別のアドレス(%s以外)" "をお試しください。" -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3255,7 +3307,7 @@ msgstr "" "現在、他のユーザーを装うことはできません。config.php ファイルで %s を %s に設" "定する必要があります!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3264,15 +3316,15 @@ msgstr "" "現在、他のユーザーを装うことはできません。まず、config.php ファイルの " "encryption_key を変更してください!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "無効なハッシュ" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "偽装ハッシュが古すぎます。もう一度お試しください。" -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3280,15 +3332,15 @@ msgstr "" "ソースユーザーとしてログインしていない状態で、他のユーザーを装うことはできま" "せん" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "セッションに問題が発生しました。もう一度お試しください。" -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "偽装を要求されたユーザーは存在しません" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3296,13 +3348,13 @@ msgstr "" "クラブステーションの適切な権限レベルを判別できませんでした。再ログインしてか" "らもう一度お試しください。" -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "おっと… 何か問題が発生しました。もう一度ログインしてみてください。" -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3310,7 +3362,7 @@ msgstr "" "セキュリティハッシュの有効期限が切れたため、すぐに復帰する機能は無効になって" "います。再度ログインしてください。" -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3324,7 +3376,7 @@ msgid "Satellite Gridsquare Map" msgstr "衛星グリッドスクエアマップ" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "パブリックサーチ" @@ -3360,8 +3412,8 @@ msgid "" "No CAT interfaced radios found. You need to have at least one radio " "interface configured." msgstr "" -"CATインターフェースの無線が見つかりません。少なくとも1つの無線インターフェー" -"スを設定する必要があります。" +"CATインターフェースの無線機が見つかりません。少なくとも1つの無線インター" +"フェースを設定する必要があります。" #: application/controllers/Widgets.php:423 msgid "User not found by slug" @@ -3375,14 +3427,19 @@ msgstr "スラッグで複数のユーザーが見つかりました" msgid "Gridsquare Zone finder" msgstr "グリッドスクエアゾーンファインダー" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "ルックアップが設定されていません。設定を確認してください。" + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "コールブックのセッションキーの取得中にエラーが発生しました。エラー: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "QRZCQ エラー" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "HamQTHクエリのセッションキーの取得エラー" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3537,27 +3594,27 @@ msgstr "" msgid "Station not accessible" msgstr "ステーションは利用できません" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "ステーションIDは許可されていません" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "コールなし" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCCは数値でなければなりません" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "%s との QSO を %s でインポート中に、誤ったステーションコールサイン %s が検出" "されました: スキップされました" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3565,11 +3622,11 @@ msgstr "" "有効な日付のないQSOをインポートしようとしました。このQSOはインポートされませ" "んでした。無効です" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSOオン" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3577,7 +3634,7 @@ msgstr "" "コールが指定されていないQSOをインポートしようとしました。このQSOはインポート" "されませんでした。無効です" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3586,64 +3643,64 @@ msgstr "" "%s でのQSO: バンドが指定されていないQSOをインポートしようとしました。このQSO" "はインポートされませんでした。無効です" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date が無効です (YYYYMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "複製用" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSOが一致しませんでした" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "LoTW/Clublog/eQSL/コンテストで確認済み" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "賞の管理者によって確認された" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "DCLデータのクロスチェックによって確認された" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "確認中" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "未確認" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "不明" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "POTA 参照。既にログに存在します" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSOが更新されました" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3657,7 +3714,7 @@ msgstr "QSOが更新されました" msgid "Bearing" msgstr "方位" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "" "VuccGridsテーブルが空です。まずVUCCグリッドデータをインポートしてください。" @@ -3794,42 +3851,40 @@ msgstr "違い" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3858,33 +3913,33 @@ msgstr "違い" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3905,7 +3960,7 @@ msgstr "違い" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "全て" @@ -3949,12 +4004,12 @@ msgstr "期間" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "伝搬" @@ -3970,7 +4025,7 @@ msgstr "SAT以外すべて" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "なし/空" @@ -3980,11 +4035,11 @@ msgstr "なし/空" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "航空機の散乱" @@ -3994,11 +4049,11 @@ msgstr "航空機の散乱" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "オーロラ" @@ -4008,11 +4063,11 @@ msgstr "オーロラ" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "オーロラE伝搬" @@ -4022,11 +4077,11 @@ msgstr "オーロラE伝搬" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "後方散乱" @@ -4036,11 +4091,11 @@ msgstr "後方散乱" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "エコーリンク" @@ -4050,11 +4105,11 @@ msgstr "エコーリンク" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "地球-月-地球" @@ -4064,11 +4119,11 @@ msgstr "地球-月-地球" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Eスポ" @@ -4078,11 +4133,11 @@ msgstr "Eスポ" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "磁場に沿った不規則性" @@ -4092,11 +4147,11 @@ msgstr "磁場に沿った不規則性" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2反射" @@ -4106,11 +4161,11 @@ msgstr "F2反射" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "インターネット支援" @@ -4120,11 +4175,11 @@ msgstr "インターネット支援" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "イオノスキャッター" @@ -4134,11 +4189,11 @@ msgstr "イオノスキャッター" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4148,11 +4203,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "流星散乱" @@ -4162,11 +4217,11 @@ msgstr "流星散乱" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "地上または大気圏の中継器またはトランスポンダー" @@ -4176,11 +4231,11 @@ msgstr "地上または大気圏の中継器またはトランスポンダー" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "雨散乱" @@ -4190,11 +4245,11 @@ msgstr "雨散乱" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "衛星" @@ -4204,11 +4259,11 @@ msgstr "衛星" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "赤道横断" @@ -4218,11 +4273,11 @@ msgstr "赤道横断" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "対流圏ダクト" @@ -4231,18 +4286,18 @@ msgstr "対流圏ダクト" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4254,21 +4309,21 @@ msgstr "対流圏ダクト" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "表示" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4279,7 +4334,7 @@ msgstr "表示" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4288,19 +4343,25 @@ msgstr "表示" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "衛星" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4320,22 +4381,22 @@ msgstr "確認" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4381,11 +4442,11 @@ msgstr "最小数" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4394,11 +4455,10 @@ msgstr "最小数" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4418,7 +4478,8 @@ msgstr "何も見つかりません!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4434,12 +4495,13 @@ msgstr "何も見つかりません!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4463,7 +4525,7 @@ msgstr "何も見つかりません!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "コールサイン" @@ -4474,12 +4536,12 @@ msgstr "カウント" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "QSOを表示" @@ -4545,7 +4607,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4569,11 +4631,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4587,12 +4649,12 @@ msgstr "日付" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4607,7 +4669,7 @@ msgstr "日付" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4620,7 +4682,7 @@ msgstr "時間" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4675,20 +4737,20 @@ msgstr "重要" msgid "Log Files must have the file type *.adi" msgstr "ログファイルのファイルタイプは*.adiである必要があります" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "最大ファイルアップロードサイズは " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4748,8 +4810,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "危険" @@ -5132,8 +5194,8 @@ msgstr "ADIFにおけるPOTA参照" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "状態" @@ -5152,7 +5214,7 @@ msgstr "この API の用途を説明する簡単な名前。" #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5217,7 +5279,7 @@ msgstr "このWavelogインスタンスのAPI URLは" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5271,7 +5333,7 @@ msgstr "権限" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5316,7 +5378,7 @@ msgstr "読み取り専用キーを作成する" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5325,8 +5387,8 @@ msgstr "読み取り専用キーを作成する" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5343,14 +5405,14 @@ msgstr "読み取り専用キーを作成する" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5406,9 +5468,9 @@ msgid "Filtering on" msgstr "フィルタリング" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "郡" @@ -5460,19 +5522,14 @@ msgid "Counties Confirmed" msgstr "確認された郡" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5494,22 +5551,23 @@ msgid "Total" msgstr "合計" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5519,7 +5577,7 @@ msgstr "CQゾーン" #: application/views/awards/cq/index.php:4 #: application/views/awards/itu/index.php:4 msgid "Hover over a zone" -msgstr "CQゾーン/ITUゾーンにマウスを移動します" +msgstr "ゾーンにカーソルを合わせる" #: application/views/awards/cq/index.php:32 msgid "CQ WAZ (Worked All Zones) Award" @@ -5561,10 +5619,12 @@ msgid "Awards - CQ WAZ" msgstr "アワード歴 - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "フィルター" @@ -5574,92 +5634,114 @@ msgid "Show CQ Zone Map" msgstr "CQゾーンマップを表示" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "日付プリセット" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "本日" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "昨日" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "過去7日間" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "過去30日間" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "今月" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "先月" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "今年" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "去年" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "クリア" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5667,7 +5749,9 @@ msgid "Date from" msgstr "日付から" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5675,11 +5759,10 @@ msgid "Date to" msgstr "日付" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5689,9 +5772,8 @@ msgid "Confirmed" msgstr "確認済み" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5701,67 +5783,64 @@ msgstr "作業した" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "作業内容" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "確認済み" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "表示が機能していません" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5769,95 +5848,161 @@ msgstr "QSLタイプでQSOを表示" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSLカード" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "テーブル" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "地図" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "凡例:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL-紙カード" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-「確認」" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W)作業した" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "まとめ" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "合計(SATを除く)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "合計作業時間" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5921,15 +6066,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "動作確認済み" @@ -5938,11 +6083,9 @@ msgstr "動作確認済み" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "どのバンドも" @@ -5950,23 +6093,20 @@ msgstr "どのバンドも" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "リセット" @@ -6021,161 +6161,127 @@ msgstr "" "このアワードに入力するフィールド: DXCC (DXCC-ADIF-Spec-List から有効なものを" "選択する必要があります)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "DXCCマップを表示" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "削除済みを含める" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "南極大陸" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "アフリカ" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "アジア" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "ヨーロッパ" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "北米" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "南アメリカ" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "オセアニア" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "すべてのバンド(SATを除く)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "凡例:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL-紙カード" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-「確認」" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W)作業した" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "DXCC 名称" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefix" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "検索条件に一致する結果は見つかりませんでした。もう一度お試しください。" @@ -6437,23 +6543,23 @@ msgstr "IOTAマップを表示" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "名前" @@ -6462,14 +6568,14 @@ msgid "Deleted" msgstr "削除済み" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6479,7 +6585,7 @@ msgstr "削除済み" msgid "ITU Zone" msgstr "ITU ゾーン" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6490,21 +6596,21 @@ msgstr "" "75 の放送ゾーンのうち少なくとも 70 の地上アマチュア無線局と交信したことの証拠" "を提示することで申請できます。" -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "%sのウェブサイトで、さらに詳しい情報をご確認いただけます。" -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "このアワードの対象となる分野: ITUゾーン (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "アワード歴 - ITUゾーン" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "ITUゾーンマップを表示" @@ -6560,7 +6666,7 @@ msgstr "結果" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "市" @@ -6569,8 +6675,10 @@ msgstr "市" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "衛星" @@ -6703,7 +6811,7 @@ msgstr "県" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "コード" @@ -6719,7 +6827,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6757,8 +6865,8 @@ msgid "Band Categories" msgstr "バンドカテゴリー" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "状態を修正" @@ -6827,8 +6935,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "POTA 参照先" @@ -6839,6 +6947,7 @@ msgstr "州" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "州の上にマウスを移動します" @@ -6905,7 +7014,7 @@ msgid "Reference" msgstr "参照" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6972,7 +7081,7 @@ msgstr "" "アを運用し、確認した場合に授与されます。" #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "公式情報とルールについては、この文書をご覧ください。 %s 。" @@ -7055,25 +7164,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "アワード - すべての大陸で活動(WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "大陸" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "このアワードの基準に一致する QSO は見つかりませんでした!" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "WAE賞アワード" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7083,7 +7197,7 @@ msgstr "" "WAE 国リストに記載されている島々のさまざまなバンドのアマチュア無線局との交信" "に対して授与されます。" -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7092,11 +7206,11 @@ msgstr "" "WAEは次のモードで発行されます:CW、SSB、音声、RTTY、FT8、デジタル、混合モー" "ド。5つのクラスで発行されます:WAE III、WAE II、WAE I、WAE TOP、WAE Trophy。" -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "この賞の対象となる分野: 地域、DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "WAE 名称" @@ -7145,7 +7259,7 @@ msgid "Show WAJA Map" msgstr "WAJAマップを表示" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "県" @@ -7206,15 +7320,20 @@ msgid "Show WAP Map" msgstr "WAPマップを表示" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "州" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "都道府県" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - 中国のすべての省・自治区・直轄市を対象に活動を実施しました" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7225,7 +7344,7 @@ msgstr "" "国全土の省、市、自治区、特別行政区の無線愛好家との間の交流を促進し、中国に対" "する理解を深めることを目的としています。" -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7233,7 +7352,7 @@ msgstr "" "このアワードは、長期にわたる人脈の蓄積を通じて獲得することも、年次WAPCコンテ" "ストにおける単一の努力によって達成することも可能です。" -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7243,6 +7362,10 @@ msgstr "" "台湾/386、プラタス島/505、またはスカボローリーフ/506 のいずれか) および有効な" "州 (ADIF: DXCC および州)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "WAPCマップを表示" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7353,8 +7476,8 @@ msgstr "このアワードに応募したフィールド: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "WWFFリファレンス" @@ -7404,216 +7527,216 @@ msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "ノートのバックアップが正常に完了しました。出力は次の場所にあります" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "クリックしてログ記録を準備します。" -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "周波数を調整する" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "ポップアップがブロックされました" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "ポップアップがブロックされました。このサイトのポップアップを永続的に許可して" "ください。" -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT接続が必要です" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "CAT接続を有効にして無線機をチューニングする" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "フィルターをクリア" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "バンド フィルタは保持されます (バンド ロックがアクティブです)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "ラジオ設定:なし - CAT接続無効" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "無線機のチューニング" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "調整済み" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "チューニングに失敗しました" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "無線機の周波数を合わせられませんでした" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO準備完了" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "ログフォームに送信されました" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT接続" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "クリックしてCAT接続を有効にします" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT追従無線 - クリックすると無効になります" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "クリックするとバンドロックが有効になります(CAT接続が必要です)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "バンドロックが有効 - クリックすると無効になります" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "バンドロック" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "バンドロックが有効 - バンドフィルターは無線バンドを追跡します" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "バンドフィルターが変更されました" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "無線機による" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "周波数フィルターを設定" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "既知のバンド外の周波数 - すべてのバンドを表示" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "無線機からデータを受信中..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "お気に入り" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "お気に入りを読み込めませんでした" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "モードが適用されます。バンドフィルターは保持されます(CAT接続はアクティブで" "す)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "お気に入りのバンドとモードを適用" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "私のサブモード" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "サブモードフィルタが有効" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "サブモードフィルタが有効" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "必要なサブモード" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "ユーザー設定 - モードの設定" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "サブモードが設定されていません - ユーザー設定 - モードで設定してください" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "設定でサブモードが有効になっていません - すべてのスポットを表示" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "無効 - ユーザー設定でこのモードのサブモードが有効になっていません" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "CWモードフィルターの切り替え" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "デジタルモードフィルターを切り替える" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "電話モードフィルターを切り替える" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "お気に入り" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "現在のフィルターを保存..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "このフィルタープリセットの名前を入力してください:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "フィルタープリセットを保存しました" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "フィルタープリセットが読み込まれました" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "フィルタープリセットを削除しました" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "このフィルタープリセットを削除してもよろしいですか?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "保存されたフィルタープリセットはありません" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7621,64 +7744,64 @@ msgstr "" "フィルタープリセットの上限が20個に達しました。新しいプリセットを追加する前" "に、いくつか削除してください。" -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "DXクラスターからデータをロードしています" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "最後に取得されたのは" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "最大年齢" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "取得場所" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "次回の更新は" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "分" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "秒" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "取得したスポット" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "表示中" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "すべて表示" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "アクティブフィルター" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "取得中..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "機能していません" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "動作したが、確認されていない" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7686,266 +7809,269 @@ msgstr "動作したが、確認されていない" msgid "LoTW User" msgstr "LoTWユーザー" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "新しいコールサイン" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "新大陸" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "ニューカントリー" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "以前に働いた" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "%s を %s と共同で作業しました" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "の" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "発見された" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "新しいスポット(5分未満)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "コンテスト" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "クリックして表示" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "QRZ.comで" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "QRZ.comで%sを表示するにはクリックしてください" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "詳細はこちら" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "作業した" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "このバンドでは働いていない" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTWユーザー。最終アップロードは %d 日前" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "POTA.appで表示するにはクリックしてください" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "SOTL.asで見るにはクリックしてください" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "cqgma.org で表示するにはクリックしてください" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "IOTA-World.orgで表示するにはクリックしてください" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "大陸の詳細を見る" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "大陸 %s の詳細を見る" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "CQゾーンの詳細を見る" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "CQゾーン %s の詳細を見る" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "で" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "全画面表示を終了" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "全画面表示を切り替える" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "CAT接続が有効になっている場合、バンドフィルタリングは無線によって制御されます" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "クリックしてログ記録を準備する" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(CAT接続が必要です)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "スポッター" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "コメント" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "年" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "受信中" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "発信" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "スポット" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "スポット" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "スポッター" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "お待ちください" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "次のコールサインをQSOフォームに送信する前に、%s秒お待ちください" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "スポットを読み込んでいます..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "スポットは見つかりませんでした" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "データなし" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "選択したフィルターに該当するスポットが見つかりません" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "スポットの読み込み中にエラーが発生しました。もう一度お試しください。" -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "すべてのモードを表示" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "すべてのスポットを表示" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "ドロースポッター" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "マップを拡張" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "昼/夜を表示" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "あなたのQTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "ホームに戻る" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DXクラスター" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DXクラスターヘルプ" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "コンパクトモード - メニューの表示/非表示" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7953,316 +8079,281 @@ msgstr "TRX:" msgid "None" msgstr "なし" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "ライブ - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "ポーリング - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "の:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "すべての大陸を選択" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "世界" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "アフリカ大陸フィルターを切り替える" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "南極大陸フィルターを切り替える" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "アジア大陸フィルターを切り替える" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "ヨーロッパ大陸フィルターを切り替える" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "北米大陸フィルターを切り替える" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "オセアニア大陸フィルターを切り替える" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "南アメリカ大陸フィルターを切り替える" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "高度なフィルター" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "保持" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "複数のオプションを選択するにはクリックします" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCCステータス" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "電話" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "デジ" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "必須フラグ" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "運用コールサイン" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DXスポット" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "追加フラグ" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "新鮮(5分未満)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "大陸スポット" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Spotted Station Continent" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "フィルターを適用する" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "お気に入りをフィルター" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "大陸以外のフィルターをすべて消去する" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "160mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "80mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "60mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "40mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "30mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "20mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "17mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "15mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "12mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "10mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "6mバンドフィルターの切り替え" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "VHFバンドフィルターを切り替える" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "UHFバンドフィルターを切り替える" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "SHFバンドフィルターを切り替える" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "サブモードを読み込んでいます..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "LoTWユーザーフィルターを切り替える" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTWユーザー" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "DXスポットフィルターの切り替え(観測大陸≠観測大陸)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "新大陸フィルターを切り替える" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "新大陸" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "新しいエンティティフィルターを切り替える" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "新しいエンティティ" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "新しいコールサインフィルターを切り替える" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "新しいコールサイン" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "新鮮なスポットフィルターを切り替える(5分未満)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "新鮮な" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "コンテストフィルターを切り替える" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Geo Hunterの切り替え(POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "参照" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "DXマップビューを開く" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DXマップ" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "スポットを検索..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "検索列" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"注: 地図はDXCCエンティティの位置を示しており、実際のスポットの位置ではありま" -"せん" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "すべての列" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "年齢(分)" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "スポット情報" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "頻度" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "サブモード" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "スポッテッドコールサイン" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DXステーション" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "フラグ" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCCエンティティ" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "実体" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "スポッターコールサイン" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "スポッター大陸" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "スポッターCQゾーン" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "最終交信日" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "スペシャル" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "スペシャルフラグ" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8270,6 +8361,62 @@ msgstr "スペシャルフラグ" msgid "Message" msgstr "メッセージ" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "スポッター大陸" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "スポッターCQゾーン" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "スポットを検索..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"注: 地図はDXCCエンティティの位置を示しており、実際のスポットの位置ではありま" +"せん" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "年齢(分)" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "頻度" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "スポッテッドコールサイン" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "フラグ" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCCエンティティ" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "スポッターコールサイン" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "最終交信日" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "スペシャル" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "スペシャルフラグ" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "周波数に有効な数値を入力してください" @@ -8544,7 +8691,7 @@ msgstr "" "ん) が含まれます。" #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8662,19 +8809,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8708,15 +8855,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "はい" @@ -8731,19 +8880,19 @@ msgstr "はい" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8777,16 +8926,17 @@ msgstr "はい" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "いいえ" @@ -8819,7 +8969,7 @@ msgid "First QSO" msgstr "最初のQSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Last QSO" @@ -8928,8 +9078,8 @@ msgid "Callsign DXCC identification" msgstr "コールサインDXCC識別" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "コールサイン: " @@ -9213,8 +9363,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9531,7 +9681,7 @@ msgstr "ADIF名" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9601,7 +9751,7 @@ msgstr "作成する" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "コンテスト名" @@ -9677,8 +9827,8 @@ msgid "Locator" msgstr "ロケータ" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9793,11 +9943,11 @@ msgstr "識別子" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "有効" @@ -9892,7 +10042,8 @@ msgid "Cron List" msgstr "Cronリスト" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10093,9 +10244,9 @@ msgstr "必要" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10117,10 +10268,10 @@ msgstr "必要" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "送信済み" @@ -10130,9 +10281,9 @@ msgstr "送信済み" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10153,10 +10304,10 @@ msgstr "送信済み" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "受領" @@ -10164,17 +10315,17 @@ msgstr "受領" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10197,11 +10348,11 @@ msgstr "受領" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "リクエスト" @@ -10227,6 +10378,38 @@ msgstr "最終更新日時:%s。" msgid "Data provided by HAMqsl." msgstr "HAMqsl 提供のデータ。" +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "K指数:惑星の地磁気活動(0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "A指数: 日次地磁気活動指数" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "太陽フラックス指数" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "太陽風速度(km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "信号対雑音比" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "X線太陽フラックスレベル" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "太陽黒点数" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "オーロラ活動レベル(Kp borealis)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "この曜日のQSO数" @@ -10306,7 +10489,7 @@ msgstr "開始日" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "終了日" @@ -10644,7 +10827,8 @@ msgstr "成功" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "失敗した" @@ -10721,109 +10905,128 @@ msgstr "モジュール" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "インストール済み" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "インストールされていません" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "キャッシュ情報" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "現在の構成" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "プライマリアダプタ" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "バックアップアダプター" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "パス %s アダプタ" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "キープレフィックス" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" -"プライマリ アダプターが使用できないため、キャッシュは現在バックアップ アダプ" -"ターを使用しています。" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "キャッシュは正常に動作しています。すべて正常です!" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "キャッシュの詳細" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "合計サイズ" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "キーの数" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "キャッシュは正常に動作し、すべて正常です!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"キャッシュは現在、プライマリが利用できないためバックアップアダプターを使用し" +"ています。ファイルのアクセス権限、PHP拡張機能、およびサービスへのネットワーク" +"接続(redis/memcachedを使用している場合)を確認してください。" + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"キャッシュが機能していません!現在システムは%sアダプターを使用しています。" +"ファイルの権限、PHP拡張機能、およびサービスへのネットワーク接続(redis/" +"memcachedを使用している場合)を確認してください。Wavelogは引き続き使用できま" +"すが、値はキャッシュされません(これは問題です)。" + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "利用可能なアダプター" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "キャッシュをクリア" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Git情報" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "支店" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "該当なし" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "コミット" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "タグ" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "最後の取得" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "新しいバージョンを確認する" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10831,77 +11034,77 @@ msgstr "新しいバージョンを確認する" msgid "Update now" msgstr "今すぐ更新" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "ファイルのダウンロード日" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "ファイル" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "最終更新日" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "クラブログからのDXCCアップデート" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "アップデート" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "DOKファイルのダウンロード" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "LoTWユーザーはダウンロード" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "POTAファイルのダウンロード" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "SCPファイルのダウンロード" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "SOTAファイルのダウンロード" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "WWFFファイルのダウンロード" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "TLEアップデート" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "注目すべきハムの更新" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCCグリッド" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "QSO-DBメンテナンス" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -10910,142 +11113,142 @@ msgstr[0] "" "データベースには、ステーションプロファイル(位置情報)のない%d件のQSOが含まれ" "ています" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "QSO をマークし、既存の局の場所に再割り当てしてください:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "ターゲットロケーション" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "再割り当て" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "データベース内のすべてのQSOはステーションプロファイル(場所)に割り当てられま" "す" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "すべて順調" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "アルバニア語" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "アルメニア語" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "ボスニア語" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "ブルガリア語" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "中国語(簡体字)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "クロアチア語" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "チェコ語" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "オランダ語" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "英語" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "エストニア語" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "フィンランド語" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "フランス語" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "ドイツ語" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "ギリシャ語" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "ハンガリー語" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "イタリア語" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "日本語" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "ラトビア語" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "リトアニア語" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "モンテネグロ語" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "ポーランド語" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "ポルトガル語" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "ロシア語" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "セルビア語" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "スロバキア語" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "スロベニア語" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "スペイン語" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "スウェーデン語" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "トルコ語" @@ -11107,7 +11310,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "グリッドスクエアが定義された QSO のみがエクスポートされます!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL情報" @@ -11354,7 +11557,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "QSLメッセージ" @@ -11490,31 +11693,32 @@ msgid "QSL Date" msgstr "QSL日付" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "ビュー" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "空" @@ -11600,7 +11804,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "QSOを編集" @@ -11990,76 +12194,76 @@ msgstr "バージョン情報" msgid "Failed to load the modal. Please try again." msgstr "モーダルの読み込みに失敗しました。もう一度お試しください。" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "説明:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "クエリの説明" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "クエリが保存されました!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "クエリを編集する" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "保存されたクエリ:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "クエリを実行" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "保存されたクエリ" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "検索する前にクエリを作成する必要があります!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "ADIFへのエクスポート" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "詳細ログブックで開く" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告! この保存されたクエリを削除してもよろしいですか?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "保存されたクエリが削除されました!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "保存されたクエリを削除できませんでした。もう一度お試しください!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "クエリの説明が更新されました!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "保存中にエラーが発生しました。もう一度お試しください!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12069,15 +12273,15 @@ msgstr "" "場所のDXCCが正しいかご確認ください。間違いがなければ、この警告は無視してくだ" "さい。" -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "カウント: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "グリッド: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12085,57 +12289,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "場所の検索に失敗しました。ブラウザのコンソールを確認してください。" + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "グリッドスクエア" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "合計数" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSLカード " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告! このQSLカードを削除してもよろしいですか?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSLカード" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSLカード " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "QSL画像ファイル" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "表面QSLカード:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "裏面QSLカード:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "QSLカードにQSOを追加する" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "問題が発生しました。もう一度お試しください!" @@ -12289,7 +12497,7 @@ msgid "Satellite Pass" msgstr "サテライトパス" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "管理者" @@ -12314,7 +12522,7 @@ msgid "Log" msgstr "ログ" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12411,7 +12619,7 @@ msgid "Gridsquare Zone checker" msgstr "グリッドスクエアゾーンチェッカー" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "ヘルプ" @@ -12548,7 +12756,7 @@ msgid "Total height of one label" msgstr "1つのラベルの合計高さ" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "フォントサイズ" @@ -12607,14 +12815,14 @@ msgstr "紙の向き" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "風景" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "ポートレート" @@ -12633,47 +12841,52 @@ msgstr "" "てください。" #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "QSLを印刷済みとしてマークする" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "印刷" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "ラベル印刷オプション" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "新しいラベルタイプを作成" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "新しい用紙タイプを作成する" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "紙の種類" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "幅" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "高さ" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "ラベルで使用される" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "オリエンテーション" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "ラベルの種類" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12681,55 +12894,65 @@ msgstr "ラベルの種類" msgid "QSOs" msgstr "QSO" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "印刷用" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "課題が指定されていません" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "QSLカードラベル保留中" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSO待機中" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "QSOを表示" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "私の通話を含めますか?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "グリッドを含めますか?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "参照を含めますか?(SIG、SOTA、POTA、IOTA、WWFF;該当地域で利用可能な場合)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Via を含めますか (入力されている場合)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "QSLMSG を含めますか (入力した場合)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "お礼 メッセージを含めますか?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "印刷開始時刻は?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "ラベル印刷の開始位置を入力してください" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12884,21 +13107,21 @@ msgstr "DXCC CQゾーン" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "ステーション" @@ -12981,88 +13204,92 @@ msgstr "" "警告。このツールはデータに危険を及ぼす可能性があるため、十分な理解がある場合" "のみ使用してください。" -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "すべてのステーションの場所" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "ログブックのすべてのQSOで間違ったCQゾーンがないか確認する" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Wavelog を使用して、すべての QSO の CQ ゾーンを決定します。" -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "チェック" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "ログブックのすべてのQSOでITUゾーンの誤りがないか確認する" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Wavelog を使用して、すべての QSO の ITU ゾーンを決定します。" -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "グリッドスクエアをチェック" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "DXCCと一致しないグリッドスクエアをチェックする" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "大陸を修正" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "不足または誤った大陸情報を更新します" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "不足している州/省の情報を更新する" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "距離を更新する" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "QSOの距離情報を計算して更新する" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "ログブックのすべてのQSOでDXCCの誤りがないか確認する" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Wavelog を使用して、すべての QSO の DXCC を決定します。" -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "コールブックのグリッドが欠落しているQSOを検索する" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "コールブック検索を使用してグリッドスクエアを設定する" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "実行ごとに 150 のコールサインに制限されます!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "IOTAとDXCCを比較する" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Wavelogを使用してIOTAとDXCCをチェックする" @@ -13107,10 +13334,10 @@ msgid "DARC DOK" msgstr "ダーク・ドック" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "地域" @@ -13179,9 +13406,9 @@ msgid "QSL Sent Method" msgstr "QSL送付方法" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL経由" @@ -13205,84 +13432,84 @@ msgstr "バンドRX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "無効" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "検証済み" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "直接" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "局" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "電子" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13635,76 +13862,92 @@ msgstr "グリッドスクエア" msgid "Non DXCC matching gridsquare" msgstr "DXCC 非対応のグリッドスクエア" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "から" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "To" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "なし/空" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "距離(キロメートル単位)。この値以上の距離を検索します。" -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "間隔" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "分単位の時間指定。この値以上の時間を検索します。" + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "列の並べ替え" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "QSO時間" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO修正版" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "ソート方向" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "降順" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "昇順" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "フィルターを適用する" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "QSLフィルター" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSLを送信しました" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13721,32 +13964,32 @@ msgstr "QSLを送信しました" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "キュー" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13775,279 +14018,279 @@ msgstr "キュー" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "無効(無視)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSLを受信" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "QSL送信方法" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "QSL受信方法" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTWが送信されました" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTWを受信" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublogを送信しました" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog 受信" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSLを送信しました" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSLを受信" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL送信" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCLを受信" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "QSL画像" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZを送信しました" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZを受信" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "クイックフィルター" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "選択したクイック検索: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "検索日" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "DXCCを検索" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "検索状態" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Gridsquareを検索" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "CQゾーンを検索" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "ITUゾーンを検索" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "検索モード" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "検索バンド" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "IOTAを検索" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "SOTAを検索" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "POTAを検索" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "WWFFを検索" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "検索演算子" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "警告! マークされたQSOを削除してもよろしいですか?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSOは削除されます" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "選択した場合: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "コールブックからの更新" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "列 ビューロー" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "列 ダイレクト" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "列 ネット" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "送信(局)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "送信(直接)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "送信済み(電子)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "未送信" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSLは不要" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "未受信" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "受領(局)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "受信(直接)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "受信済み(電子)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "ADIFを作成する" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "ラベルを印刷" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "QSLスライドショー" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# 結果" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "複製" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "地球地図" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "データベースツール" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "最終更新日" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSLメッセージ(S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSLメッセージ(R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "私の参照先" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Ant az" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "アンテナ方位角" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Ant el" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "アンテナの仰角" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "ステーション電力" @@ -14127,15 +14370,15 @@ msgstr "グリッドスクエア更新の結果:" msgid "The number of QSOs updated for gridsquare is" msgstr "グリッドスクエアに更新されたQSOの数は" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "経由を含める" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "QSLMSGを含める" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "TNXメッセージを含める" @@ -14198,35 +14441,35 @@ msgstr "現在サポートされている国" msgid "Basic QSO Information" msgstr "基本的なQSO情報" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "ステーション情報" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "確認サービス" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "地理情報" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "アワードプログラム" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "追加情報" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "技術的な詳細" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "デバッグ専用" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14234,7 +14477,7 @@ msgstr "" "これはデバッグ目的のみであり、デフォルトで表示されるようには設計されていませ" "ん" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "マップレイヤー" @@ -14360,7 +14603,7 @@ msgid "Date Expires" msgstr "有効期限" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "最終アップロード" @@ -15022,7 +15265,7 @@ msgstr "追加で知っておくべき情報はありますか?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "Eメール" @@ -15039,11 +15282,11 @@ msgstr "ログにないリクエストを送信する" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "経由" @@ -15054,7 +15297,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "印刷キューに追加" @@ -15338,7 +15581,7 @@ msgstr "ギャラリービュー" #: application/views/qslcard/index.php:78 #: application/views/qslcard/index.php:126 msgid "Add Qsos" -msgstr "QSOSを追加" +msgstr "QSOを追加" #: application/views/qslcard/searchresult.php:193 msgid "Add to QSL" @@ -15459,7 +15702,7 @@ msgstr "リクエストされたQSLを送信済みとしてマークする" msgid "No QSLs to print were found!" msgstr "印刷する QSL が見つかりません!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15603,7 +15846,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "送信電力(W)" @@ -15665,9 +15908,9 @@ msgid "Station County" msgstr "ステーション郡" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "SIG情報" @@ -15715,7 +15958,7 @@ msgstr "注: 編集できません。ここにのみ表示されます。" #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "修正済み" @@ -15840,16 +16083,16 @@ msgstr "DXClusterで最新のスポットを検索" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "IOTAリファレンス" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "SOTA リファレンス" @@ -15889,11 +16132,11 @@ msgstr "例: Q03" msgid "E-mail address of QSO-partner" msgstr "QSO相手のメールアドレス" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "衛星名" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "衛星モード" @@ -15998,7 +16241,7 @@ msgstr "アクティブな無線機" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "以下は、Wavelog に接続されているアクティブな無線機のリストです。" -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16006,16 +16249,32 @@ msgstr "" "まだ無線を接続していない場合は、API ページを参照して API キーを生成してくださ" "い。" -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"クラブステーションのオペレーターは、自分だけに適用されるデフォルトのラジオを" +"設定できます。これにより、ログイン時に自動的に選択されるデフォルトのラジオを" +"設定できますが、必要に応じて他のラジオも使用できます。" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"通常ユーザーは、デフォルトのラジオを設定できます。これにより、ログイン時に自" +"動的に選択されるデフォルトのラジオを設定できますが、必要に応じて他のラジオも" +"使用できます。" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "%s の使用方法については、ウィキでご確認いただけます。" +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "%sradio関数の%s使用方法についてはWikiでご確認ください。" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "無線機の機能" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "お待ちください..." @@ -16356,13 +16615,6 @@ msgstr "AOS時間" msgid "LOS Time" msgstr "LOS時間" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "間隔" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "パス" @@ -16477,6 +16729,11 @@ msgstr "クエリを保存" msgid "Stored queries" msgstr "保存されたクエリ" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "%s の使用方法については、ウィキでご確認いただけます。" + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "検索フィルター機能" @@ -16552,35 +16809,35 @@ msgstr "QSL 送信済み(直接)をマーク" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "QSL受信をマーク(ビューロー)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "QSL 受信をマーク(直接)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "QSLカードの申請をマーク(ビューロー)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "QSLカードのリクエストをマーク(直接)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "QSLカードは不要とマークする" @@ -16891,8 +17148,8 @@ msgid "" "Here, the first qso uses the set serial 1, and the second will use 2 as the " "serial. If you want to wipe your sent exchange, use ',-':" msgstr "" -"ここで、最初のQSOは設定されたシリアル番号1を使用し、2番目のQSOはシリアル番号2" -"を使用します。送信済みの交換を消去したい場合は、「,-」を使用してください。" +"ここで、最初のQSOはシリアル番号1を使用し、2番目のQSOはシリアル番号2を使用しま" +"す。送信したQSOを消去したい場合は「,-」を使用してください。" #: application/views/simplefle/syntax_help.php:59 msgid "" @@ -17096,7 +17353,7 @@ msgstr "" #: application/views/station_profile/create.php:257 #: application/views/station_profile/edit.php:282 msgid "Special Interest Group Name" -msgstr "特別関心グループ(SIG)名" +msgstr "特別利益団体(SIG)名" #: application/views/station_profile/create.php:259 #: application/views/station_profile/edit.php:284 @@ -17106,7 +17363,7 @@ msgstr "ステーションの専門研究グループ名 (例: GMA)。" #: application/views/station_profile/create.php:262 #: application/views/station_profile/edit.php:287 msgid "Special Interest Group Information" -msgstr "特別関心グループ(SIG)情報" +msgstr "特別利益団体(SIG)情報" #: application/views/station_profile/create.php:264 #: application/views/station_profile/edit.php:289 @@ -17115,7 +17372,7 @@ msgstr "ステーションの特別興味グループ情報 (例: DA/NW-357)。" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "問題が発生しましたか?%swiki%sを確認してください。" @@ -17329,7 +17586,7 @@ msgid "Link Location" msgstr "リンクの場所" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "プロフィール名" @@ -17349,19 +17606,19 @@ msgstr "" "の場所で運用しているが、それらが同一のDXCCまたはVUCCサークルに属する場合に最" "適です。" -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "リンクされた場所を編集" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "訪問者サイト" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "ステーションの場所" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17369,13 +17626,13 @@ msgstr "" "ステーションの場所は、自分の QTH、友人の QTH、ポータブル ステーションなどの運" "用場所を定義します。" -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "ログブックと同様に、ステーション プロファイルには一連の QSO がまとめられてい" "ます。" -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17383,7 +17640,7 @@ msgstr "" "一度にアクティブにできるステーションは1つだけです。下の表では、「アクティブス" "テーション」バッジで表示されています。" -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17391,23 +17648,23 @@ msgstr "" "「リンク」列には、ステーションの場所が上で選択したアクティブ ログブックにリン" "クされているかどうかが表示されます。" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "ステーションの場所を作成する" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "アクティブなログブックの場所のみを表示する" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "すべての場所を表示" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "場所の一覧を表示する" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17415,7 +17672,7 @@ msgstr "" "注意:アクティブな局の位置を設定する必要があります。コールサイン > 局の位置か" "ら選択してください。" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17423,23 +17680,23 @@ msgstr "" "Wavelog 内の最近の変更により、QSO をステーション プロファイルに再割り当てする" "必要があります。" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "メンテナンス" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "再割り当てしてください " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "リンク" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "お気に入り" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "お気に入りとしてマーク/マーク解除" @@ -17860,11 +18117,11 @@ msgstr "個人的" #: application/views/user/edit.php:116 msgid "First Name" -msgstr "ファーストネーム" +msgstr "名(ファーストネーム)" #: application/views/user/edit.php:123 msgid "Last Name" -msgstr "苗字" +msgstr "苗字(ラストネーム)" #: application/views/user/edit.php:134 msgid "Ham Radio" @@ -17884,11 +18141,11 @@ msgstr "スタイルシート" #: application/views/user/edit.php:183 msgid "Wavelog Language" -msgstr "Wavelog言語" +msgstr "表示言語" #: application/views/user/edit.php:190 msgid "Choose Wavelog language." -msgstr "Wavelog 言語を選択してください。" +msgstr "表示言語を選択してください。" #: application/views/user/edit.php:193 msgid "Timezone" @@ -17904,7 +18161,7 @@ msgstr "アカウントにログインしたときに日付をどのように表 #: application/views/user/edit.php:219 msgid "Measurement preference" -msgstr "測定方法の選択" +msgstr "距離単位" #: application/views/user/edit.php:223 msgid "Kilometers" @@ -18043,7 +18300,7 @@ msgstr "メニューオプション" #: application/views/user/edit.php:468 msgid "Show notes in the main menu." -msgstr "メインメニューにメモを表示します。" +msgstr "メインメニューにメモを表示する。" #: application/views/user/edit.php:479 msgid "Quicklog Field" @@ -18189,40 +18446,44 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "QSOタブにフィールドを表示" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "QSOウィンドウで地図を表示" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "有効になっている項目は、[全般] タブではなく [QSO] タブに表示されます。" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "オンラインQSLリクエスト(OQRS)設定" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "グローバルテキスト" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "このテキストは、OQRS ページの上部に表示できるオプションのテキストです。" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "グループ検索" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "オフ" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "オン" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18230,11 +18491,11 @@ msgstr "" "これをオンにすると、OQRS がアクティブなすべてのステーションの場所が一度に検索" "されます。" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "グループ化された検索結果にステーションの場所名を表示する" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18242,11 +18503,11 @@ msgstr "" "グループ検索がオンの場合、結果テーブルにステーションの場所の名前を表示するか" "どうかを決定できます。" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "自動OQRSマッチング" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18254,68 +18515,68 @@ msgstr "" "これがオンの場合、自動 OQRS マッチングが行われ、システムは受信したリクエスト" "を既存のログと自動的にマッチングしようとします。" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "直接リクエストの自動OQRSマッチング" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "これがオンの場合、直接リクエストに対する自動 OQRS マッチングが行われます。" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "デフォルト値" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "デフォルトバンドと確認の設定" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "デフォルトバンド" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "デフォルトのQSL方法" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "サードパーティのサービス" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) ユーザー名" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "ログブック・オブ・ザ・ワールド(LoTW)のパスワード" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "テストログイン" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc ユーザー名" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc パスワード" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log メール" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Club Log パスワード" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18325,47 +18586,47 @@ msgstr "" "ワードを生成する必要があります。その場合は、%syour clublog settings page%s に" "アクセスしてください。" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "ウィジェット" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "オンエアウィジェット" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -"注意: このウィジェットを使用するには、少なくとも 1 つの CAT 無線が構成され動" -"作している必要があります。" +"注意: このウィジェットを使用するには、少なくとも 1 つの CAT 無線機が構成され" +"動作している必要があります。" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "有効にすると、ウィジェットは%sで利用可能になります。" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "「最終閲覧」時間を表示する" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" "この設定は、ウィジェットに「最終確認」時間を表示するかどうかを制御します。" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "最近更新された無線機のみを表示する" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "いいえ、すべての無線機を表示" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18376,55 +18637,55 @@ msgstr "" "無線機をすべて表示するか、最新の無線機のみを表示するかを指定します。無線機が1" "台しかない場合、この設定は無効です。" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSOウィジェット" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "正確なQSO時間を表示" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" "この設定は、QSO ウィジェットに正確な QSO 時間を表示するかどうかを制御します。" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "その他" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "AMSATステータスアップロード" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "SAT QSOのステータスをアップロードする" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "マストドンサーバー" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "マストドンサーバーのURL" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "MastodonサーバーのメインURL、例: %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Winkeyer機能が有効" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18433,25 +18694,25 @@ msgstr "" "Wavelogにおけるウィンキーヤーのサポートは、非常に実験的な段階です。有効化する" "前に、まず%sのWikiをお読みください。" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "プライベートフィードキー" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "プロフィールはこちら %s 。" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "実行可能なパスのみを表示" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18459,7 +18720,7 @@ msgstr "" "有効にすると、hams.atアカウントで設定されたグリッドスクエアに基づいて、有効な" "パスのみが表示されます。プライベートフィードキーの設定が必要です。" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "アカウントを保存" @@ -18877,7 +19138,7 @@ msgstr "このログブックにリンクされている局所在地のすべて #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "最終送信" @@ -18905,119 +19166,128 @@ msgstr "総距離" msgid "Other Path" msgstr "他のパス" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"VUCC グリッドスクエア フィールドに 1 つのグリッドスクエアが入力されましたが、" +"このフィールドには 1 つのグリッドではなく 2 つまたは 4 つのグリッドスクエアが" +"含まれている必要があります。" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "アンテナ方位角" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "アンテナの仰角" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSLカードは事務局から送られました" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSLカードは直接送信されました" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSLカードは電子的に送信されました" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSLカードはマネージャー経由で送信されました" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSLカードが送られました" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSLカードは事務局経由で受領されました" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSLカードは直接受け取りました" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSLカードは電子的に受信されました" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSLカードはマネージャー経由で受信されました" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSLカードを受け取りました" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "このステーションはLoTWを使用します。" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "このQSOは" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "このQSOはLoTWで確認されました。" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "このQSOはeQSLで確認されています。" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "このQSOはQRZ.comで確認されています。" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "このQSOはClublogで確認されています。" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "このQSOはDCLで確認されました。" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "より多くのQSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "共有" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "詳細" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "QSLカードの表面画像をアップロードしました" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "QSLカードの画像をアップロード" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "QSLカードの裏面画像をアップロードしました" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "QSL受信をマーク(電子)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL画像" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSOが見つかりません" @@ -19210,6 +19480,43 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "プライマリ アダプターが使用できないため、キャッシュは現在バックアップ アダ" +#~ "プターを使用しています。" + +#~ msgid "Don't show" +#~ msgstr "表示しない" + +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable. Check your file permissions, php-extensions and/or if you " +#~ "are using redis/memcached your network connection to the services." +#~ msgstr "" +#~ "キャッシュは現在、プライマリが利用できないためバックアップアダプターを使用" +#~ "しています。ファイルのアクセス権限、PHP拡張機能、およびRedis/Memcachedを使" +#~ "用している場合はサービスへのネットワーク接続を確認してください。" + +#, php-format +#~ msgid "" +#~ "Cache does not work! Currently the system is using a %s adapter. Check " +#~ "your file permissions, php-extensions and/or if you are using redis/" +#~ "memcached your network connection to the services. You can continue using " +#~ "Wavelog, but no values will be cached (which is bad)." +#~ msgstr "" +#~ "キャッシュが機能していません!現在システムは%sアダプターを使用しています。" +#~ "ファイルの権限、PHP拡張機能、およびRedis/Memcachedを使用している場合はサー" +#~ "ビスへのネットワーク接続を確認してください。Wavelogは引き続き使用できます" +#~ "が、値はキャッシュされません(これは問題です)。" + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "HamQTHクエリのセッションキーの取得エラー" + +#~ msgid "radio functions" +#~ msgstr "無線機の機能" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "誤って記録されたCQゾーン" diff --git a/application/locale/lt/LC_MESSAGES/messages.po b/application/locale/lt/LC_MESSAGES/messages.po index ed10440be..ccbba6557 100644 --- a/application/locale/lt/LC_MESSAGES/messages.po +++ b/application/locale/lt/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Lithuanian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17355,169 +17601,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17525,85 +17775,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17987,7 +18237,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18015,119 +18265,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/lv/LC_MESSAGES/messages.po b/application/locale/lv/LC_MESSAGES/messages.po index 2cf84eb0e..feaef9ebc 100644 --- a/application/locale/lv/LC_MESSAGES/messages.po +++ b/application/locale/lv/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Latvian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17354,169 +17600,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17524,85 +17774,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17986,7 +18236,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18014,119 +18264,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index a342caca0..d1747a207 100644 Binary files a/application/locale/nl_NL/LC_MESSAGES/messages.mo and b/application/locale/nl_NL/LC_MESSAGES/messages.mo differ diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 8340b8844..be57434bb 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-06 23:01+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-13 15:53+0000\n" "Last-Translator: Alexander \n" "Language-Team: Dutch \n" @@ -20,7 +20,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -73,8 +73,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -85,11 +85,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -120,11 +120,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -145,8 +145,8 @@ msgid "Activated Gridsquare Map" msgstr "Kaart met geactiveerde Locatorvakken" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -308,51 +308,51 @@ msgstr "API sleutel %s is verwijderd" msgid "Awards" msgstr "Awards" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Awards - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -361,13 +361,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -379,29 +379,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Awards - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Awards - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Logweergave - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -414,43 +414,58 @@ msgstr "Logweergave - VUCC" msgid "Log View" msgstr "Logweergave" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " en band " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "en" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Elke band (zonder SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "band" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " en satelliet " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " en baansoort " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " en propagatie " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " en mode " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " en " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -471,14 +486,14 @@ msgstr " en " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -493,16 +508,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -516,111 +531,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Logweergave - Counties" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Awards - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Gewerkte locatorvakken" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Door LoTW bevestigde locatorvakken" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Door papieren QSL bevestigde locatorvakken" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Totaal locator aantal vakken gewerkt" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Awards - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "ITU Zones" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 op 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -651,8 +666,7 @@ msgstr "Maak mode" msgid "Edit Band" msgstr "Band bewerken" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -685,15 +699,24 @@ msgstr "CBR-gegevens geïmporteerd" msgid "Callsign statistics" msgstr "Roepnaam statistieken" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " en band " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " en satelliet " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Roepnaam tester" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Call tester" @@ -777,28 +800,31 @@ msgid "No user has configured Clublog." msgstr "Geen gebruiker heeft Clublog geconfigureerd." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -830,7 +856,7 @@ msgid "Update Contest" msgstr "Bijwerken wedstrijd" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -848,12 +874,12 @@ msgstr "Cronjob bewerken" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "nooit" @@ -929,14 +955,14 @@ msgstr "DCL-sleutelimport" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1182,7 +1208,7 @@ msgstr "Geen QSOs gevonden om te uploaden." msgid "KML Export" msgstr "KML-export" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "QSL-kaartlabels" @@ -1190,59 +1216,59 @@ msgstr "QSL-kaartlabels" msgid "Create Label Type" msgstr "Labeltype maken" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Labelnaam" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Papier Type" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Afmetingen" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Bovenmarge" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Linkermarge" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSL's horizontaal" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSL's verticaal" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Horizontale ruimte" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Verticale ruimte" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Labelbreedte" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Labelhoogte" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Lettergrootte" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Aantal QSOs op label" @@ -1251,22 +1277,22 @@ msgid "Create Paper Type" msgstr "Papier type maken" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Papiernaam" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Papierbreedte" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Papierhoogte" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1274,18 +1300,18 @@ msgstr "" "Je document kon niet worden opgeslagen. Vergeet niet dat het niet dezelfde " "naam mag hebben als bestaande documenttypen." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Je moet een papiertype aan het label toewijzen voordat je gaat printen" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "Je moet een label maken en instellen om te printen." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1293,31 +1319,31 @@ msgstr "" "Er is iets misgegaan! Het label kon niet worden gegenereerd. Controleer de " "labelgrootte en lettergrootte." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "Geen QSO's gevonden om te printen!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Label bewerken" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Label is opgeslagen." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Label is verwijderd." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Papier bewerken" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Papier is opgeslagen." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Papier is verwijderd." @@ -1341,55 +1367,55 @@ msgstr "Stationlogboeken" msgid "Logbook" msgstr "Logboek" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1397,93 +1423,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "Alle callbook opzoekingen zijn mislukt of leverden geen resultaten op." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1491,7 +1519,7 @@ msgstr "Alle callbook opzoekingen zijn mislukt of leverden geen resultaten op." #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1508,13 +1536,13 @@ msgstr "Alle callbook opzoekingen zijn mislukt of leverden geen resultaten op." #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1553,15 +1581,15 @@ msgstr "Alle callbook opzoekingen zijn mislukt of leverden geen resultaten op." msgid "Mode" msgstr "Modus" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1582,15 +1610,15 @@ msgstr "Modus" msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1612,7 +1640,7 @@ msgstr "RST (S)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1621,29 +1649,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1656,7 +1684,7 @@ msgstr "Land" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1664,7 +1692,7 @@ msgstr "Land" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1673,12 +1701,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1687,7 +1715,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1695,7 +1723,7 @@ msgstr "IOTA" msgid "State" msgstr "Staat/Provincie" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1704,19 +1732,19 @@ msgstr "Staat/Provincie" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1732,20 +1760,20 @@ msgstr "Staat/Provincie" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Locatorvak" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1755,9 +1783,9 @@ msgstr "Locatorvak" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1775,18 +1803,18 @@ msgstr "Locatorvak" msgid "Distance" msgstr "Afstand" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1794,25 +1822,26 @@ msgstr "Afstand" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1823,13 +1852,13 @@ msgstr "Afstand" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1868,13 +1897,14 @@ msgstr "Afstand" msgid "Band" msgstr "Band" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1895,13 +1925,13 @@ msgstr "Band" msgid "Frequency" msgstr "Frequentie" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1914,21 +1944,21 @@ msgstr "Frequentie" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operator" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1937,14 +1967,14 @@ msgstr "Operator" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "Verwijderde DXCC" @@ -1952,12 +1982,12 @@ msgstr "Verwijderde DXCC" msgid "Advanced logbook" msgstr "Geavanceerd logboek" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC bijgewerkt voor %d QSO's." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Kaart voor DXCC %s en locatorvak %s." @@ -1972,7 +2002,7 @@ msgstr "Snel opzoeken" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of The World" @@ -1984,11 +2014,11 @@ msgstr "Certificaat geïmporteerd." msgid "Certificate Updated." msgstr "Certificaat bijgewerkt." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certificaat verwijderd." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2001,7 +2031,7 @@ msgstr "" "zonder wachtwoord exporteert!%s Voor meer informatie bezoek de %sLoTW FAQ-" "pagina%s in de Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2012,52 +2042,52 @@ msgstr "" "bestandsnaam 'key-only' bevat, is dit meestal een certificaataanvraag die " "nog niet door LoTW is verwerkt." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Generieke fout bij het verwerken van het certificaat in bestand %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Algemene fout bij het extraheren van de privésleutel uit certificaat in " "bestand %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Informatie" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Verbinding met LoTW mislukt." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-login mislukt voor gebruiker %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Gebruikersnaam/wachtwoord onjuist" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW momenteel niet beschikbaar. Probeer het later opnieuw." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "LoTW login oké!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Geen LoTW-gegevens verstrekt." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW ADIF importeren" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Je hebt je ARRL LoTW-gegevens niet gedefinieerd!" @@ -2082,7 +2112,7 @@ msgstr "Modus bewerken" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Aantekeningen" @@ -2403,19 +2433,19 @@ msgstr "QSL-kaarten uploaden" msgid "Print Requested QSLs" msgstr "Aangevraagde QSL's afdrukken" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "QSO toevoegen" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Je moet ingelogd zijn om deze URL te openen." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Roepnaam overdracht" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Geen roepnaam opgegeven." @@ -2424,18 +2454,18 @@ msgstr "Geen roepnaam opgegeven." msgid "Hardware Interfaces" msgstr "Hardware-interfaces" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Tijdstempel" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2443,61 +2473,65 @@ msgstr "Tijdstempel" msgid "Options" msgstr "Opties" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Instellingen" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Standaard (klik om vrij te geven)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Instellen als standaardradio" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "ONBEKEND" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "laatst bijgewerkt" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Instellen als standaardradio" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Standaard (klik om vrij te geven)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Bewerken" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2506,22 +2540,38 @@ msgstr "Bewerken" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Verwijderen" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket is nu standaard (klik om vrij te geven)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Zet WebSocket als standaard radio" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Geen CAT-gekoppelde radio's gevonden." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "Je kun nog steeds de WebSocket als jouw standaard radio instellen." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "CAT-instellingen bewerken" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Radio succesvol verwijderd" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "EDI exporteren" @@ -2589,7 +2639,7 @@ msgstr "Je hebt geen stationslocaties. Ga naar %s om het te maken!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2600,13 +2650,13 @@ msgstr "hier" msgid "Satellite Timers" msgstr "Satelliet timers" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2661,7 +2711,8 @@ msgstr "Bewerk stationslocatie: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2669,7 +2720,7 @@ msgstr "Bewerk stationslocatie: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2682,7 +2733,7 @@ msgid "Duplicate Station Location:" msgstr "Duplicaat stationslocatie:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Controleer de waarde voor locatorvak (%s)" @@ -2745,7 +2796,8 @@ msgstr "Fout. Link is al in gebruik!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2753,19 +2805,19 @@ msgid "Disabled" msgstr "Uitgeschakeld" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Instellen als actief logboek" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Actief logboek" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2775,7 +2827,7 @@ msgstr "" "locaties die hieraan gekoppeld zijn aan een ander logboek koppelen." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Bekijk openbare pagina voor logboek: " @@ -2784,7 +2836,7 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Weet je zeker dat je de openbare slug wilt verwijderen?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" @@ -2792,12 +2844,12 @@ msgstr "" "Weet je zeker dat je het stationprofiel %s als actief station wilt instellen?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Actief maken" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Actief station" @@ -2805,32 +2857,32 @@ msgstr "Actief station" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "Weet je zeker dat je alle QSO's binnen dit stationprofiel wilt verwijderen?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Leeg logboek" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Kopiëren" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2843,7 +2895,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Kies er één" @@ -2923,103 +2975,103 @@ msgstr "DXCC uitzonderingen voorbereiden: " msgid "Preparing DXCC Prefixes: " msgstr "DXCC-prefixen voorbereiden: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "KLAAR" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Bijwerken..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Dxcc-entiteiten:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Dxcc uitzonderingen:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Dxcc-prefixen:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP-update voltooid. Resultaat: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP-update mislukt. Resultaat: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-gebruikersupdate voltooid. Resultaat: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-gebruikersupdate mislukt. Resultaat: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK-update voltooid. Resultaat: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK-update mislukt. Resultaat: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA-update voltooid. Resultaat: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA-update mislukt. Resultaat: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF-update voltooid. Resultaat: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF-update mislukt. Resultaat: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-update voltooid. Resultaat: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-update mislukt. Resultaat: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA-update voltooid. Resultaat: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA-update mislukt. Resultaat: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE-update voltooid. Resultaat: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE-update mislukt. Resultaat: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT update" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Update van Vermeldenswaardige Radiozendamateurs" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC-vakken bestand update voltooid. Resultaat: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC-vakken bestandsupdate mislukt. Resultaat: " @@ -3053,61 +3105,61 @@ msgstr "Ongeldige parameter!" msgid "Add User" msgstr "Gebruiker toevoegen" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Gebruikersnaam %s is al in gebruik!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-mail %s is al in gebruik!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Ongeldig wachtwoord!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Gebruiker %s toegevoegd!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Gebruikers" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Gebruiker bewerken" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Gebruiker %s bewerkt" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profiel" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Verwijder gebruiker" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Gebruiker verwijderd" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Kan gebruiker niet verwijderen!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Databasefout:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3115,29 +3167,29 @@ msgstr "" "Gefeliciteerd! Wavelog is succesvol geïnstalleerd. Je kunt nu voor de eerste " "keer inloggen." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Dit is niet toegestaan!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Inloggen mislukt. Probeer het opnieuw." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Inloggen" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Je kunt niet direct inloggen op een clubstation. Gebruik in plaats daarvan " "je persoonlijke account." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3145,7 +3197,7 @@ msgstr "" "Je account is vergrendeld vanwege te veel mislukte inlogpogingen. Reset je " "wachtwoord." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3155,52 +3207,52 @@ msgstr "" "onverwacht verschijnt of blijft verschijnen, neem dan contact op met een " "beheerder. Alleen beheerders mogen momenteel inloggen." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Onjuiste gebruikersnaam of wachtwoord!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Gebruiker %s heeft zich afgemeld." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Stationsnaam" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Stationsroepnaam" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "Station DXCC" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Station CQ Zone" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Station ITU Zone" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Station Locator" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3209,35 +3261,35 @@ msgstr "" "Station succesvol aangemaakt! Welkom bij Wavelog! Om je station in te " "stellen, klik %shier%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "Station installatie mislukt! Stel je station handmatig in." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "Wachtwoord resetten is uitgeschakeld in de demo!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Wachtwoord vergeten" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "E-mailinstellingen zijn onjuist." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Wachtwoordreset verwerkt." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Wachtwoord opnieuw instellen" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3245,7 +3297,7 @@ msgstr "" "Kon het account niet instellen op deze gebruikersnaam. Probeer een andere " "dan \"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3253,7 +3305,7 @@ msgstr "" "Kon het account niet instellen op dit e-mailadres. Probeer een ander adres " "dan \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3262,7 +3314,7 @@ msgstr "" "Je kunt momenteel geen andere gebruiker imiteren. Je moet %s instellen op %s " "in je config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3271,15 +3323,15 @@ msgstr "" "Je kunt momenteel geen andere gebruiker imiteren. Verander eerst de " "encryption_key in je config.php-bestand!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Ongeldige hash" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "De nabootsingshash is te oud. Probeer het opnieuw." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3287,15 +3339,15 @@ msgstr "" "Je kunt je niet voordoen als een andere gebruiker terwijl je niet bent " "ingelogd als de brongebruiker" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Er was een probleem met je sessie. Probeer het opnieuw." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "De gevraagde gebruiker om te imiteren bestaat niet" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3303,13 +3355,13 @@ msgstr "" "Kon het juiste machtigingsniveau voor het clubstation niet bepalen. Probeer " "het opnieuw na opnieuw inloggen." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Oeps.. Er is iets misgegaan. Probeer opnieuw in te loggen." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3317,7 +3369,7 @@ msgstr "" "De mogelijkheid om snel terug te keren is uitgeschakeld nadat de " "beveiligingshash is verlopen. Log alstublieft opnieuw in." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3331,7 +3383,7 @@ msgid "Satellite Gridsquare Map" msgstr "Satelliet locatorvak kaart" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Openbare zoekopdracht" @@ -3382,14 +3434,19 @@ msgstr "Meerdere gebruikers gevonden op basis van slug" msgid "Gridsquare Zone finder" msgstr "Locatorvak Zone zoeker" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Lookup niet geconfigureerd. Controleer de configuratie." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "Fout bij het verkrijgen van een sessiesleutel voor callbook. Fout: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "QRZCQ Fout" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Fout bij het verkrijgen van een sessiesleutel voor HamQTH-query" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3543,27 +3600,27 @@ msgstr "HRDlog: Geen stationprofielen met HRDlog-gegevens gevonden." msgid "Station not accessible" msgstr "Station niet toegankelijk" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "Station-ID niet toegestaan" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Geen roepnaam gegeven" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC moet numeriek zijn" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Verkeerde stationsroepnaam %s bij het importeren van QSO met %s voor %s: " "OVERGESLAGEN" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3571,11 +3628,11 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder geldige datum. Deze QSO is " "niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO vanaf" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3583,7 +3640,7 @@ msgstr "" "Je hebt geprobeerd een QSO te importeren zonder een opgegeven CALL. Dit QSO " "is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3592,64 +3649,64 @@ msgstr "" "QSO op %s: Je hebt geprobeerd een QSO te importeren zonder een opgegeven " "band. Dit QSO is niet geïmporteerd. Het is ongeldig" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "onbevestigd" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "onbekend" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "POTA-referentie al in logboek" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO bijgewerkt" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3663,7 +3720,7 @@ msgstr "QSO bijgewerkt" msgid "Bearing" msgstr "Koers" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "VuccGrids-tabel is leeg. Importeer eerst de VUCC-gridsgegevens." @@ -3800,42 +3857,40 @@ msgstr "Verschil" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3864,33 +3919,33 @@ msgstr "Verschil" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3911,7 +3966,7 @@ msgstr "Verschil" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Alles" @@ -3955,12 +4010,12 @@ msgstr "Periode" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Propagatie" @@ -3976,7 +4031,7 @@ msgstr "Alles behalve SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Geen/Leeg" @@ -3986,11 +4041,11 @@ msgstr "Geen/Leeg" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Aircraft Scatter" @@ -4000,11 +4055,11 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4014,11 +4069,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4028,11 +4083,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -4042,11 +4097,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4056,11 +4111,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Earth-Moon-Earth" @@ -4070,11 +4125,11 @@ msgstr "Earth-Moon-Earth" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadic E" @@ -4084,11 +4139,11 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Field Aligned Irregularities" @@ -4098,11 +4153,11 @@ msgstr "Field Aligned Irregularities" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2 Reflection" @@ -4112,11 +4167,11 @@ msgstr "F2 Reflection" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Internet-ondersteund" @@ -4126,11 +4181,11 @@ msgstr "Internet-ondersteund" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4140,11 +4195,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4154,11 +4209,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor scatter" @@ -4168,11 +4223,11 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Terrestrische of atmosferische repeater of transponder" @@ -4182,11 +4237,11 @@ msgstr "Terrestrische of atmosferische repeater of transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Regen scatter" @@ -4196,11 +4251,11 @@ msgstr "Regen scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satelliet" @@ -4210,11 +4265,11 @@ msgstr "Satelliet" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-equatoriaal" @@ -4224,11 +4279,11 @@ msgstr "Trans-equatoriaal" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Tropospheric ducting" @@ -4237,18 +4292,18 @@ msgstr "Tropospheric ducting" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4260,21 +4315,21 @@ msgstr "Tropospheric ducting" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Toon" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4285,7 +4340,7 @@ msgstr "Toon" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4294,19 +4349,25 @@ msgstr "Toon" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satelliet" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4326,22 +4387,22 @@ msgstr "Bevestiging" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4387,11 +4448,11 @@ msgstr "Minimum aantal" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4400,11 +4461,10 @@ msgstr "Minimum aantal" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4424,7 +4484,8 @@ msgstr "Niets gevonden!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4440,12 +4501,13 @@ msgstr "Niets gevonden!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4469,7 +4531,7 @@ msgstr "Niets gevonden!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Roepnaam" @@ -4480,12 +4542,12 @@ msgstr "Tellen" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Toon QSOs" @@ -4551,7 +4613,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4575,11 +4637,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4593,12 +4655,12 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4613,7 +4675,7 @@ msgstr "Datum" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4626,7 +4688,7 @@ msgstr "Tijd" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4681,20 +4743,20 @@ msgstr "Belangrijk" msgid "Log Files must have the file type *.adi" msgstr "Logbestanden moeten het bestandstype *.adi hebben" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Maximale bestandsgrootte voor uploaden is " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4756,8 +4818,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "GEVAAR" @@ -5146,8 +5208,8 @@ msgstr "POTA REF in ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Status" @@ -5166,7 +5228,7 @@ msgstr "Eenvoudige naam om te beschrijven waarvoor je deze API gebruikt." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5232,7 +5294,7 @@ msgstr "De API-URL voor dit Wavelog-exemplaar is" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5286,7 +5348,7 @@ msgstr "Machtigingen" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5331,7 +5393,7 @@ msgstr "Maak een alleen-lezen sleutel aan" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5340,8 +5402,8 @@ msgstr "Maak een alleen-lezen sleutel aan" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5358,14 +5420,14 @@ msgstr "Maak een alleen-lezen sleutel aan" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5421,9 +5483,9 @@ msgid "Filtering on" msgstr "Filteren op" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "County" @@ -5476,19 +5538,14 @@ msgid "Counties Confirmed" msgstr "Counties bevestigd" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5510,22 +5567,23 @@ msgid "Total" msgstr "Totaal" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5579,10 +5637,12 @@ msgid "Awards - CQ WAZ" msgstr "Awards - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filters" @@ -5592,92 +5652,114 @@ msgid "Show CQ Zone Map" msgstr "Toon CQ Zone-kaart" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Datumvoorkeuren" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Vandaag" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Gisteren" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Laatste 7 dagen" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Laatste 30 dagen" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Deze maand" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Vorige maand" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Dit jaar" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "Vorig jaar" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Wissen" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5685,7 +5767,9 @@ msgid "Date from" msgstr "Datum van" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5693,11 +5777,10 @@ msgid "Date to" msgstr "Datum tot" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5707,9 +5790,8 @@ msgid "Confirmed" msgstr "Bevestigd" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5719,67 +5801,64 @@ msgstr "Gewerkt" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Toon gewerkt" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Toon bevestigd" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Toon niet gewerkt" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5787,95 +5866,161 @@ msgstr "Toon QSO met QSL-type" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL-kaart" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabel" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Kaart" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legenda:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL-papieren-kaart" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-\"bevestiging\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "Ge(w)erkt" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Samenvatting" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Totaal (excl SAT)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Totaal gewerkt" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5941,15 +6086,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Gewerkt / Bevestigd" @@ -5958,11 +6103,9 @@ msgstr "Gewerkt / Bevestigd" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Elke band" @@ -5970,23 +6113,20 @@ msgstr "Elke band" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Herstel" @@ -6043,161 +6183,127 @@ msgstr "" "Velden genomen voor deze Award: DXCC (Moet een geldige zijn uit de DXCC-ADIF-" "Spec-List" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Toon DXCC-kaart" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Inclusief verwijderd" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antarctica" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Afrika" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Azië" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Noord-Amerika" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Zuid-Amerika" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oceanië" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Elke band (zonder SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legenda:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL-papieren-kaart" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-\"bevestiging\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "Ge(w)erkt" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "DXCC-naam" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Voorvoegsel" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "Geen resultaten gevonden voor je zoekcriteria. Probeer het opnieuw." @@ -6469,23 +6575,23 @@ msgstr "Toon IOTA-kaart" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Naam" @@ -6494,14 +6600,14 @@ msgid "Deleted" msgstr "Verwijderd" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6511,7 +6617,7 @@ msgstr "Verwijderd" msgid "ITU Zone" msgstr "ITU-zone" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6523,21 +6629,21 @@ msgstr "" "van de 75 uitzendzones zoals gedefinieerd door de Internationale " "Telecommunicatie Unie (ITU)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Je kunt meer informatie vinden op de website van %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Velden genomen voor deze Award: ITU-Zone (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Awards - ITU-zones" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Toon ITU Zone Kaart" @@ -6595,7 +6701,7 @@ msgstr "Resultaten" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Woonplaats" @@ -6604,8 +6710,10 @@ msgstr "Woonplaats" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6739,7 +6847,7 @@ msgstr "Woiwodschap" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Code" @@ -6755,7 +6863,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6793,8 +6901,8 @@ msgid "Band Categories" msgstr "Banden Categorieën" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Herstel Staat/Provincie" @@ -6866,8 +6974,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "POTA Referentie" @@ -6878,6 +6986,7 @@ msgstr "Provincie" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Zweef over een provincie" @@ -6945,7 +7054,7 @@ msgid "Reference" msgstr "Referentie" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -7013,7 +7122,7 @@ msgstr "" "gewerkte en bevestigde locatorvakken op een gewenste band." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "Officiële informatie en de regels zijn te vinden in dit document: %s." @@ -7098,25 +7207,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Awards - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Continent" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "Geen QSOs gevonden die aan de criteria voor deze award voldoen!" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "WAE Award" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7126,7 +7240,7 @@ msgstr "" "voor contacten met amateurradiostations in Europese landen en op eilanden " "die vermeld staan op de WAE-landenlijst op verschillende banden." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7136,11 +7250,11 @@ msgstr "" "Digitale en Gemengde modi. Het wordt uitgegeven in vijf klassen: WAE III, " "WAE II, WAE I, WAE TOP en de WAE Trofee." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Velden voor deze Award: Regio, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "WAE Naam" @@ -7190,7 +7304,7 @@ msgid "Show WAJA Map" msgstr "Toon WAJA-kaart" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefectuur" @@ -7254,15 +7368,20 @@ msgid "Show WAP Map" msgstr "Toon WAP-kaart" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Provincie" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Provincie" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Alle provincies van China gewerkt" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7274,7 +7393,7 @@ msgstr "" "alle provincies, gemeenten, autonome regio's en speciale administratieve " "regio's van China, om zo een dieper begrip van China te stimuleren." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7283,7 +7402,7 @@ msgstr "" "contacten of behaald worden in een enkele inspanning tijdens de jaarlijkse " "WAPC Contest." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7293,6 +7412,10 @@ msgstr "" "Macao/152, Taiwan/386, Pratas Eil./505 of Scarborough Rif/506 zijn) en " "geldige Staat/Provincie (ADIF: DXCC en STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Toon WAPC-kaart" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7407,8 +7530,8 @@ msgstr "Velden genomen voor deze Award: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "WWFF Referentie" @@ -7463,215 +7586,215 @@ msgid "" msgstr "" "De back-up van je notities is succesvol voltooid. De uitvoer is te vinden op" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klik om de logging voor te bereiden." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "om op de frequentie af te stemmen" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Pop-up geblokkeerd" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "Pop-up werd geblokkeerd! Sta pop-ups voor deze site permanent toe." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT-verbinding vereist" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "CAT-verbinding inschakelen om de radio af te stemmen" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Filters wissen" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Bandfilter behouden (bandvergrendeling is actief)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio ingesteld op Geen - CAT-verbinding uitgeschakeld" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio afgestemd" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Afgestemd op" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Afstemmen mislukt" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Kon niet afstemmen op frequentie" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO voorbereid" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "verzonden naar het logboekformulier" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT-verbinding" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Klik om CAT-verbinding in te schakelen" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT volgt radio - Klik om uit te schakelen" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klik om bandvergrendeling in te schakelen (vereist CAT-verbinding)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Bandvergrendeling actief - Klik om uit te schakelen" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Bandvergrendeling" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Bandvergrendeling ingeschakeld - bandfilter volgt radioband" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Bandfilter gewijzigd naar" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "door transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Frequentiefilter ingesteld op" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frequentie buiten bekende banden - alle banden weergeven" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Wachten op radiogegevens..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Mijn favorieten" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Kan favorieten niet laden" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Modi toegepast. Bandfilter behouden (CAT-verbinding is actief)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Je favoriete banden en modi toegepast" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Mijn submodi" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Submodusfilter ingeschakeld" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Submodusfilter uitgeschakeld - alles weergeven" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Vereiste submodi" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Configureren in Gebruikersinstellingen - Modi" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Geen submodi geconfigureerd - configureer in Gebruikersinstellingen - Modi" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Geen submodi ingeschakeld in instellingen - alle spots worden weergegeven" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Uitgeschakeld - geen submodi ingeschakeld voor deze modus in " "Gebruikersinstellingen" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Schakel CW-modusfilter in" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Schakel Digitaal-modusfilter in" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Schakel spraakmodusfilter in" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favorieten" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Huidige filters opslaan..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Voer een naam in voor dit filtervoorinstelling:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Filtervoorinstelling opgeslagen" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Filtervoorinstelling geladen" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Filtervoorinstelling verwijderd" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Weet je zeker dat je dit filtervoorinstelling wilt verwijderen?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Geen opgeslagen filtervoorinstellingen" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7679,64 +7802,64 @@ msgstr "" "Maximaal 20 filtervoorinstellingen bereikt. Verwijder er enkele voordat je " "nieuwe toevoegt." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Gegevens laden van DX Cluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Laatst opgehaald voor" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Maximale ouderdom" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Opgehaald om" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Volgende update in" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minuten" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "seconden" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spots opgehaald" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "tonen" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "alles laten zien" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Actieve filters" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Ophalen..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Niet gewerkt" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Gewerkt maar niet bevestigd" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7744,269 +7867,272 @@ msgstr "Gewerkt maar niet bevestigd" msgid "LoTW User" msgstr "LoTW-gebruiker" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nieuw roepnaam" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nieuw continent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nieuw land" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Eerder gewerkt" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Gewerkt op %s met %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "van" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "gespot" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Verse spot (< 5 minuten oud)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Contest" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klik om te bekijken" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "op QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klik om %s te bekijken op QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zie details voor" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Gewerkt op" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Niet op deze band gewerkt" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW-gebruiker. Laatste upload was %d dagen geleden" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klik om te bekijken op POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Klik om te bekijken op SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Klik om te bekijken op cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klik om te bekijken op IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Zie details voor continent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Zie details voor continent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Bekijk details voor CQ-zone" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Zie details voor CQ Zone %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "in" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Volledig scherm afsluiten" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Volledig scherm wisselen" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Bandfiltering wordt door je radio geregeld wanneer CAT-verbinding is " "ingeschakeld" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klik om loggen voor te bereiden" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(vereist CAT-verbinding)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Opmerking" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Leeftijd" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Binnenkomend" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Uitgaand" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spots" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spotters" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Even geduld" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Wacht %s seconden voordat je een ander roepletter naar het QSO-formulier " "verzendt" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Spots laden..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Geen spots gevonden" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Geen gegevens beschikbaar" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Geen spots gevonden voor geselecteerde filters" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Fout bij het laden van spots. Probeer het opnieuw." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Toon alle modi" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Toon alle spots" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Spotters weergeven" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Kaart uitbreiden" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Toon dag/nacht" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Je QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Terug naar huis" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX-cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX Cluster Hulp" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Compacte modus - Menu verbergen/weergeven" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8014,314 +8140,281 @@ msgstr "TRX:" msgid "None" msgstr "Geen" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Polling - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "van:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Selecteer alle continenten" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Wereld" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Afrika continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Antarctica continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Azië continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Europa continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Noord-Amerika continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Oceanië continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Zuid-Amerika continent filter in- of uitschakelen" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Geavanceerde filters" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Vasthouden" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "en klik om meerdere opties te selecteren" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC-status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Spraak" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digitaal" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Vereiste vlaggen" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Gewerkte roepnaam" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Extra vlaggen" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Vers (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spots van continent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Gespotte station continent" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Filters toepassen" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Favorieten filteren" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Alle filters wissen behalve Van Continent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Schakel 160m bandfilter in/uit" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Schakel 80m bandfilter in/uit" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Schakel 60m bandfilter in/uit" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Schakel 40m bandfilter in/uit" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Schakel 30m bandfilter in/uit" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Schakel 20m bandfilter in/uit" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Schakel 17m bandfilter in/uit" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Schakel 15m bandfilter in/uit" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Schakel 12m bandfilter in/uit" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Schakel 10m bandfilter in/uit" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Schakel 6m bandfilter om" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Schakel VHF bandfilter in/uit" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Schakel UHF bandfilter in/uit" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Schakel SHF bandfilter in/uit" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Submodi laden..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Schakel LoTW-gebruikerfilter in/uit" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW-gebruikers" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Schakel DX Spot-filter in/uit (gespotte continent ≠ spotter-continent)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Schakel de filter Nieuwe Continenten in/uit" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nieuwe continenten" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Nieuwe entiteitenfilter aan- of uitzetten" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nieuwe entiteiten" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Nieuw oproeptekens filter in/uitschakelen" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nieuwe roepnamen" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Schakel verse spots filter in/uit (< 5 minuten oud)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Vers" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Schakel wedstrijdfilter in/uit" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Schakel Geo Hunter in/uit (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Verwezen" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Open DX Kaart weergave" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX Kaart" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Zoek spots..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Zoekkolom" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "Opmerking: Kaart toont DXCC-locaties, niet de werkelijke spot-locaties" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Alle kolommen" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Ouderdom in minuten" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot Info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Freq" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submodus" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Gespotte roepnaam" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX-station" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Vlag" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC-entiteit" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entiteit" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Roepnaam van spotter" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter Continent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotter CQ-zone" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Laatste QSO-datum" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Speciaal" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Speciale vlaggen" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8329,6 +8422,60 @@ msgstr "Speciale vlaggen" msgid "Message" msgstr "Bericht" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter Continent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotter CQ-zone" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Zoek spots..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "Opmerking: Kaart toont DXCC-locaties, niet de werkelijke spot-locaties" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Ouderdom in minuten" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Gespotte roepnaam" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Vlag" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC-entiteit" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Roepnaam van spotter" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Laatste QSO-datum" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Speciaal" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Speciale vlaggen" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Voer geldige nummers in voor frequentie" @@ -8604,7 +8751,7 @@ msgstr "" "referentiecode)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8722,19 +8869,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8768,15 +8915,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Ja" @@ -8791,19 +8940,19 @@ msgstr "Ja" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8837,16 +8986,17 @@ msgstr "Ja" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Nee" @@ -8878,7 +9028,7 @@ msgid "First QSO" msgstr "Eerste QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Laatste QSO" @@ -8987,8 +9137,8 @@ msgid "Callsign DXCC identification" msgstr "Roepnaam DXCC-identificatie" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Roepnaam: " @@ -9279,8 +9429,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9594,7 +9744,7 @@ msgstr "ADIF-naam" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9665,7 +9815,7 @@ msgstr "Creëren" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Contest Naam" @@ -9745,8 +9895,8 @@ msgid "Locator" msgstr "Locator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9862,11 +10012,11 @@ msgstr "Identificator" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Ingeschakeld" @@ -9961,7 +10111,8 @@ msgid "Cron List" msgstr "Cronlijst" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10157,9 +10308,9 @@ msgstr "Nodig" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10181,10 +10332,10 @@ msgstr "Nodig" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Verzonden" @@ -10194,9 +10345,9 @@ msgstr "Verzonden" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10217,10 +10368,10 @@ msgstr "Verzonden" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Ontvangen" @@ -10228,17 +10379,17 @@ msgstr "Ontvangen" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10261,11 +10412,11 @@ msgstr "Ontvangen" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Aangevraagd" @@ -10291,6 +10442,38 @@ msgstr "Laatste update om %s." msgid "Data provided by HAMqsl." msgstr "Gegevens verstrekt door HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "K-index: Planetair geomagnetische activiteit (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "A-index: Dagelijkse geomagnetische activiteitsindex" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Zonnefluxindex" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Zonnewindsnelheid (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Signaal-ruisverhouding" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Röntgen zonnefluxniveau" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Zonnevlekgetal" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Aurora-activiteitsniveau (Kp borealis)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Aantal QSO's voor deze dag van de week" @@ -10370,7 +10553,7 @@ msgstr "Startdatum" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Einddatum" @@ -10710,7 +10893,8 @@ msgstr "Succes" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Mislukt" @@ -10789,109 +10973,128 @@ msgstr "Modules" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Geïnstalleerd" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Niet geïnstalleerd" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "Cache-informatie" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "Huidige configuratie" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "Primaire adapter" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "Reserve-adapter" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "Pad voor %s-adapter" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "Sleutelvoorvoegsel" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" -"Cache gebruikt momenteel de reserve-adapter omdat de primaire niet " -"beschikbaar is." - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "De cache werkt goed. Alles in orde!" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "Cachegegevens" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "Totale grootte" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "Aantal sleutels" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "De cache werkt goed. Alles in orde!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"Cache gebruikt momenteel de reserve-adapter omdat de primaire niet " +"beschikbaar is. Controleer je bestandsrechten, PHP-extensies en/of je " +"netwerkverbinding met de diensten (als je redis/memcached gebruikt)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"Cache werkt niet! Momenteel gebruikt het systeem een %s adapter. Controleer " +"je bestandsrechten, PHP-extensies en/of je netwerkverbinding met de services " +"(als je redis/memcached gebruikt). Je kunt Wavelog blijven gebruiken, maar " +"er zullen geen waarden worden gecachet (wat slecht is)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "Beschikbare adapters" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "Cache wissen" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Git Informatie" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n.v.t." -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Laatste Fetch" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Controleer op nieuwe versie" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10899,77 +11102,77 @@ msgstr "Controleer op nieuwe versie" msgid "Update now" msgstr "Nu bijwerken" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Downloaddatum bestand" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Bestand" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Laatste update" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "DXCC-update van Club Log" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Bijwerken" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "DOK-bestand downloaden" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "LoTW-gebruikers downloaden" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "POTA-bestandsdownload" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "SCP-bestand downloaden" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "SOTA-bestand downloaden" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "WWFF-bestandsdownload" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "TLE-update" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Radioamateurs van belang update" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCC-Vakken" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "QSO-DB Onderhoud" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -10977,141 +11180,141 @@ msgid_plural "" msgstr[0] "De database bevat %d QSO zonder een stationsprofiel (locatie)" msgstr[1] "De database bevat %d QSO's zonder een station-profiel (locatie)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Markeer QSOs en wijs ze opnieuw toe aan een bestaande stationslocatie:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Doellocatie" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Opnieuw toewijzen" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Elke QSO in je database is toegewezen aan een stationsprofiel (locatie)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Alles oké" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albanees" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Armeens" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bosnisch" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Bulgaars" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Chinees (Vereenvoudigd)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Kroatisch" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Tsjechisch" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Nederlands" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Engels" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estisch" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Fins" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Frans" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Duits" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Grieks" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Hongaars" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Italiaans" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japans" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Lets" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Litouws" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Montenegrijnse" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Pools" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portugees" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Servisch" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Slowaaks" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Sloveens" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Spaans" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Zweeds" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turks" @@ -11173,7 +11376,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Alleen QSO's met een gedefinieerd locatorvak worden geëxporteerd!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL-info" @@ -11421,7 +11624,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "QSL-bericht" @@ -11559,31 +11762,32 @@ msgid "QSL Date" msgstr "QSL Datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Bekijken" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Leeg" @@ -11668,7 +11872,7 @@ msgstr "De QSO's zijn gemarkeerd als geëxporteerd naar het HRDLog Logboek." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Wijzig QSO" @@ -12061,79 +12265,79 @@ msgstr "Versie-informatie" msgid "Failed to load the modal. Please try again." msgstr "Laden van het popup venster mislukt. Probeer het opnieuw." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Beschrijving:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Beschrijving zoekopdracht" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Je zoekopdracht is opgeslagen!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Bewerk zoekopdrachten" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Opgeslagen zoekopdrachten:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Zoekopdracht uitvoeren" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Opgeslagen zoekopdrachten" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Je moet een zoekopdracht maken voordat je zoekt!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Exporteren naar ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Openen in het geavanceerde logboek" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" "Waarschuwing! Weet je zeker dat je deze opgeslagen zoekopdracht wilt " "verwijderen?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "De opgeslagen zoekopdracht is verwijderd!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "" "De opgeslagen zoekopdracht kon niet worden verwijderd. Probeer het opnieuw!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "De beschrijving van de zoekopdracht is bijgewerkt!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Er is iets misgegaan met het opslaan. Probeer het opnieuw!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12142,15 +12346,15 @@ msgstr "" "Even wachten. De gekozen DXCC is oud en iet meer geldig. Controleer welke " "DXCC wel de correcte is. Bent u zeker, negeer dan deze waarschuwing." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Aantal: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Vakken: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12158,57 +12362,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Locatorvakken" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "Locatie opzoeken mislukt. Controleer de browserconsole." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "locatorvak" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Totaal aantal" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSL-kaart voor " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Waarschuwing! Weet je zeker dat je deze QSL-kaart wilt verwijderen?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kaart" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL-kaart voor " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "QSL-afbeeldingsbestand" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Voorkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Achterkant QSL-kaart:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Voeg extra QSOs toe aan een QSL-kaart" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Er is iets misgegaan. Probeer het opnieuw!" @@ -12362,7 +12570,7 @@ msgid "Satellite Pass" msgstr "Satellietovergang" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Beheerder" @@ -12387,7 +12595,7 @@ msgid "Log" msgstr "Logboek" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12484,7 +12692,7 @@ msgid "Gridsquare Zone checker" msgstr "Locatorvak Zone controleur" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Help" @@ -12620,7 +12828,7 @@ msgid "Total height of one label" msgstr "Totale hoogte van één etiket" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Lettergrootte" @@ -12678,14 +12886,14 @@ msgstr "Oriëntatie van papier" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Landschap" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Portret" @@ -12704,47 +12912,52 @@ msgstr "" "de labelstijl." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Markeer QSL als gedrukt" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Afdrukken" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Opties voor labelafdrukken" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Nieuw labeltype maken" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Nieuw papiersoort maken" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Papiersoorten" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Breedte" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Hoogte" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Gebruikt door labels" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Oriëntatie" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Labeltypen" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12752,56 +12965,66 @@ msgstr "Labeltypen" msgid "QSOs" msgstr "QSOs" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Gebruik voor print" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Geen papier toegewezen" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "QSL-kaartlabels in behandeling" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSOs wachten" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Bekijk QSOs" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Voeg mijn roepnaam toe?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Vak opnemen?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Referentie opnemen? (SIG, SOTA, POTA, IOTA, WWFF; indien beschikbaar op " "locatie)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Via opnemen (indien ingevuld)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Inclusief QSLMSG (indien ingevuld)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Inclusief TNX-bericht?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Begin met afdrukken om?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Voer de startpositie in voor het etiketteren" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12962,21 +13185,21 @@ msgstr "DXCC CQ Zone" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Station" @@ -13060,88 +13283,92 @@ msgstr "" "Waarschuwing. Dit gereedschap kan gevaarlijk zijn voor je gegevens, en moet " "alleen worden gebruikt als je weet wat je doet." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Alle stationslocaties" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "Controleer alle QSOs in het logboek op onjuiste CQ-zones" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Gebruik Wavelog om de CQ Zone voor alle QSOs te bepalen." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Controleren" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "Controleer alle QSOs in het logboek op onjuiste ITU-zones" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Gebruik Wavelog om de ITU-zone voor alle QSO's te bepalen." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Controleer locatorvakken" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Controleer locatorvakken die niet overeenkomen met de DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Repareer Continent" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Bijwerken ontbrekende of onjuiste continentinformatie" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Ontbrekende staats-/provincie-informatie bijwerken" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Afstanden bijwerken" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Bereken en werk de afstandsinformatie bij voor QSO's" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "Controleer alle QSOs in het logboek op onjuiste DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Gebruik Wavelog om DXCC voor alle QSO's te bepalen." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Zoek QSOs met ontbrekend locatorvak in callbook" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Gebruik callbook om locatorvak in te stellen" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Dit is beperkt tot 150 roepnamen per keer!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Controleer IOTA ten opzichte van DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Gebruik Wavelog om IOTA tegen DXCC te controleren" @@ -13186,10 +13413,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Regio" @@ -13258,9 +13485,9 @@ msgid "QSL Sent Method" msgstr "Wijze van QSL verzending" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL via" @@ -13284,84 +13511,84 @@ msgstr "Band RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Ongeldig" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Geverifieerd" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Direct" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Elektronisch" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13717,26 +13944,26 @@ msgstr "Locatorvakken voor" msgid "Non DXCC matching gridsquare" msgstr "Niet-DXCC overeenkomende locatorvak" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Van" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Geen/Leeg" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13744,51 +13971,69 @@ msgstr "" "Afstand in kilometers. Zoeken zal naar afstanden groter dan of gelijk aan " "deze waarde kijken." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Duur" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Duur in minuten. De zoekopdracht zoekt naar duur die groter zijn dan of " +"gelijk aan deze waarde." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Kolom sorteren" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "QSO-tijd" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO Gewijzigd" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Sorteer richting" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Aflopend" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Oplopend" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Filters toepassen" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "QSL-filters" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL verzonden" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13805,32 +14050,32 @@ msgstr "QSL verzonden" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "In de wachtrij geplaatst" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13859,280 +14104,280 @@ msgstr "In de wachtrij geplaatst" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Ongeldig (Negeren)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL ontvangen" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "QSL verzendmethode" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "QSL ontvangstmethode" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW verzonden" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW ontvangen" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog verzonden" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog ontvangen" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL verzonden" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL ontvangen" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL verzonden" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL ontvangen" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "QSL-afbeeldingen" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ verzonden" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ ontvangen" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Snelfilters" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Snelzoeken met geselecteerd: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Zoek op datum" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Zoek DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Zoek op Staat/Provincie" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Zoek locatorvak" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Zoek CQ Zone" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Zoek ITU-zone" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Zoek op modus" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Zoek op band" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Zoek IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Zoek SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Zoek POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Zoek WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Zoek op operator" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" "Waarschuwing! Weet je zeker dat je de gemarkeerde QSO's wilt verwijderen?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO(s) worden verwijderd" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Met geselecteerd: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Update van Callbook" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "Wachtrij Bureau" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "Wachtrij Direct" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "Wachtrij Elektronisch" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Verzonden (Bureau)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Verzonden (Direct)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Verzonden (Elektronisch)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Niet verzonden" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL niet vereist" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Niet ontvangen" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Ontvangen (Bureau)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Ontvangen (Direct)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Ontvangen (Elektronisch)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Maak ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Label afdrukken" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "QSL Diavoorstelling" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "Hoeveelheid resultaten" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplicaten" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Wereldbol" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Databasetools" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Laatst gewijzigd" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "Van" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL Bericht (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL Bericht (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Mijn referenties" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Ant Az" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Antenne-azimut" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Ant El" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Antenne elevatie" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Station vermogen" @@ -14212,15 +14457,15 @@ msgstr "Resultaten voor de locatorvak update:" msgid "The number of QSOs updated for gridsquare is" msgstr "Het aantal bijgewerkte QSOs voor locatorvak is" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Inclusief Via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Inclusief QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Inclusief TNX-bericht" @@ -14287,35 +14532,35 @@ msgstr "Momenteel ondersteunde landen" msgid "Basic QSO Information" msgstr "Basis QSO Informatie" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Stationgegevens" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Bevestigingsdiensten" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Geografische informatie" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Award programmas" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Aanvullende informatie" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Technische details" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Alleen voor debugging" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14323,7 +14568,7 @@ msgstr "" "Dit is alleen bedoeld voor foutopsporingsdoeleinden en is niet bedoeld om " "standaard weergegeven te worden" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Kaartlagen" @@ -14452,7 +14697,7 @@ msgid "Date Expires" msgstr "Vervaldatum" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Last upload" @@ -15124,7 +15369,7 @@ msgstr "Is er nog extra informatie die we moeten weten?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "E-mail" @@ -15141,11 +15386,11 @@ msgstr "Verzoek niet in logboek opnemen" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Via" @@ -15157,7 +15402,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Toevoegen aan afdrukwachtrij" @@ -15576,7 +15821,7 @@ msgstr "Markeer aangevraagde QSL's als verzonden" msgid "No QSLs to print were found!" msgstr "Er zijn geen QSL's om te printen gevonden!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15722,7 +15967,7 @@ msgstr "Geef vermogen in Watt. Vermeld alleen cijfers." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Vermogen (W)" @@ -15784,9 +16029,9 @@ msgid "Station County" msgstr "Station County" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "SIG-info" @@ -15834,7 +16079,7 @@ msgstr "Opmerking: Niet bewerkbaar. Alleen hier weergegeven." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Gewijzigd" @@ -15959,16 +16204,16 @@ msgstr "Zoek DXCluster voor de laatste spotter rapport" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "IOTA Referentie" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "SOTA Referentie" @@ -16008,11 +16253,11 @@ msgstr "Bijvoorbeeld: Q03" msgid "E-mail address of QSO-partner" msgstr "E-mailadres van QSO-partner" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Satelliet Naam" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Satelliet Mode" @@ -16118,7 +16363,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Hieronder staat een lijst van actieve radio's die zijn verbonden met Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16126,16 +16371,32 @@ msgstr "" "Als je nog geen radio's hebt aangesloten, ga dan naar de API-pagina om API-" "sleutels te genereren." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Als club station operator kun je de standaard radio instellen die van " +"toepassing is. Dit stelt je in staat een standaard radio te selecteren bij " +"het inloggen, terwijl je naar wens ook de andere radio's kunt gebruiken." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Als een normale gebruiker kun je een standaard radio instellen. Hierdoor heb " +"je vaste radio ingeschakeld bij het inloggen, terwijl je nog steeds andere " +"radio's kunt kiezen als je dat wilt." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Je kunt in de wiki ontdekken hoe je de %s kunt gebruiken." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Je kunt in de wiki lezen hoe je de %sradio functions%s kunt gebruiken." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "radiofuncties" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Even wachten..." @@ -16479,13 +16740,6 @@ msgstr "AOS Tijd" msgid "LOS Time" msgstr "LOS-tijd" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Duur" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Pad" @@ -16600,6 +16854,11 @@ msgstr "Zoekopdracht opslaan" msgid "Stored queries" msgstr "Opgeslagen zoekopdrachten" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Je kunt in de wiki ontdekken hoe je de %s kunt gebruiken." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "zoekfilterfuncties" @@ -16677,35 +16936,35 @@ msgstr "Markeer QSL udsendt (Direct)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Markeer QSL ontvangen (Bureau)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Markeer QSL ontvangen (Direct)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Markeer QSL Kort anmodet om (Bureau)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Markeer QSL Kort anmodet om (Direct)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Markeer QSL Kort ikke påkrævet" @@ -17253,7 +17512,7 @@ msgstr "Station Special Interest Group Info (bijv. DA/NW-357)." #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemen? Raadpleeg de %swiki%s." @@ -17467,7 +17726,7 @@ msgid "Link Location" msgstr "Link locatie" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Profielnaam" @@ -17487,19 +17746,19 @@ msgstr "" "analyses. Geweldig voor wanneer je op meerdere locaties werkt, maar ze deel " "uitmaken van dezelfde DXCC of VUCC-cirkel." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Gelinkte locaties bewerken" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Bezoekerssite" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Stationslocaties" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17507,12 +17766,12 @@ msgstr "" "Stationslocaties definiëren bedieningslocaties, zoals je QTH, de QTH van een " "vriend, of een draagbaar station." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "Net als logboeken houdt een stationprofiel een set van QSO's bij elkaar." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17520,7 +17779,7 @@ msgstr "" "Er mag maar één station tegelijk actief zijn. In de onderstaande tabel wordt " "dit aangegeven met het -Actief Station- badge." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17528,23 +17787,23 @@ msgstr "" "De kolom 'Gekoppeld' toont of de locatie van het station is gekoppeld aan " "het hierboven geselecteerde Actief Logboek." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Maak een stationslocatie" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Toon alleen locaties uit het actieve logboek" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Toon alle locaties" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Toon een locatielijst" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17552,7 +17811,7 @@ msgstr "" "Let op: Je moet een actieve stationslocatie instellen. Ga naar Roepnaam-" ">Stationslocatie om er een te selecteren." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17560,23 +17819,23 @@ msgstr "" "Vanwege recente wijzigingen binnen Wavelog moet je QSOs opnieuw toewijzen " "aan je stationprofielen." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Onderhoud" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Wijs ze alsjeblieft opnieuw toe aan " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Gekoppeld" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Favoriet" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "als favoriet markeren/demarkeren" @@ -18334,43 +18593,47 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Velden tonen op QSO-tabblad" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Toon kaart in QSO-venster" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "De ingeschakelde items worden op het QSO-tabblad weergegeven in plaats van " "op het Algemeen-tabblad." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Instellingen voor online QSL-aanvraag (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Globale tekst" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Deze tekst is een optionele tekst die bovenaan de OQRS-pagina kan worden " "weergegeven." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Gegroepeerd zoeken" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Uit" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Aan" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18378,11 +18641,11 @@ msgstr "" "Wanneer dit aanstaat, worden alle stationslocaties met actieve OQRS tegelijk " "doorzocht." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Toon de naam van de stationslocatie in gegroepeerde zoekresultaten" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18390,11 +18653,11 @@ msgstr "" "Als de gegroepeerde zoekopdracht AAN staat, kun je beslissen of de naam van " "de stationslocatie in de resultaatstabel wordt weergegeven." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Automatische OQRS verificatie" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18403,69 +18666,69 @@ msgstr "" "systeem proberen binnenkomende verzoeken automatisch met bestaande logs te " "matchen." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Automatische OQRS verificatie voor directe verzoeken" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Als dit aanstaat, zal automatische OQRS verificatie voor directe verzoeken " "plaatsvinden." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Standaardwaarden" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Instellingen voor standaardband en bevestiging" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Standaardband" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Standaard QSL-methoden" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Diensten van derden" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) gebruikersnaam" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) wachtwoord" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Test inloggen" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc gebruikersnaam" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc wachtwoord" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log e-mail" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Club Log-wachtwoord" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18475,15 +18738,15 @@ msgstr "" "genereren om Clublog in Wavelog te gebruiken. Bezoek %sje clublog-" "instellingenpagina%s om dit te doen." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "On-Air widget" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18491,16 +18754,16 @@ msgstr "" "Opmerking: Om deze widget te gebruiken, moet je ten minste één CAT-radio " "geconfigureerd en werkend hebben." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Wanneer ingeschakeld, zal de widget beschikbaar zijn op %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Toon \"Laatst gezien\" tijd" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18508,15 +18771,15 @@ msgstr "" "Met deze instelling bepaal je of de 'Laatst gezien' tijd in de widget wordt " "weergegeven of niet." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Toon alleen de meest recent bijgewerkte radio" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Nee, toon alle radio's" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18528,15 +18791,15 @@ msgstr "" "meest recent bijgewerkte. Als je slechts één radio hebt, heeft deze " "instelling geen effect." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSOs widget" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Toon exacte QSO-tijd" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18544,40 +18807,40 @@ msgstr "" "Met deze instelling wordt bepaald of de exacte QSO-tijd in de QSO-widget " "moet worden weergegeven of niet." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Diversen" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "AMSAT-statusupload" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Uploadstatus van SAT QSOs naar" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodon-server" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL van Mastodonserver" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Hoofd-URL van je Mastodon-server, bijv. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Winkeyer-functies ingeschakeld" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18586,25 +18849,25 @@ msgstr "" "Winkeyer-ondersteuning in Wavelog is zeer experimenteel. Lees eerst de wiki " "op %s voordat je het inschakelt." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Privé Feed Sleutel" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Bekijk je profiel op %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Toon alleen werkbare passages" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18613,7 +18876,7 @@ msgstr "" "het locatorvak dat in je hams.at-account is ingesteld. Vereist dat de " "private feed-sleutel is ingesteld." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Account opslaan" @@ -19042,7 +19305,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "laatst verzonden" @@ -19070,119 +19333,128 @@ msgstr "Totale afstand" msgid "Other Path" msgstr "Ander pad" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"Er werd een enkele locatorvak ingevoerd in het VUCC-locatorvakken-veld dat " +"twee of vier locatorvakken zou moeten bevatten in plaats van een enkel " +"locatorvak." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Antenne-azimut" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Antenne elevatie" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL-kaart is via het bureau verzonden" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL-kaart is rechtstreeks verzonden" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSL-kaart is elektronisch verzonden" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL-kaart is via manager verzonden" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL-kaart is verzonden" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL-kaart is via het bureau ontvangen" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL-kaart is rechtstreeks ontvangen" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSL-kaart is elektronisch ontvangen" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL-kaart is ontvangen via manager" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL-kaart is ontvangen" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Dit station gebruikt LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Dit QSO werd bevestigd op" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Dit QSO is bevestigd op LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Deze QSO is bevestigd op eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Dit QSO is bevestigd op QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Dit QSO is bevestigd op Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Dit QSO is bevestigd op DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Meer QSOs" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Delen" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Details" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Geüploade QSL-kaart voorkant afbeelding" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Upload QSL-kaart afbeelding" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Geüploade QSL-kaart achterkant afbeelding" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Markeer QSL ontvangen (Electronic)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL afbeelding" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO niet gevonden" @@ -19375,6 +19647,19 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Cache gebruikt momenteel de reserve-adapter omdat de primaire niet " +#~ "beschikbaar is." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Fout bij het verkrijgen van een sessiesleutel voor HamQTH-query" + +#~ msgid "radio functions" +#~ msgstr "radiofuncties" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Onjuist gelogde CQ-zones" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.mo b/application/locale/pl_PL/LC_MESSAGES/messages.mo index 96f19d57a..6e4bcd76c 100644 Binary files a/application/locale/pl_PL/LC_MESSAGES/messages.mo and b/application/locale/pl_PL/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index f12992e5c..235455c12 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-01-28 11:57+0000\n" -"Last-Translator: Dariusz Koryto \n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-02-14 18:19+0000\n" +"Last-Translator: Szymon \n" "Language-Team: Polish \n" "Language: pl_PL\n" @@ -80,8 +80,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -92,11 +92,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -127,11 +127,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -152,8 +152,8 @@ msgid "Activated Gridsquare Map" msgstr "Mapa aktywowanych lokatorów" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -315,51 +315,51 @@ msgstr "Klucz API %s został usunięty" msgid "Awards" msgstr "Nagrody" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Nagrody - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -368,13 +368,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -386,29 +386,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Nagrody - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Nagrody - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Podgląd dziennika - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -421,43 +421,58 @@ msgstr "Podgląd dziennika - VUCC" msgid "Log View" msgstr "Przegląd dziennika" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " i pasmo " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Wszystkie pasma (bez satelitów)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " satelity " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " i typ orbity " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " i propagacja " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " i emisja " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " i " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -478,14 +493,14 @@ msgstr " i " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -500,16 +515,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -523,111 +538,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Hrabstwa USA" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Przegląd dziennika - hrabstwa" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Nagrody - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Zaliczone lokatory" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Lokatory potwierdzone na LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Lokatory potwierdzone papierową kartą QSL" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Wszystkich zaliczonych lokatorów" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Nagrody - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "Strefy ITU" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -658,8 +673,7 @@ msgstr "Utwórz emisję" msgid "Edit Band" msgstr "Edytuj pasmo" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -692,15 +706,24 @@ msgstr "Zaimportowano dane CBR" msgid "Callsign statistics" msgstr "Statystyki znaku wywoławczego" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " i pasmo " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " i satelita " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Tester połączeń" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Tester znaku wywoławczego" @@ -784,28 +807,31 @@ msgid "No user has configured Clublog." msgstr "Żaden użytkownik nie skonfigurował ClubLog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "ClubLog" @@ -837,7 +863,7 @@ msgid "Update Contest" msgstr "Aktualizuj zawody" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -855,12 +881,12 @@ msgstr "Edytuj zadanie cron" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "nigdy" @@ -935,14 +961,14 @@ msgstr "Importowanie klucza DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -972,7 +998,7 @@ msgstr "Klucz(e) usunięto." #: application/controllers/Debug.php:114 msgid "(empty)" -msgstr "" +msgstr "(pusty)" #: application/controllers/Debug.php:132 msgid "Debug" @@ -1190,7 +1216,7 @@ msgstr "Nie znaleziono QSO do przesłania." msgid "KML Export" msgstr "Eksport KML" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "Etykiety kart QSL" @@ -1198,59 +1224,59 @@ msgstr "Etykiety kart QSL" msgid "Create Label Type" msgstr "Utwórz typ etykiety" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Nazwa etykiety" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Rodzaj papieru" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Pomiar" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Margines górny" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Margines lewy" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "Pozioma karta QSL" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "Pionowa karta QSL" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Odstęp poziomy" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Odstęp pionowy" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Szerokość etykiety" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Wysokość etykiety" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Rozmiar czcionki" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Liczba QSO na etykiecie" @@ -1259,22 +1285,22 @@ msgid "Create Paper Type" msgstr "Utwórz typ papieru" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Nazwa papieru" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Szerokość papieru" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Wysokość papieru" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1282,18 +1308,18 @@ msgstr "" "Nie można zapisać typu papieru. Należy pamiętać, że nie może on mieć takiej " "samej nazwy jak już istniejące typy." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Przed drukowaniem należy przypisać typ papieru do etykiety" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "Należy stworzyć etykietę i ustawić ją do druku." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1301,31 +1327,31 @@ msgstr "" "Coś poszło nie tak! Nie można wygenerować etykiety. Sprawdź rozmiar etykiety " "i rozmiar czcionki." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "Nie znaleziono QSO do wydruku!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Edytuj etykietę" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Etykieta została zapisana." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Etykieta została usunięta." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Edytuj papier" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Papier został zapisany." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Papier został usunięty." @@ -1349,55 +1375,55 @@ msgstr "Dzienniki stacji" msgid "Logbook" msgstr "Dziennik łączności" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1405,95 +1431,97 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "" "Wszystkie wyszukiwania w książce telefonicznej zakończyły się niepowodzeniem " "lub nie przyniosły żadnych wyników." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1501,7 +1529,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1518,13 +1546,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1563,15 +1591,15 @@ msgstr "" msgid "Mode" msgstr "Emisja" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1592,15 +1620,15 @@ msgstr "Emisja" msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1622,7 +1650,7 @@ msgstr "RST (S)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1631,29 +1659,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Kraj" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1666,7 +1694,7 @@ msgstr "Kraj" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1674,7 +1702,7 @@ msgstr "Kraj" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1683,12 +1711,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1697,7 +1725,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1705,7 +1733,7 @@ msgstr "IOTA" msgid "State" msgstr "Stan" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1714,19 +1742,19 @@ msgstr "Stan" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1742,20 +1770,20 @@ msgstr "Stan" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Lokator" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1765,9 +1793,9 @@ msgstr "Lokator" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1785,18 +1813,18 @@ msgstr "Lokator" msgid "Distance" msgstr "Odległość" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1804,25 +1832,26 @@ msgstr "Odległość" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1833,13 +1862,13 @@ msgstr "Odległość" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1878,13 +1907,14 @@ msgstr "Odległość" msgid "Band" msgstr "Pasmo" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1905,13 +1935,13 @@ msgstr "Pasmo" msgid "Frequency" msgstr "Częstotliwość" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1924,21 +1954,21 @@ msgstr "Częstotliwość" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operator" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1947,14 +1977,14 @@ msgstr "Operator" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "Usunięte DXCC" @@ -1962,12 +1992,12 @@ msgstr "Usunięte DXCC" msgid "Advanced logbook" msgstr "Zaawansowany dziennik łączności" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC zaktualizowany dla %d QSO." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Mapa dla DXCC %s i kwadrat siatki %s." @@ -1982,7 +2012,7 @@ msgstr "Szybkie wyszukiwanie" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1994,11 +2024,11 @@ msgstr "Zaimportowano certyfikat." msgid "Certificate Updated." msgstr "Zaktualizowano certyfikat." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Usunięto certyfikat." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2010,7 +2040,7 @@ msgstr "" "%s Upewnij się, że eksportujesz certyfikat LoTW z aplikacji tqsl bez hasła!" "%s Aby uzyskać więcej informacji, odwiedź stronę %sLoTW FAQ%s w Wiki Wavelog." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2021,51 +2051,51 @@ msgstr "" "zawiera „tylko klucz\", zazwyczaj oznacza to, że jest to żądanie " "certyfikatu, które nie zostało jeszcze przetworzone przez LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Ogólny błąd podczas przetwarzania certyfikatu w pliku %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Błąd ogólny podczas wyodrębniania klucza prywatnego z certyfikatu w pliku %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "Informacje ADIF LoTW" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Połączenie z LoTW nieudane." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Dla użytkownika %s: %s logowanie do LoTW nie powiodło się." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Nieprawidłowa nazwa użytkownika/hasło" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW jest obecnie niedostępne. Spróbuj ponownie później." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "Logowanie do LoTW OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Nie podano danych uwierzytelniających LoTW." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "Import ADIF LoTW" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Nie zdefiniowano danych logowania ARRL LoTW!" @@ -2090,7 +2120,7 @@ msgstr "Edytuj emisję" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Notatki" @@ -2415,19 +2445,19 @@ msgstr "Prześlij karty QSL" msgid "Print Requested QSLs" msgstr "Wydruk żądanych QSL" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Dodaj QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Należy być zalogowanym, aby uzyskać dostęp do tej strony." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Przekazywanie znaków wywoławczych" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Nie podano znaku wywoławczego." @@ -2436,18 +2466,18 @@ msgstr "Nie podano znaku wywoławczego." msgid "Hardware Interfaces" msgstr "Interfejsy sprzętowe" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Radiostacja" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Znacznik czasu" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2455,61 +2485,65 @@ msgstr "Znacznik czasu" msgid "Options" msgstr "Opcje" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Ustawienia" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Domyślnie (kliknij, aby zwolnić)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Ustaw jako domyślne radio" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "NIEZNANE" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "ostatnia aktualizacja" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Ustaw jako domyślne radio" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Domyślnie (kliknij, aby zwolnić)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Edytuj" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2518,22 +2552,38 @@ msgstr "Edytuj" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Usuń" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Nie znaleziono radiostacji z interfejsem CAT." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Edytuj ustawienia CAT" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Eksport EDI" @@ -2601,7 +2651,7 @@ msgstr "Nie masz ustawionej lokalizacji stacji. Kliknij %s aby ją stworzyć!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2612,13 +2662,13 @@ msgstr "tutaj" msgid "Satellite Timers" msgstr "Timery satelitarne" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2673,7 +2723,8 @@ msgstr "Edytuj lokalizację stacji: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2681,7 +2732,7 @@ msgstr "Edytuj lokalizację stacji: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2694,7 +2745,7 @@ msgid "Duplicate Station Location:" msgstr "Duplikuj lokalizację stacji:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Sprawdź wartość dla lokalizatora (%s)" @@ -2757,7 +2808,8 @@ msgstr "Błąd. Link jest już w użyciu!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2765,19 +2817,19 @@ msgid "Disabled" msgstr "Wyłączony" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Ustaw jako aktywny dziennik" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Aktywny dziennik łączności" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2787,7 +2839,7 @@ msgstr "" "lokalizacje połączone z tym dziennikiem z innym dziennikiem." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Wyświetl publiczną stronę dla dziennika: " @@ -2796,19 +2848,19 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Czy na pewno usunąć publiczny identyfikator?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "Czy na pewno ustawić profil stacji %s jako aktywny?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Aktywuj" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Aktywna stacja" @@ -2816,31 +2868,31 @@ msgstr "Aktywna stacja" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Czy na pewno usunąć wszystkie QSO w tym profilu stacji?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Wyczyść dziennik" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Kopiuj" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2853,7 +2905,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Należy wybrać jeden" @@ -2933,103 +2985,103 @@ msgstr "Przygotowanie wyjątków DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Przygotowanie prefiksów DXCC: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "GOTOWE" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Aktualizowanie..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Podmioty DXCC:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Wyjątki DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Prefiksy DXCC:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP Ładowanie zakończone sukcesem. Rezultaty: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP Ładowanie zakończone błędem. Rezulat: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Użytkownicy LoTW aktualizacja zakończona sukcesem. Rezultaty: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Użytkownicy LoTW aktualizacja zakończona błedem. Rezulataty: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK aktualizacja zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA aktualizacja zakończona sukcesemm. Rezultat: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF aktualizacja zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Aktualizacja HAMqsl zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Aktualizacja HAMqsl zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA aktualizacja zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Aktualizacja TLE została zakończona sukcesem. Rezultat: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE aktualizacja zakończona niepowodzeniem. Rezultat: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Aktualizacja LoTW SAT" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Aktualizacja Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Przesyłanie pliku VUCC Grid zostało zakończone. Wynik: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Przesyłanie pliku VUCC Grid nie powiodło się. Wynik: " @@ -3063,61 +3115,61 @@ msgstr "Nieprawidłowy parametr!" msgid "Add User" msgstr "Dodaj użytkownika" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Nazwa użytkownika %s jest już używana!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-mail %s jest już używany!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Błędne hasło!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Dodano użytkownika %s!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Użytkownicy" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Edytuj użytkownika" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Użytkownik %s został zaaktualizowany" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profil" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Usuń użytkownika" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Usunięto użytkownika" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Nie można było usunąć użytkownika!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Błąd bazy danych:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3125,29 +3177,29 @@ msgstr "" "Gratulacje! Wavelog został pomyślnie zainstalowany. Można się teraz " "zalogować po raz pierwszy." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "To nie jest dozwolone!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Logowanie nie powiodło się. Należy spróbować ponownie." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Zaloguj się" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Nie można zalogować się bezpośrednio na konto stacji klubowej. Zamiast tego, " "należy użyć swojego własnego konta." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3155,7 +3207,7 @@ msgstr "" "Konto jest zablokowane z powodu zbyt wielu nieudanych prób logowania. Należy " "zresetować hasło." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3166,52 +3218,52 @@ msgstr "" "skontaktować się z administratorem. Obecnie tylko administratorzy mogą się " "zalogować." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Niepoprawna nazwa użytkownika lub hasło!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Użytkownik %s wylogowany." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Nazwa Stacji" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Znak Stacji" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "Podmiot DXCC Stacji" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "CQ ZONE Stacji" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Strefa ITU Stacji" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Lokator Stacji" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3220,36 +3272,36 @@ msgstr "" "Powodzenie tworzenia stacji! Witamy w Wavelog'u! Aby zakończyć konfigurację " "stacji, należy nacisnąć %stutaj%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" "Konfiguracja stacji nie powiodła się! Należy skonfigurować stację ręcznie." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "Reset hasła został wyłączony w wersji demo!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Resetuj hasło" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "Ustawienia e-mail są nieprawidłowe." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Proces resetowania hasła zakończony." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Resetuj hasło" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3257,7 +3309,7 @@ msgstr "" "Nie można utworzyć konta z tą nazwą użytkownika. Należy spróbować innej niż " "\"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3265,7 +3317,7 @@ msgstr "" "Nie można utworzyć konta na ten email. Należy spróbować innego adresu niż " "\"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3274,7 +3326,7 @@ msgstr "" "Obecnie nie można podszywać się pod innego użytkownika. Należy ustawić %s na " "%s w config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3283,15 +3335,15 @@ msgstr "" "Obecnie nie można podszywać się pod innego użytkownika. Najpierw należy " "zmienić encryption_key w pliku config.php!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Niepoprawny hasz" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "Hasz podszywania się jest zbyt stary. Należy spróbować ponownie." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3299,15 +3351,15 @@ msgstr "" "Nie można podszywać się pod innego użytkownika, gdy nie jest się zalogowanym " "jako użytkownik źródłowy" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Wystąpił problem z sesją. Należy spróbować raz jeszcze." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "Użytkownik pod którego próbujesz się podszyć nie istnieje" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3315,13 +3367,13 @@ msgstr "" "Nie udało się określić prawidłowego poziomu uprawnień dla stacji klubowej. " "Spróbuj ponownie po ponownym zalogowaniu." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Ups... coś poszło nie tak. Spróbuj zalogować się jeszcze raz." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3329,7 +3381,7 @@ msgstr "" "Zdolność do szybkiego powrotu została wyłączona po wygaśnięciu hasza " "zabezpieczenia. Należy zalogować się raz jeszcze." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3342,7 +3394,7 @@ msgid "Satellite Gridsquare Map" msgstr "Satelitarna mapa lokatorów" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Wyszukiwanie publiczne" @@ -3395,14 +3447,19 @@ msgstr "Znaleziono wielu użytkowników o podanym identyfikatorze" msgid "Gridsquare Zone finder" msgstr "Wyszukiwarka Strefy Lokatora" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "" + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "Błąd QRZCQ" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Błąd podczas uzyskiwania klucza sesji dla zapytania HamQTH" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3555,27 +3612,27 @@ msgstr "HRDlog: Nie znaleziono profili stacji z danymi logowania HRDlog." msgid "Station not accessible" msgstr "Stacja niedostępna" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "Numer identyfikacyjny stacji nie jest dozwolony" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Nie przyznano znaku" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC musi być numeryczne" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Nieprawidłowy znak wywoławczy stacji %s podczas importowania QSO z %s dla " "%s: POMINIĘTO" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3583,11 +3640,11 @@ msgstr "" "Próbowano zaimportować QSO bez prawidłowej daty. To QSO nie zostało " "zaimportowane, ponieważ jest nieprawidłowe" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO w dniu" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3595,7 +3652,7 @@ msgstr "" "Spróbowałeś zaimportować QSO bez podanego znaku wywoławczego. To QSO nie " "zostało zaimportowane, jest nieprawidłowe" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3604,64 +3661,64 @@ msgstr "" "QSO z %s: próbowano zaimportować QSO bez podanego pasma. QSO nie zostało " "zaimportowane, ponieważ jest ono nieprawidłowe" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate jest nieprawidłowa (RRRRMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate jest nieprawidłowa (RRRRMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date jest nieprawidłowy (RRRRMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplikat dla" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSO nie mogło zostać dopasowane" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "potwierdzone przez LoTW/ClubLog/eQSL/zawody" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "potwierdzone przez award managera" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "potwierdzone przez weryfikację danych DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "oczekiwanie na potwierdzenie" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "niepotwierdzone" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "nieznany" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "Referencja POTA już znajduje się w dzienniku" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO zaktualizowane" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3675,7 +3732,7 @@ msgstr "QSO zaktualizowane" msgid "Bearing" msgstr "Kierunek" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "Tabela uccGrids jest pusta. Najpierw zaimportuj dane siatek VUCC." @@ -3813,42 +3870,40 @@ msgstr "Różnica" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3877,33 +3932,33 @@ msgstr "Różnica" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3924,7 +3979,7 @@ msgstr "Różnica" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Wszystkie" @@ -3968,12 +4023,12 @@ msgstr "Okres" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Propagacja" @@ -3989,7 +4044,7 @@ msgstr "Wszystkie oprócz SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Brak/Pusty" @@ -3999,11 +4054,11 @@ msgstr "Brak/Pusty" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Aircraft Scatter" @@ -4013,11 +4068,11 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4027,11 +4082,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4041,11 +4096,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -4055,11 +4110,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4069,11 +4124,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Earth-Moon-Earth" @@ -4083,11 +4138,11 @@ msgstr "Earth-Moon-Earth" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadic E" @@ -4097,11 +4152,11 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Field Aligned Irregularities" @@ -4111,11 +4166,11 @@ msgstr "Field Aligned Irregularities" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "Odbicie F2" @@ -4125,11 +4180,11 @@ msgstr "Odbicie F2" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Wspomagana internetowo" @@ -4139,11 +4194,11 @@ msgstr "Wspomagana internetowo" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4153,11 +4208,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4167,11 +4222,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor scatter" @@ -4181,11 +4236,11 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Naziemny lub atmosferyczny przemiennik lub transponder" @@ -4195,11 +4250,11 @@ msgstr "Naziemny lub atmosferyczny przemiennik lub transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Rain scatter" @@ -4209,11 +4264,11 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satelita" @@ -4223,11 +4278,11 @@ msgstr "Satelita" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-equatorial" @@ -4237,11 +4292,11 @@ msgstr "Trans-equatorial" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Dukty troposferyczne" @@ -4250,18 +4305,18 @@ msgstr "Dukty troposferyczne" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4273,21 +4328,21 @@ msgstr "Dukty troposferyczne" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Pokaż" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4298,7 +4353,7 @@ msgstr "Pokaż" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4307,19 +4362,25 @@ msgstr "Pokaż" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satelita" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4339,22 +4400,22 @@ msgstr "Potwierdzenie" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4400,11 +4461,11 @@ msgstr "Minimalna liczba" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4413,11 +4474,10 @@ msgstr "Minimalna liczba" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4437,7 +4497,8 @@ msgstr "Nie znaleziono!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4453,12 +4514,13 @@ msgstr "Nie znaleziono!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4482,7 +4544,7 @@ msgstr "Nie znaleziono!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Znak" @@ -4493,12 +4555,12 @@ msgstr "Liczba" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Pokaż QSO" @@ -4565,7 +4627,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4589,11 +4651,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4607,12 +4669,12 @@ msgstr "Data" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4627,7 +4689,7 @@ msgstr "Data" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4640,7 +4702,7 @@ msgstr "Godzina" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4695,20 +4757,20 @@ msgstr "Ważne" msgid "Log Files must have the file type *.adi" msgstr "Pliki dziennika muszą mieć rozszerzenie .adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Maksymalny rozmiar przesyłanego pliku to " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4771,8 +4833,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "NIEBEZPIECZEŃSTWO" @@ -5159,8 +5221,8 @@ msgstr "Referencja POTA w ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Status" @@ -5179,7 +5241,7 @@ msgstr "Prosta nazwa opisująca do czego używany jest ten klucz API." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5244,7 +5306,7 @@ msgstr "URL API tej instancji Wavelog to" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5296,7 +5358,7 @@ msgstr "Uprawnienia" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5341,7 +5403,7 @@ msgstr "Utwórz klucz tylko do odczytu" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5350,8 +5412,8 @@ msgstr "Utwórz klucz tylko do odczytu" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5368,14 +5430,14 @@ msgstr "Utwórz klucz tylko do odczytu" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5431,9 +5493,9 @@ msgid "Filtering on" msgstr "Włączone filtrowanie" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Hrabstwo" @@ -5489,19 +5551,14 @@ msgid "Counties Confirmed" msgstr "Potwierdzone hrabstwa" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5523,22 +5580,23 @@ msgid "Total" msgstr "Razem" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5594,10 +5652,12 @@ msgid "Awards - CQ WAZ" msgstr "Nagrody - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtry" @@ -5607,92 +5667,114 @@ msgid "Show CQ Zone Map" msgstr "Wyświetl mapę stref CQ" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Preset danych" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Dzisiaj" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Wczoraj" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Ostatnie 7 dni" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Ostatnie 30 dni" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Ten miesiąc" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Ostatni miesiąc" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Ten rok" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "Poprzedni rok" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Wyczyść" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5700,7 +5782,9 @@ msgid "Date from" msgstr "Data od" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5708,11 +5792,10 @@ msgid "Date to" msgstr "Data do" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5722,9 +5805,8 @@ msgid "Confirmed" msgstr "Potwierdzone" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5734,67 +5816,64 @@ msgstr "Zaliczone" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Pokaż zaliczone" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Pokaż potwierdzone" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Pokaż niezaliczone" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5802,95 +5881,161 @@ msgstr "Pokaż QSO z typem QSL" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Karta QSL" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabela" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mapa" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legenda:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL – papierowa karta" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-\"potwierdzenie\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) Pracowano" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Podsumowanie" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Suma zaliczonych" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5955,15 +6100,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Zaliczone / Potwierdzone" @@ -5972,11 +6117,9 @@ msgstr "Zaliczone / Potwierdzone" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Wszystkie pasma" @@ -5984,23 +6127,20 @@ msgstr "Wszystkie pasma" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Resetuj" @@ -6057,161 +6197,127 @@ msgstr "" "Pola uwzględniane w tej nagrodzie: DXCC (musi być ważnym wpisem z listy DXCC-" "ADIF-Spec)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Wyświetl mapę DXCC" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Licz usunięte" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antarktyda" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Afryka" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Azja" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Ameryka Północna" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Ameryka Południowa" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oceania" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Wszystkie pasma (bez satelitów)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legenda:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL – papierowa karta" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-\"potwierdzenie\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) Pracowano" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "Nazwa DXCC" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefiks" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" "Nie znaleziono wyników dla podanych kryteriów. Należy spróbować ponownie." @@ -6482,23 +6588,23 @@ msgstr "Wyświetl mapę IOTA" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Nazwa" @@ -6507,14 +6613,14 @@ msgid "Deleted" msgstr "Usunięto" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6524,7 +6630,7 @@ msgstr "Usunięto" msgid "ITU Zone" msgstr "Strefa ITU" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6536,21 +6642,21 @@ msgstr "" "70 z 75 stref nadawczych zdefiniowanych przez Międzynarodowy Związek " "Telekomunikacyjny (ITU)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Więcej informacji można znaleźć na stronie internetowej %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Pola uwzględnione w tej nagrodzie: ITU-Zone (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Nagrody - strefy ITU" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Wyświetl mapę stref ITU" @@ -6607,7 +6713,7 @@ msgstr "Wyniki" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Miasto" @@ -6616,8 +6722,10 @@ msgstr "Miasto" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6752,7 +6860,7 @@ msgstr "Województwo" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Kod" @@ -6768,7 +6876,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6806,8 +6914,8 @@ msgid "Band Categories" msgstr "Kategorie pasm" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Napraw Stan" @@ -6879,8 +6987,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "Referencja(e) POTA" @@ -6891,6 +6999,7 @@ msgstr "Prowincja" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Najedź myszką nad prowincje" @@ -6958,7 +7067,7 @@ msgid "Reference" msgstr "Referencja" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -7026,7 +7135,7 @@ msgstr "" "wybranym paśmie." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "Oficjalne informacje oraz zasady można znaleźć w tym dokumencie: %s." @@ -7112,25 +7221,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Nagrody – Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Kontynent" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "Nagroda WAE" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7141,7 +7255,7 @@ msgstr "" "europejskich oraz na wyspach wymienionych na liście krajów WAE, na różnych " "pasmach." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7151,11 +7265,11 @@ msgstr "" "RTTY, FT8, Digital oraz Mixed. Przyznawany jest w pięciu klasach: WAE III, " "WAE II, WAE I, WAE TOP oraz WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Pola uwzględniane dla tej nagrody: Region, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "Nazwa WAE" @@ -7206,7 +7320,7 @@ msgid "Show WAJA Map" msgstr "Wyświetl mapę WAJA" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefektura" @@ -7271,15 +7385,20 @@ msgid "Show WAP Map" msgstr "Pokaż mapę WAP" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Prowincja" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC – Zaliczono wszystkie prowincje Chin" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7292,7 +7411,7 @@ msgstr "" "specjalnych regionach administracyjnych Chin, wspierając głębsze zrozumienie " "Chin." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7300,7 +7419,7 @@ msgstr "" "Nagroda może zostać zdobyta poprzez długoterminowe gromadzenie łączności lub " "osiągnięta jednorazowo podczas corocznego konkursu WAPC." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7310,6 +7429,10 @@ msgstr "" "Hongkong/321, Makau/152, Tajwan/386, Wyspa Pratas/505 lub Rafa " "Scarborough/506) oraz ważny stan (ADIF: DXCC i STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7426,8 +7549,8 @@ msgstr "Pola użyte dla tej nagrody: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "Podmiot WWFF" @@ -7481,283 +7604,283 @@ msgstr "" "Kopia zapasowa notatek została pomyślnie zakończona. Wynik można znaleźć pod " "adresem" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Kliknij, aby przygotować logowanie." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "aby dostroić częstotliwość" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Wyskakujące okienka zablokowane" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Wyskakujące okienko zostało zablokowane! Należy zezwolić na wyskakujące " "okienka z tej witryny." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Wymaga połączenia CAT" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Włącz połączenie CAT, aby zmieniać częstotliwość radiostacji" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Wyczyść filtry" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Filtr pasma zachowany (blokada pasma jest aktywna)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio ustawione na Brak – połączenie CAT wyłączone" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radiostacja dostrojona" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Dostrojona do" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Nieudane dostrajanie" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Nie udało się dostroić radia do częstotliwości" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "Przygotowano QSO" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "wysłano do formularza logowania" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "Połączenie CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Kliknij, aby włączyć połączenie CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT podążający za radiem - Kliknij aby wyłączyć" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Kliknij aby włączyć blokadę pasma (wymaga połączenia CAT)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Blokada paska aktywna — kliknij, aby wyłączyć" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Blokada Pasma" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Blokada pasma włączona - filtr pasma będzie śledzowy pasmo radia" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Filtr pasma zmieniony na" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "przez radiostację" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Filtr częstotliwości ustawiono na" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Częstotliwość poza znanymi pasmami – wyświetlanie wszystkich pasm" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Oczekiwanie na dane z radiostacji..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Moje ulubione" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Nieudane ładowanie ulubionych" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Tryby zastosowane. Filtr pasma zachowany (połączenie CAT jest aktywne)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Zastosowano twoje ulubione pasma i tryby" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Moje Tryby Częstotliwości" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Filtr Trybu Częstotliwości włączony" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Filtr Trybu Częstotliwości wyłączony - wyświetlanie wszystkich" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Wymagane tryby częstotliwości" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Skonfiguruj w Ustawieniach Użytkownika - Tryby" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Brak skonfigurowanych trybów częstotliwości - skonfiguruj w Ustawieniach " "Użytkownika - Tryby" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Brak włączonych trybów częstotliwości w ustawieniach - wyświetlanie " "wszystkich spotów" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Wyłączony - brak włączonych trybów częstotliwości dla tego trybu w " "Ustawieniach Użytkownika" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Przełącz filtr transmisji CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Przełącz filtr transmisji cyfrowych" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Przełącz filtr transmisji fonicznych" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Ulubione" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Zapisz Bieżące Filtry..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Wpisz nazwę dla tego ustawienia filtru:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Ustawienie filtru zapisane" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Ustawienie filtru załadowane" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Ustawienie filtru usunięte" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Czy na pewno usunąć to ustawienie filtru?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Brak zapisanych ustawień filtru" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" "Osiągnięto maksymalnie 20 ustawień filtru. Usuń kilka zanim dodasz nowe." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Wczytywanie danych z DX Cluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Ostatnio pobrano dla" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Maksymalny wiek" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Pobrano o" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Następna aktualizacja za" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minut" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "sekund" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "pobranych spotów" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "pokazuje" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "pokazuje wszystkie" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktywne filtry" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Pobieranie..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Niezaliczone" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Zaliczono, niepotwierdzone" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7765,268 +7888,271 @@ msgstr "Zaliczono, niepotwierdzone" msgid "LoTW User" msgstr "Użytkownik LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nowy znak wywoławczy" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nowy kontynent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nowy kraj" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Zaliczono wcześniej" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Zaliczono dnia %s emisją %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "zauważony" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Świeży spot (<5 minut temu)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Zawody" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Kliknij, aby zobaczyć" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "na QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Kliknij, aby zobaczyć %s na QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zobacz szczegóły dla" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Zaliczono dnia" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Nie zaliczono na tym paśmie" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "Użytkownik LoTW. Ostatnie przesłanie %d dni temu" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Kliknij, aby zobaczyć na POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Kliknij, aby zobaczyć na SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Kliknij, aby zobaczyć na cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Kliknij, aby zobaczyć na IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Zobacz szczegóły dla kontynentu" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Zobacz szczegóły dla kontynentu %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Zobacz szczegóły dla strefy CQ" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "See details for CQ Zone %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "w" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Zakończ tryb pełnoekranowy" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Przełącz tryb pełnoekranowy" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Filtrowanie pasma jest kontrolowane przez twoje radio, gdy połączenie CAT " "jest włączone" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Kliknij, aby przygotować logowanie" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(wymaga połączenia CAT)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spoter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Komentarz" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Wiek" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Przychodzące" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Wychodzące" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spoty" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "obserwatorzy" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Proszę czekać" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Należy poczekać %s sekund przed wysłaniem kolejnego znaku do formularza QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Ładowanie spotów..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Nie znaleziono spotów" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Brak danych" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Nie znaleziono spotów dla wybranych filtrów" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Błąd ładowania spotów. Należy spróbować ponownie." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Pokazuj wszystkie tryby" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Pokazuj wszystkie spoty" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Nanoś obserwatorów" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Rozszerzaj mapę" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Pokazuj Dzień/Noc" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Twoje QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Powrót do strony głównej" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Pomoc DX Cluster" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Tryb Kompaktowy - Ukryj/Pokaż Menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8034,317 +8160,282 @@ msgstr "TRX:" msgid "None" msgstr "Brak" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Na żywo - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Odpytywanie - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Wybierz wszystkie kontynenty" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Świat" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Przełącz kontynent: Afryka" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Przełącz kontynent: Antarktyka" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Przełącz kontynent: Azja" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Przełącz kontynent: Europa" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Przełącz kontynent: Ameryka Północna" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Przełącz kontynent: Ocenia" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Przełącz kontynent: Ameryka Południowa" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Filtry zaawansowane" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Przytrzymaj" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "i kliknij, aby wybrać wiele opcji" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Status DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Fonia" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Potrzebne flagi" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Zaliczony znak" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "Spot DX" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Dodatkowe flagi" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Świeże (<5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spoty z kontynentu" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Spoty na kontynencie" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Zastosuj filtry" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Ulubione Filtry" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Wyczyść wszystkie filtry za wyjątkiem kontynentu de" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Przełącz filtr pasma: 160m" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Przełącz filtr pasma: 80m" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Przełącz filtr pasma: 60m" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Przełącz filtr pasma: 40m" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Przełącz filtr pasma: 30m" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Przełącz filtr pasma: 20m" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Przełącz filtr pasma: 17m" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Przełącz filtr pasma: 15m" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Przełącz filtr pasma: 12m" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Przełącz filtr pasma: 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Przełącz filtr pasma: 6m" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Przełącz filtr pasm VHF" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Przełącz filtr pasm UHF" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Przełącz filtr pasm SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Ładowanie trybów częstotliwości..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Przełącz filtr użytkowników LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "Użytkownicy LoTW" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" "Przełącz filtr DX Spot (kontynent stacji spotowanej ≠ kontynent spotującego)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Przełącz filtr nowych kontynentów" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nowe kontynenty" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Przełącz filtr nowych podmiotów" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nowe Podmioty" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Przełącz filtr nowych znaków wywoławczych" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nowe znaki" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Przełącz filtr nowych spotów (< 5 minut)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Świeże" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Przełącz filtr zawodów" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Przełącz filtr Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Referencje" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Otwórz widok mapy DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "Mapa DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Szukaj spotów..." - -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" +#: application/views/bandmap/list.php:545 +msgid "Search Column" msgstr "" -"Uwaga: mapa pokazuje lokalizacje jednostek DXCC, a nie rzeczywiste " -"lokalizacje spotów" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Wiek w minutach" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Częs" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "" -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Podemisja" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Spotowany znak" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Flaga" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "Podmiot" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Podmiot" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Znak spotera" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Kontynent spotera" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Strefa CQ Spotera" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Ostatnie QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Specjalne" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Flagi specjalne" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8352,6 +8443,62 @@ msgstr "Flagi specjalne" msgid "Message" msgstr "Wiadomość" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Kontynent spotera" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Strefa CQ Spotera" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Szukaj spotów..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Uwaga: mapa pokazuje lokalizacje jednostek DXCC, a nie rzeczywiste " +"lokalizacje spotów" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Wiek w minutach" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Częs" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Spotowany znak" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Flaga" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "Podmiot" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Znak spotera" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Ostatnie QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Specjalne" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Flagi specjalne" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Należy wprowadzić prawidłową wartości częstotliwości" @@ -8630,7 +8777,7 @@ msgstr "" "IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8748,19 +8895,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8794,15 +8941,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Tak" @@ -8817,19 +8966,19 @@ msgstr "Tak" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8863,16 +9012,17 @@ msgstr "Tak" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Nie" @@ -8903,7 +9053,7 @@ msgid "First QSO" msgstr "Pierwsze QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Ostatnie QSO" @@ -9012,8 +9162,8 @@ msgid "Callsign DXCC identification" msgstr "Identyfikacja DXCC znaku wywoławczego" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Znak wywoławczy: " @@ -9304,8 +9454,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9618,7 +9768,7 @@ msgstr "Nazwa ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9688,7 +9838,7 @@ msgstr "Dodaj" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Nazwa zawodów" @@ -9766,8 +9916,8 @@ msgid "Locator" msgstr "Lokator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9882,11 +10032,11 @@ msgstr "Identyfikator" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Włączone" @@ -9981,7 +10131,8 @@ msgid "Cron List" msgstr "Lista Cron" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10180,9 +10331,9 @@ msgstr "Wymagane" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10204,10 +10355,10 @@ msgstr "Wymagane" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Wysłane" @@ -10217,9 +10368,9 @@ msgstr "Wysłane" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10240,10 +10391,10 @@ msgstr "Wysłane" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Odebrane" @@ -10251,17 +10402,17 @@ msgstr "Odebrane" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10284,11 +10435,11 @@ msgstr "Odebrane" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Zażądane" @@ -10314,6 +10465,38 @@ msgstr "Ostatnie aktualizacja o %s." msgid "Data provided by HAMqsl." msgstr "Dane dostarczone przez HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Liczba QSO dla tego dnia tygodnia" @@ -10393,7 +10576,7 @@ msgstr "Data rozpoczęcia" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Data zakończenia" @@ -10579,29 +10762,29 @@ msgstr "Wyślij plik" #: application/views/debug/index.php:2 msgid "Are you sure you want to clear the cache?" -msgstr "" +msgstr "Czy na pewno chcesz wyczyścić pamięć podręczną?" #: application/views/debug/index.php:3 msgid "Failed to clear cache!" -msgstr "" +msgstr "Nie udało się wyczyścić pamięci podręcznej!" #: application/views/debug/index.php:4 #, php-format msgid "Last version check: %s" -msgstr "" +msgstr "Ostatnia kontrola wersji: %s" #: application/views/debug/index.php:5 msgid "Wavelog is up to date!" -msgstr "" +msgstr "Wavelog jest aktualny!" #: application/views/debug/index.php:6 #, php-format msgid "There is a newer version available: %s" -msgstr "" +msgstr "Jest dostępna nowsza wersja: %s" #: application/views/debug/index.php:7 msgid "The Remote Repository doesn't know your branch." -msgstr "" +msgstr "Zdalne repozytorium nie zna twojej gałęzi." #: application/views/debug/index.php:32 msgid "Wavelog Information" @@ -10735,7 +10918,8 @@ msgstr "Sukces" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Niepowodzenie" @@ -10814,107 +10998,121 @@ msgstr "Moduły" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Zainstalowano" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Nie zainstalowano" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" -msgstr "" +msgstr "Informacje o pamięci podręcznej" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" -msgstr "" +msgstr "Obecna konfiguracja" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" -msgstr "" +msgstr "Główny adapter" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" -msgstr "" +msgstr "Zapasowy adapter" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" -msgstr "" +msgstr "Ścieżka dla adaptera %s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "Prefiks klucza" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" -msgstr "" +msgstr "Szczegóły pamięci podręcznej" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" -msgstr "" +msgstr "Całkowity rozmiar" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" +msgstr "Liczba kluczy" + +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "Pamięć podręczna działa prawidłowo. Wszystko w porządku!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." msgstr "" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" + +#: application/views/debug/index.php:526 msgid "Available Adapters" -msgstr "" - -#: application/views/debug/index.php:496 -msgid "Clear Cache" -msgstr "" +msgstr "Dostępne adaptery" #: application/views/debug/index.php:543 +msgid "Clear Cache" +msgstr "Wyczyść pamięć podręczną" + +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Informacje Git" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/d" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Ostatnie pobranie" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Sprawdź nową wersję" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10922,77 +11120,77 @@ msgstr "Sprawdź nową wersję" msgid "Update now" msgstr "Aktualizuj" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Daty pobrania plików" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Plik" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Ostatnia aktualizacja" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "Aktualizacja DXCC z ClubLog" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Aktualizuj" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Pobieranie pliku DOK" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "Pobieranie użytkowników LoTW" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "Pobieranie pliku POTA" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "Pobieranie pliku SCP" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "Pobieranie pliku SOTA" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "Pobieranie pliku WWFF" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "Aktualizacja TLE" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Aktualizacja Hams Of Note" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCC Grids" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Konserwacja QSO-DB" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -11001,141 +11199,141 @@ msgstr[0] "Baza danych zawiera pojedyncze QSO bez profilu stacji (lokalizacji)" msgstr[1] "Baza danych zawiera %d QSO bez profilu stacji (lokalizacji)" msgstr[2] "Baza danych zawiera %d QSO bez profilu stacji (lokalizacji)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Należy zaznaczyć QSO i przypisać je do istniejącej lokalizacji stacji:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Docelowa lokalizacja" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Przepisz" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Wszystkie QSO w bazie danych są przypisane do profilu stacji (lokalizacji)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Wszystko OK" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albański" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Armeński" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bośniacki" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Bułgarski" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Chiński (uproszczony)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Chorwacki" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Czeski" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Holenderski" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Angielski" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estoński" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Fiński" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Francuski" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Niemiecki" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Grecki" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Węgierski" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Włoski" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japoński" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Łotewski" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Litewski" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Czarnogórski" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polski" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portugalski" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Rosyjski" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Serbski" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Słowacki" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Słoweński" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Hiszpański" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Szwedzki" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turecki" @@ -11197,7 +11395,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Tylko QSO ze zdefiniowanym lokatorem zostaną wyeksportowane!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "Informacja QSL" @@ -11444,7 +11642,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "Wiadomość QSL" @@ -11579,31 +11777,32 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Wyświetl" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Pusta" @@ -11690,7 +11889,7 @@ msgstr "QSO zostały oznaczone jako wyeksportowane do dziennika HRDLog." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Edytuj QSO" @@ -12085,76 +12284,76 @@ msgstr "Informacje o wersji" msgid "Failed to load the modal. Please try again." msgstr "Nie udało się załadować okna modalnego. Należy spróbować ponownie." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Opis:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Opis kwerendy" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Twoja kwerenda została zapisana!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Edytuj kwerendy" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Zapisane kwerendy:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Uruchom kwerendę" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Zapisane kwerendy" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Należy przygotować kwerendę przed rozpoczęciem wyszukiwania!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Eksport do ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Otwórz w zaawansowanym dzienniku łączności" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Uwaga! Czy na pewno usunąć zapisaną kwerendę?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "Zapisana kwerenda została usunięta!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "Nie można usunąć zapisanej kwerendy. Należy spróbować ponownie!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "Opis kwerendy został zaktualizowany!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Coś poszło nie tak podczas zapisywania. Należy spróbować ponownie!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12164,15 +12363,15 @@ msgstr "" "nieważny. Należy sprawdzić, który DXCC dla tej konkretnej lokalizacji jest " "właściwy. Jeśli istnieje pewność, należy zignorować to ostrzeżenie." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Liczba: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Lokatory: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12180,57 +12379,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokatory" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "lokator" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Całkowita liczba" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "Karta QSL dla " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Uwaga! Czy na pewno usunąć tę kartę QSL?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Karta eQSL" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "Karta eQSL dla " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "Plik obrazu QSL" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Przód karty QSL:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Tył karty QSL:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Dodaj dodatkowe QSO do karty QSL" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Coś poszło nie tak. Spróbuj jeszcze raz!" @@ -12384,7 +12587,7 @@ msgid "Satellite Pass" msgstr "Satelity - przeloty" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Administracja" @@ -12409,7 +12612,7 @@ msgid "Log" msgstr "Logowanie" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12506,7 +12709,7 @@ msgid "Gridsquare Zone checker" msgstr "Sprawdzacz strefy Gridsquare" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Pomoc" @@ -12641,7 +12844,7 @@ msgid "Total height of one label" msgstr "Łączna wysokość jednej etykiety" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Rozmiar czcionki" @@ -12700,14 +12903,14 @@ msgstr "Orientacja papieru" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Poziomo" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Pionowo" @@ -12726,47 +12929,52 @@ msgstr "" "znaczącego, być może styl etykiety." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Oznacz QSL jako wydrukowane" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Drukuj" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Utwórz nowy typ etykiety" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Utwórz nowy typ papieru" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Typy papieru" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Szerokość" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Wysokość" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Wykorzystane w etykietach" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Orientacja" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Typy etykiet" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12774,56 +12982,66 @@ msgstr "Typy etykiet" msgid "QSOs" msgstr "QSO" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Wykorzystaj do wydruku" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Brak przypisanego papieru" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Oczekujące etykiety kart QSL" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "Oczekujące QSO" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Zobacz QSO" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Dołącz lokator?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Dołączyć referencję? (SIG, SOTA, POTA, IOTA, WWFF; jeśli dostępna w " "lokalizacji)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Dołączyć Via (jeśli wypełnione)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Dołączyć QSLMSG (jeśli wypełnione)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Dołączyć wiadomość TNX?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Rozpocząć drukowanie od?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12985,21 +13203,21 @@ msgstr "Strefa CW DXCC" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Stacja" @@ -13082,89 +13300,93 @@ msgstr "" "Ostrzeżenie. To narzędzie może być niebezpieczne dla twoich danych i powinno " "być używane tylko jeśli wiesz co robisz." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Wszystkie lokalizacje stacji" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "Sprawdzaj wszystkie QSO w dzienniku na błędne Strefy CQ" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Użyj Wavelog do określenia Strefy CQ dla wszystkich QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Sprawdzaj" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "Sprawdzaj wszystkie QSO w dzienniku na błędne Strefy ITU" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Użyj Wavelog do określenia Strefy ITU dla wszystkich QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Sprawdzaj Gridsquare" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Sprawdzaj gridsquare, które nie pasują do DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Napraw kontynent" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Zaktualizuj brakujące lub niepoprawne informacje o kontynencie" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Zaktualizuj brakujące informacje o województwie/stanie" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Aktualizuj odległości" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Oblicz i zaktualizuj informacje o odległości dla QSO" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "Sprawdzaj wszystkie QSO w dzienniku na błędne DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Użyj Wavelog do określenia DXCC dla wszystkich QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Wyszukaj QSO z brakującą siatką w bazie abonentów" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Użyj wyszukiwania bazy abonentów do ustawienia gridsquare" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "" "To jest ograniczone do 150 znaku wywoławczych dla każdego uruchomienia!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Sprawdzaj IOTA względem DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Użyj Wavelog do sprawdzenia IOTA względem DXCC" @@ -13209,10 +13431,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Region" @@ -13281,9 +13503,9 @@ msgid "QSL Sent Method" msgstr "Metoda wysłania QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL via" @@ -13307,84 +13529,84 @@ msgstr "Pasmo RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Niewłaściwe" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Zweryfikowano" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Bezpośrednio" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Biuro" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Elektroniczne" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13742,26 +13964,26 @@ msgstr "Gridsquare dla" msgid "Non DXCC matching gridsquare" msgstr "Gridsquare nie pasujący do DXCC" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Od" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "Do" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "DX" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Brak/Pusta" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13769,51 +13991,67 @@ msgstr "" "Odległość w kilometrach. Wyszukiwanie obejmie odległości większe lub równe " "tej wartości." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Czas trwania" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Sortuj kolumnę" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "Czas QSO" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO Zmodyfikowany" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Kierunek sortowania" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Malejąco" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Rosnąco" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Zastosuj filtry" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "Filtry QSL" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "Wysłano QSL" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13830,32 +14068,32 @@ msgstr "Wysłano QSL" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "Zakolejkowano" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13884,279 +14122,279 @@ msgstr "Zakolejkowano" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Niewłaściwe (ignorowane)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "Otrzymano QSL" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "Wysłano QSL. Metoda" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "Otrzymano QSL. Metoda" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "Wysłano LoTW" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "Otrzymano LoTW" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Wysłano ClubLog" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Otrzymano ClubLog" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "Wysłano eQSL" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "Otrzymano eQSL" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "Wysłano DCL" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "Otrzymano DCL" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "Obrazy QSL" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "Wysłano QRZ" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "Odebrano QRZ" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Szybkie filtry" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Szybkie wyszukanie z zaznaczonymi: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Wyszukaj datę" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Wyszukaj DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Wyszukaj stan" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Wyszukaj lokator" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Wyszukaj strefę CQ" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Wyszukaj strefę ITU" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Wyszukaj emisję" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Wyszukaj pasmo" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Wyszukaj IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Wyszukaj SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Wyszukaj POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Wyszukaj WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Wyszukaj operatora" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Uwaga! Czy na pewno usunąć zaznaczone QSO?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO zostaną skasowane" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Zaznaczone: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Zaktualizuj z Callbook" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "Zakolejkuj Biuro" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "Zakolejkuj Bezpośrednio" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "Zakolejkuj Elektroniczne" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Wysłano (Biuro)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Wysłano (Bezpośrednio)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Wysłano (Elektroniczne)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Nie wysłano" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL niewymagane" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Nie otrzymano" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Otrzymano (Biuro)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Otrzymano (Bezpośrednio)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Otrzymano (Elektroniczne)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Utwórz ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Wydrukuj etykietę" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "Pokaz slajdów QSL" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Wyniki" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplikaty" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Globus" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Narzędzia Bazy Danych" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Ostatnio zmodyfikowane" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "Wiad. QSL (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "Wiad. QSL (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Moje referencje" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Ant Az" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Azymut anteny" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Ant El" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Elewacja anteny" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Moc stacji" @@ -14237,15 +14475,15 @@ msgstr "Wyniki aktualizacji gridsquare:" msgid "The number of QSOs updated for gridsquare is" msgstr "Liczba QSO zaktualizowanych dla gridsquare to" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Dołącz Via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Dołącz QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Dołącz wiadomość TNX" @@ -14311,35 +14549,35 @@ msgstr "Kraje wspierane obecnie" msgid "Basic QSO Information" msgstr "Podstawowe informacje QSO" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Szczegóły stacji" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Usługi potwierdzenia" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Informacje geograficzne" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Programy dyplomów" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Dodatkowe informacje" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Szczegóły techniczne" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Tylko do debugowania" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14347,7 +14585,7 @@ msgstr "" "To przeznaczone jest wyłącznie do celów debugowania i nie jest przeznaczone " "do domyślnego wyświetlania" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Warstwy mapy" @@ -14475,7 +14713,7 @@ msgid "Date Expires" msgstr "Data wygaśnięcia" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Last upload" @@ -15141,7 +15379,7 @@ msgstr "Czy są jakieś dodatkowe informacje, które powinniśmy znać?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "Email" @@ -15158,11 +15396,11 @@ msgstr "Wyślij zgłoszenie „brak w logu”" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Via" @@ -15174,7 +15412,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Dodaj do kolejki drukowania" @@ -15587,7 +15825,7 @@ msgstr "Oznacz żądane QSL jako wysłane" msgid "No QSLs to print were found!" msgstr "Nie znaleziono QSL do wydruku!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15732,7 +15970,7 @@ msgstr "Wpisz wartość mocy w watach. W polu podaj same cyfry." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Moc nadajnika (W)" @@ -15794,9 +16032,9 @@ msgid "Station County" msgstr "Powiat/Hrabstwo stacji" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "Informacja SIG" @@ -15844,7 +16082,7 @@ msgstr "Uwaga: Nieedytowalne. Wyświetlane tylko tutaj." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Zmodyfikowano" @@ -15929,10 +16167,12 @@ msgid "" "You have already filled in a callsign. First finish this QSO before filling " "the last spot from DXcluster." msgstr "" +"Podano już znak wywoływaczy. Zakończ to QSO, zanim wypełnisz nowy znak z " +"DXCluster." #: application/views/qso/index.php:47 msgid "No spots found in this frequency." -msgstr "" +msgstr "Nie znaleziono spotów na tej częstotliwości." #: application/views/qso/index.php:93 msgid "LIVE" @@ -15967,16 +16207,16 @@ msgstr "Wyszukaj ostatnie spoty w DXCluster" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "Podmiot IOTA" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "Podmiot SOTA" @@ -16016,11 +16256,11 @@ msgstr "Na przykład: Q03" msgid "E-mail address of QSO-partner" msgstr "Adres email partnera QSO" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Nazwa satelity" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Tryb Satelitarny" @@ -16126,7 +16366,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Poniżej znajduje się lista aktywnych radiostacji podłączonych do Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16134,16 +16374,26 @@ msgstr "" "Jeśli nie podłączono jeszcze żadnych radiostacji, należy przejść do strony " "API, aby wygenerować klucze API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Można dowiedzieć się, jak używać %s w wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "funkcje radiostacji" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Proszę czekać..." @@ -16488,13 +16738,6 @@ msgstr "Czas AOS" msgid "LOS Time" msgstr "Czas LOS" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Czas trwania" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Ścieżka" @@ -16609,6 +16852,11 @@ msgstr "Zapisz zapytanie" msgid "Stored queries" msgstr "Zapisane zapytania" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Można dowiedzieć się, jak używać %s w wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "funkcje filtrów wyszukiwania" @@ -16688,35 +16936,35 @@ msgstr "Zaznacz QSL jako wysłaną (Bezpośrednio)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Zaznacz QSL jako odebraną przez (Biuro)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Zaznacz QSL jako odebraną przez (Bezpośrednio)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Zaznacz QSL jako zażądaną (Biuro)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Zaznacz QSL jako zażądaną (Bezpośrednio)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Zaznacz QSL jako niewymaganą" @@ -17270,7 +17518,7 @@ msgstr "Informacja o specjalnej grupie zainteresowań stacji (np. DA/NW-357)." #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemy? Sprawdź %swiki%s." @@ -17487,7 +17735,7 @@ msgid "Link Location" msgstr "Połącz lokalizację" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Nazwa profilu" @@ -17507,19 +17755,19 @@ msgstr "" "analityki. Świete, gdy pracujesz w wielu lokalizacjach, ale są one częścią " "tego samego DXCC lub Koła VUCC." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Edytowanie połączonych lokalizacji" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Strona dla gości" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Lokalizacje stacji" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17527,11 +17775,11 @@ msgstr "" "Lokalizacji stacji definiują lokalizację, takie jak QTH, QTH przyjaciół lub " "stację przenośną (np. \"/P\")." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "Podobnie do dzienników, profil grupuje zestawy QSO." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17539,7 +17787,7 @@ msgstr "" "Tylko jedna stacja może być aktywna w danym momencie. W poniższej tabeli " "jest to oznaczone odznaką -Aktywna Stacja-." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17547,23 +17795,23 @@ msgstr "" "Kolumna 'Połączone' pokazuje, czy lokalizacja stacji jest powiązana z " "aktywnym dziennikiem wybranym powyżej." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Utwórz lokalizację stacji" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Pokaż tylko lokalizacje z aktywnego dziennika" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Pokaż wszystkie lokalizacje stacji" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Pokaż listę lokalizacji" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17571,7 +17819,7 @@ msgstr "" "Uwaga: należy ustawić aktywną lokalizację stacji. Należy przejść do Znak " "Wywoławczy → Lokalizacja Stacji, aby ją wybrać." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17579,23 +17827,23 @@ msgstr "" "Ze względu na ostatnie zmiany w Wavelog należy ponownie przypisać łączności " "(QSO) do profili stacji." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Konserwacja" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Przepisz je na " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Połączone" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Ulubione" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "oznacz/odznacz jako ulubione" @@ -18353,43 +18601,47 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Pokaż pola na karcie QSO" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Włączone elementy będą wyświetlane na zakładce QSO, zamiast na zakładce " "Ogólne." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Ustawienia żądania QSL online (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Tekst globalny" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Ten tekst jest opcjonalnym komunikatem, który może być wyświetlany na górze " "strony OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Pogrupowane wyszukiwanie" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Wyłączone" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Włączone" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18397,12 +18649,12 @@ msgstr "" "Jeśli ta opcja jest włączona, wszystkie lokalizacje stacji z aktywnym OQRS " "będą przeszukiwane jednocześnie." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" "Wyświetl nazwę lokalizacji stacji w pogrupowanych wynikach wyszukiwania" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18410,11 +18662,11 @@ msgstr "" "Jeśli pogrupowane wyszukiwanie jest włączone, można zdecydować, czy nazwa " "lokalizacji stacji ma być wyświetlana w tabeli wyników." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Automatyczne dopasowywanie OQRS" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18423,69 +18675,69 @@ msgstr "" "aktywne, a system spróbuje automatycznie dopasować przychodzące żądania do " "istniejących logów." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Automatyczne dopasowywanie OQRS dla żądań bezpośrednich" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Jeśli ta opcja jest włączona, automatyczne dopasowywanie OQRS dla żądań " "bezpośrednich będzie aktywne." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Wartości domyślne" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Ustawienia domyślnego pasma i potwierdzenia" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Domyślne pasmo" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Domyślne metody QSL" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Usługi stron trzecich" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Nazwa użytkownika Logbook of The World (LoTW)" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Hasło Logbook of The World (LoTW)" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Sprawdź login" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Nazwa użytkownika eQSL.cc" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Hasło eQSL.cc" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "ClubLog" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Email ClubLog" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Hasło ClubLog" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18495,15 +18747,15 @@ msgstr "" "hasło aplikacji, aby używać ClubLog w Wavelog. Należy odwiedzić %sstronę " "ustawień ClubLog%s, aby to zrobić." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widżety" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "Widżet \"Na żywo\"" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18511,16 +18763,16 @@ msgstr "" "Uwaga: Aby używać tego widżetu, należy mieć skonfigurowaną i działającą co " "najmniej jedną radiostację CAT." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Po włączeniu, widżet będzie dostępny pod adresem %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Wyświetl czas „ostatnio widziany”" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18528,15 +18780,15 @@ msgstr "" "To ustawienie kontroluje, czy czas „ostatnio widziany” będzie wyświetlany w " "widżecie." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Wyświetl tylko ostatnio zaktualizowaną radiostację" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Nie, pokazuj wszystkie radiostacje" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18548,15 +18800,15 @@ msgstr "" "tą, która zostało zaktualizowana jako ostatnia. W przypadku posiadania tylko " "jednej radiostacji, to ustawienie nie ma wpływu." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "Widżet QSO" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Wyświetlaj dokładny czas QSO" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18564,40 +18816,40 @@ msgstr "" "To ustawienie kontroluje, czy dokładny czas QSO ma być wyświetlany w " "widżecie QSO." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Różne" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Przesłanie statusu AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Przesyłanie statusu QSO satelitarnych do" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Serwer Mastodon" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL serwera Mastodon" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Główny URL twojego serwera Mastodon, np. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Włącznie funkcje Winkeyer" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18606,25 +18858,25 @@ msgstr "" "Obsługa Winkeyer w Wavelog jest bardzo eksperymentalna. Przed włączeniem " "należy zapoznać się wiki pod adresem %s." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Prywatny klucz kanału" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Zobacz profil użytkownika na %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Pokaż tylko możliwe do zaliczenia przeloty" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18633,7 +18885,7 @@ msgstr "" "podstawie lokatora ustawionego na koncie hams.at. Wymaga ustawienia " "prywatnego klucza kanału." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Zapisz ustawienia konta" @@ -19056,7 +19308,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "ostatnio przesłano" @@ -19084,119 +19336,125 @@ msgstr "Suma odległości" msgid "Other Path" msgstr "Inna ścieżka" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Azymut anteny" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Wysokość anteny" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "Karta QSL została wysłana przez biuro" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "Karta QSL została wysłana bezpośrednio" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "Karta QSL została wysłana elektronicznie" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "Karta QSL została wysłana za pośrednictwem menedżera" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "Karta QSL została wysłana" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "Karta QSL została otrzymana przez biuro" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "Karta QSL została otrzymana bezpośrednio" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "Karta QSL została odebrana elektronicznie" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "Karta QSL została odebrana za pośrednictwem menedżera" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "Karta QSL została odebrana" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Ta stacja używa LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Ta łączność została potwierdzona" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "To QSO zostało potwierdzone na LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "To QSO zostało potwierdzone w eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "To QSO zostało potwierdzone w QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "To QSO zostało potwierdzone w ClubLog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "To QSO zostało potwierdzone w DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Więcej QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Udostępnij" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Szczegóły" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Wyślij awers karty QSL" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Wyślij obraz karty QSL" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Wyślij rewers karty QSL" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Zaznacz QSL jako odebraną przez (Elektroniczny)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "Obraz eQSL" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO nie znaleziony" @@ -19388,6 +19646,19 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Pamięć podręczna używa obecnie adaptera zapasowego, ponieważ główny jest " +#~ "niedostępny." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Błąd podczas uzyskiwania klucza sesji dla zapytania HamQTH" + +#~ msgid "radio functions" +#~ msgstr "funkcje radiostacji" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Niepoprawnie zapisane strefy CQ" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index eceea10fc..c1ff707ed 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 4ac049fb6..0197c36d0 100644 --- a/application/locale/pt_PT/LC_MESSAGES/messages.po +++ b/application/locale/pt_PT/LC_MESSAGES/messages.po @@ -5,15 +5,15 @@ # Fabian Berg , 2024. # "Francisco (F4VSE)" , 2024. # "Francisco (F4VSE)" , 2024, 2025. -# David Quental , 2024, 2025. +# David Quental , 2024, 2025, 2026. # Fabian Berg , 2025. # CS7AFM , 2026. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-01-07 05:25+0000\n" -"Last-Translator: CS7AFM \n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-02-21 10:16+0000\n" +"Last-Translator: David Quental \n" "Language-Team: Portuguese (Portugal) \n" "Language: pt_PT\n" @@ -21,7 +21,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.14\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -74,8 +74,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -86,11 +86,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -121,11 +121,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -146,8 +146,8 @@ msgid "Activated Gridsquare Map" msgstr "Mapa Gridsquare activadas" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -309,51 +309,51 @@ msgstr "A chave API %s foi eliminada" msgid "Awards" msgstr "Prémios" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Prémios - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -362,13 +362,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -380,29 +380,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Diplomas - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Prémios - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Visualização do log - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -415,43 +415,58 @@ msgstr "Visualização do log - VUCC" msgid "Log View" msgstr "Ver log" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " e banda " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Todas as bandas (exceto SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " e satélite " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " e tipo de órbita " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " e propagação " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " e modo " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " e " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -472,14 +487,14 @@ msgstr " e " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -494,16 +509,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -517,111 +532,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Condados dos EUA" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Visualização do log - Condados" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Diplomas - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Gridsquares trabalhadas" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Gridsquares confirmadas no LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Gridsquares confirmadas via QSL em papel" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Total de Gridsquares trabalhadas" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Diplomas - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "Zonas ITU" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 em 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -652,8 +667,7 @@ msgstr "Criar Modo" msgid "Edit Band" msgstr "Editar Banda" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -686,17 +700,26 @@ msgstr "Dados CBR Importados" msgid "Callsign statistics" msgstr "Estatísticas de indicativos de chamada" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " e banda " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " e satélite " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" +msgstr "Chamada de quem testa" + +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" msgstr "" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" -msgstr "" +msgstr "Indicativo de chamada de quem testa" #: application/controllers/Club.php:23 msgid "Club Officer" @@ -704,7 +727,7 @@ msgstr "Responsável do Clube" #: application/controllers/Club.php:24 msgid "Club Member ADIF" -msgstr "" +msgstr "Membro do Clube ADIF" #: application/controllers/Club.php:25 msgid "Club Member" @@ -779,28 +802,31 @@ msgid "No user has configured Clublog." msgstr "Nenhum utilizador configurou o Clublog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -833,7 +859,7 @@ msgid "Update Contest" msgstr "Actualizar Concurso" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -851,12 +877,12 @@ msgstr "Editar Cronjob" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "nunca" @@ -931,14 +957,14 @@ msgstr "Importação de Chave DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -968,7 +994,7 @@ msgstr "Chave(s) eliminada(s)." #: application/controllers/Debug.php:114 msgid "(empty)" -msgstr "" +msgstr "(vazio)" #: application/controllers/Debug.php:132 msgid "Debug" @@ -1058,7 +1084,7 @@ msgstr "Cartões eQSL" #: application/controllers/Eqsl.php:56 #, php-format msgid "Showing %d to %d of %d entries" -msgstr "" +msgstr "A mostrar de %d a %d de %d entradas" #: application/controllers/Eqsl.php:83 application/controllers/Eqsl.php:173 msgid "eQSL Nicknames in Station Profiles aren't defined!" @@ -1091,31 +1117,31 @@ msgstr "Nenhuma abreviatura de QTH eQSL: %s" #: application/controllers/Eqsl.php:335 msgid "QSO not found or not accessible" -msgstr "" +msgstr "QSO não encontrado ou não acessível" #: application/controllers/Eqsl.php:353 msgid "User not found" -msgstr "" +msgstr "Utilizador não encontrado" #: application/controllers/Eqsl.php:362 msgid "eQSL password not configured for this user" -msgstr "" +msgstr "Senha eQSL não configurada para este utilizador" #: application/controllers/Eqsl.php:379 msgid "Failed to fetch eQSL image data" -msgstr "" +msgstr "Falha ao buscar dados de imagem eQSL" #: application/controllers/Eqsl.php:398 msgid "eQSL image not available" -msgstr "" +msgstr "Imagem eQSL não disponível" #: application/controllers/Eqsl.php:416 msgid "Failed to download eQSL image" -msgstr "" +msgstr "Falha ao transferir imagem eQSL" #: application/controllers/Eqsl.php:441 msgid "Failed to load cached eQSL image" -msgstr "" +msgstr "Falha ao carregar imagem eQSL em cache" #: application/controllers/Eqsl.php:588 msgid "eQSL Tools" @@ -1124,6 +1150,7 @@ msgstr "Ferramentas eQSL" #: application/controllers/Eqsl.php:618 msgid "Limited to first 150 QSOs for this request. Please run again." msgstr "" +"Limite para os primeiros 150 QSOs para este pedido. Por favor peça novamente." #: application/controllers/Eqsl.php:624 msgid " / Errors: " @@ -1136,6 +1163,8 @@ msgstr "Descarregado com sucesso: " #: application/controllers/Eqsl.php:631 msgid "eQSL rate limit reached. Please wait before running again." msgstr "" +"O limite de taxa do eQSL foi atingido. Por favor, aguarde antes de tentar " +"novamente." #: application/controllers/Eqsl.php:643 msgid "eQSL Card Image Download" @@ -1143,7 +1172,7 @@ msgstr "Descarregar Imagem do cartão eQSL" #: application/controllers/Eqsl.php:667 msgid "All eQSLs marked as uploaded" -msgstr "" +msgstr "Todos os eQSLs marcados como carregados" #: application/controllers/Generic_qsl.php:18 msgid "Confirmations" @@ -1184,7 +1213,7 @@ msgstr "Não foram encontrados QSOs para carregar." msgid "KML Export" msgstr "Exportação KML" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "Etiquetas para cartões QSL" @@ -1192,59 +1221,59 @@ msgstr "Etiquetas para cartões QSL" msgid "Create Label Type" msgstr "Criar tipo de etiqueta" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Nome da etiqueta" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Tipo de papel" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Medida" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Margem superior" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Margem esquerda" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSLs na horizontal" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSLs na vertical" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Espaço horizontal" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Espaço vertical" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Largura da etiqueta" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Altura da etiqueta" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Tamanho da letra" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Número de QSOs na etiqueta" @@ -1253,22 +1282,22 @@ msgid "Create Paper Type" msgstr "Criar tipo de papel" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Nome do papel" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Largura do papel" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Altura do papel" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1276,19 +1305,19 @@ msgstr "" "Não foi possível guardar o papel. Não se esqueça de que não pode ter o mesmo " "nome que os tipos de papel existentes." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "É necessário atribuir um tipo de papel à etiqueta antes de a imprimir" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "" "É necessário criar uma etiqueta e defini-la para ser utilizada na impressão." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1296,31 +1325,31 @@ msgstr "" "Algo correu mal! Não foi possível gerar a etiqueta. Verifique o tamanho da " "etiqueta e o tamanho do tipo de letra." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "0 contactos encontrados para impressão!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Editar etiqueta" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "A etiqueta foi guardada." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "A etiqueta foi apagada." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Editar papel" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "O papel foi guardado." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "O papel foi apagado." @@ -1344,55 +1373,55 @@ msgstr "Logbooks da estação" msgid "Logbook" msgstr "Logbook" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1400,93 +1429,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." -msgstr "" +msgstr "Todas as consultas ao callbook falharam ou não forneceram resultados." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1494,7 +1525,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1511,13 +1542,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1556,15 +1587,15 @@ msgstr "" msgid "Mode" msgstr "Modo" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1585,15 +1616,15 @@ msgstr "Modo" msgid "RST (S)" msgstr "RST (E)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1615,7 +1646,7 @@ msgstr "RST (E)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1624,29 +1655,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "País" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1659,7 +1690,7 @@ msgstr "País" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1667,7 +1698,7 @@ msgstr "País" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1676,12 +1707,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1690,7 +1721,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1698,7 +1729,7 @@ msgstr "IOTA" msgid "State" msgstr "Estado" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1707,19 +1738,19 @@ msgstr "Estado" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1735,20 +1766,20 @@ msgstr "Estado" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Gridsquare" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1758,9 +1789,9 @@ msgstr "Gridsquare" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1778,18 +1809,18 @@ msgstr "Gridsquare" msgid "Distance" msgstr "Distância" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1797,25 +1828,26 @@ msgstr "Distância" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1826,13 +1858,13 @@ msgstr "Distância" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1871,13 +1903,14 @@ msgstr "Distância" msgid "Band" msgstr "Banda" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1898,13 +1931,13 @@ msgstr "Banda" msgid "Frequency" msgstr "Frequência" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1917,21 +1950,21 @@ msgstr "Frequência" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operador" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1940,14 +1973,14 @@ msgstr "Operador" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "DXCC cancelada" @@ -1955,15 +1988,15 @@ msgstr "DXCC cancelada" msgid "Advanced logbook" msgstr "Logbook avançado" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." -msgstr "" +msgstr "DXCC atualizado para %d QSO(s)." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." -msgstr "" +msgstr "Mapa para DXCC %s e quadrícula %s." #: application/controllers/Lookup.php:22 msgid "Quick Lookup" @@ -1975,7 +2008,7 @@ msgstr "Consulta rápida" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1987,11 +2020,11 @@ msgstr "Certificado Importado." msgid "Certificate Updated." msgstr "Certificado atualizado." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certificado eliminado." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -1999,65 +2032,73 @@ msgid "" "application without password!%s For further information please visit the " "%sLoTW FAQ page%s in the Wavelog Wiki." msgstr "" +"O certificado encontrado no ficheiro %s contém uma palavra-passe e não pode " +"ser processado. %sPor favor, certifique-se de exportar o certificado LoTW a " +"partir da aplicação tqsl sem palavra-passe!%s Para mais informações, " +"consulte a %spágina de FAQ do LoTW%s no Wiki do Wavelog." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " "contains 'key-only' this is typically a certificate request which has not " "been processed by LoTW yet." msgstr "" +"Erro genérico ao extrair o certificado do ficheiro %s. Se o nome do ficheiro " +"contiver 'key-only', geralmente trata-se de um pedido de certificado que " +"ainda não foi processado pelo LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." -msgstr "" +msgstr "Erro genérico ao processar o certificado no ficheiro %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" +"Erro genérico ao extrair a chave privada do certificado no ficheiro %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "Informações sobre o ADIF LoTW" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." -msgstr "" +msgstr "Falha na conexão com o LoTW." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Falha no login do LoTW para o utilizador %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Nome de utilizador/palavra-passe incorretos" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW atualmente não disponível. Tente novamente mais tarde." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "Login LoTW OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Nenhuma credencial LoTW fornecida." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "Importação ADIF LoTW" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Não definiu as suas credenciais LoTW da ARRL !" #: application/controllers/Map.php:48 msgid "QSO Map" -msgstr "" +msgstr "Mapa de QSO" #: application/controllers/Mode.php:25 application/controllers/Usermode.php:23 #: application/views/interface_assets/header.php:328 @@ -2076,7 +2117,7 @@ msgstr "Editar Modo" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Notas" @@ -2099,42 +2140,44 @@ msgid "" "Duplicate note title for this category and user - not allowed for Contacts " "category." msgstr "" +"Título de nota duplicado para esta categoria e utilizador - não permitido " +"para a categoria de Contactos." #: application/controllers/Notes.php:286 msgid "Not found or not allowed" -msgstr "" +msgstr "Não encontrado ou não permitido" #: application/controllers/Notes.php:301 msgid "Not found" -msgstr "" +msgstr "Não encontrado" #: application/controllers/Notes.php:317 msgid "Category and title are required" -msgstr "" +msgstr "Categoria e título são obrigatórios" #: application/controllers/Notes.php:331 msgid "Note not found or not allowed" -msgstr "" +msgstr "Nota não encontrada ou não permitida" #: application/controllers/Notes.php:338 msgid "Note deleted" -msgstr "" +msgstr "Nota eliminada" #: application/controllers/Notes.php:342 msgid "Note updated" -msgstr "" +msgstr "Nota atualizada" #: application/controllers/Notes.php:347 msgid "Cannot create empty note" -msgstr "" +msgstr "Não é possível criar uma nota vazia" #: application/controllers/Notes.php:355 msgid "A note with this callsign already exists" -msgstr "" +msgstr "Uma nota com este indicativo de chamada já existe" #: application/controllers/Notes.php:365 msgid "Note created" -msgstr "" +msgstr "Nota criada" #: application/controllers/Notes.php:379 application/controllers/Notes.php:403 #, php-format @@ -2395,19 +2438,19 @@ msgstr "Enviar Cartões QSL" msgid "Print Requested QSLs" msgstr "Imprimir QSLs solicitadas" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Adicionar contacto" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "É necessário estar logado para aceder a este URL." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Transferência de Chamada" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Nenhum indicativo fornecido." @@ -2416,18 +2459,18 @@ msgstr "Nenhum indicativo fornecido." msgid "Hardware Interfaces" msgstr "Interfaces hardware" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Rádio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Registo de data e hora" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2435,61 +2478,65 @@ msgstr "Registo de data e hora" msgid "Options" msgstr "Opções" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Configurações" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Predefinição (clique para libertar)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Definir como rádio padrão" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "DESCONHECIDO" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "última atualização" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Definir como rádio padrão" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Predefinição (clique para libertar)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Editar" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2498,22 +2545,38 @@ msgstr "Editar" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Apagar" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket é atualmente padrão (clique para liberar)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Definir WebSocket como rádio padrão" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Não foram encontrados rádios com interface CAT." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "Ainda pode definir a opção WebSocket como o seu rádio padrão." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Editar definições do CAT" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Rádio removido com sucesso" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Exportar EDI" @@ -2581,7 +2644,7 @@ msgstr "Não tem localizações de estações. Vá a %s para o criar!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2592,13 +2655,13 @@ msgstr "aqui" msgid "Satellite Timers" msgstr "Tempos dos satélite" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2653,7 +2716,8 @@ msgstr "Editar localização da estação: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2661,7 +2725,7 @@ msgstr "Editar localização da estação: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2674,7 +2738,7 @@ msgid "Duplicate Station Location:" msgstr "Localização da estação duplicada:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Por favor, verifique o valor do QTH locator (%s)" @@ -2737,7 +2801,8 @@ msgstr "Erro. A ligação já está a ser utilizada!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2745,27 +2810,30 @@ msgid "Disabled" msgstr "Desativado" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Definir como logbook ativo" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Logbook Ativo" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " "locations linked here to another logbook." msgstr "" +"Tens a certeza de que queres eliminar o livro de registos da estação %s? " +"Tens de voltar a ligar qualquer localização aqui ligada a outro livro de " +"registos." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Ver página pública do logbook: " @@ -2774,19 +2842,20 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Tem a certeza de que pretende eliminar o slug público?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "" +"Tem a certeza de que quer tornar o perfil da estação %s a estação ativa?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Definir ativa" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Estação ativa" @@ -2794,33 +2863,33 @@ msgstr "Estação ativa" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "Contacto" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "Tem a certeza de que pretende apagar todos os contactos dentro deste perfil " "de estação?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Registo vazio" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Copiar" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2833,7 +2902,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Por favor, selecione um" @@ -2844,7 +2913,7 @@ msgstr "Editar opções do mapa de exportação" #: application/controllers/Stationsetup.php:527 msgid "Station location list" -msgstr "" +msgstr "Lista da localização da estação" #: application/controllers/Statistics.php:23 #: application/views/interface_assets/header.php:154 @@ -2913,105 +2982,105 @@ msgstr "Preparação de Excepções DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Preparação de Prefixos DXCC: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "TERMINADO" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "A actualizar..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "Entidades DXCC:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Excepções do DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Prefixos DXCC:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Atualização do SCP concluída. Resultado: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Atualização do SCP falhou. Resultado: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Atualização dos Utilizadores LoTW concluída. Resultado: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Atualização dos Utilizadores LoTW falhou. Resultado: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Atualização dos DOK terminada. Resultado: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "Atualização dos DOK falhou. Resultado: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Atualização do SOTA concluída. Resultado: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "Atualização do SOTA falhou. Resultado: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Atualização do WWFF concluída. Resultado: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Atualização do WWFF falhou. Resultado: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Atualização do HAMqsl concluída. Resultado: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "A atualização do HAMqsl falhou. Resultado: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Atualização do POTA concluída. Resultado: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "Atualização do POTA falhou. Resultado: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Atualização do TLE concluída. Resultado: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "Atualização do TLE falhou. Resultado: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Atualização SAT LoTW" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Atualização dos radioamadores nas notas" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " -msgstr "" +msgstr "Atualização do ficheiro VUCC Grid concluída. Resultado: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " -msgstr "" +msgstr "Falha na atualização do arquivo da grelha VUCC. Resultado: " #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:324 @@ -3043,61 +3112,61 @@ msgstr "Parâmetro inválido!" msgid "Add User" msgstr "Adicionar utilizador" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Nome de utilizador %s já está em uso!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-mail %s já está em uso!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Senha inválida!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Utilizador %s adicionado!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Utilizadores" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Editar utilizador" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Utilizador %s editou" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Perfil" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Apagar Utilizador" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" -msgstr "" +msgstr "Utilizador eliminado" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" -msgstr "" +msgstr "Não foi possível eliminar o utilizador!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" -msgstr "" +msgstr "Erro de base de dados:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3105,29 +3174,29 @@ msgstr "" "Parabéns! O Wavelog foi instalado com sucesso. Pode agora fazer login pela " "primeira vez." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Isto não é permitido!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "O login falhou. Tente novamente." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Iniciar sessão" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Não pode fazer login diretamente numa estação do clube. Use a sua conta " "pessoal." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3135,7 +3204,7 @@ msgstr "" "A sua conta está bloqueada, devido a demasiadas tentativas de login " "falhadas. Por favor, redefina a sua palavra-passe." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3146,52 +3215,52 @@ msgstr "" "administrador. Atualmente, apenas os administradores têm permissão para " "iniciar sessão." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Nome de utilizador ou palavra-passe incorrectos!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "O utilizador %s terminou a sessão." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Nome da estação" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Indicativo da Estação" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "Estação DXCC" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Zona CQ da Estação" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Zona ITU da Estação" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "QTH Locator da Estação" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3200,37 +3269,37 @@ msgstr "" "Estação criada com sucesso! Bem-vindo ao Wavelog! Para completar a " "configuração da sua estação, clique %saqui%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" "A configuração da estação falhou! Por favor, configure a sua estação " "manualmente." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "A reposição da palavra-passe está desactivada na Demo!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Esqueci-me da palavra-passe" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "As definições de e-mail estão incorrectas." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "A redefinição da palavra-passe foi processada." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Redefinir a palavra-passe" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3238,7 +3307,7 @@ msgstr "" "Não foi possível definir a conta para este nome de utilizador. Por favor, " "tente outro que não seja \"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3246,7 +3315,7 @@ msgstr "" "Não foi possível definir a conta para este email. Por favor, tente outro " "endereço que não seja \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3255,7 +3324,7 @@ msgstr "" "Atualmente, não podes personificar um outro utilizador. Precisa de definir " "%s para %s no seu ficheiro config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3264,15 +3333,15 @@ msgstr "" "Atualmente, não pode personificar outro utilizador. Por favor, altera a " "encryption_key no seu ficheiro config.php primeiro!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Hash inválido" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "O hash de personificação é muito antigo. Por favor, tente novamente." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3280,15 +3349,15 @@ msgstr "" "Não pode fazer-se passar por outro utilizador enquanto não estiver " "autenticado como o utilizador de origem" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Houve um problema com a sua sessão. Por favor, tente novamente." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "O utilizador solicitado para imitar não existe" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3296,13 +3365,13 @@ msgstr "" "Não foi possível determinar o nível de permissão correto para a estação do " "clube. Tente novamente após fazer login." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Ups.. Algo correu mal. Tente fazer login novamente." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3310,7 +3379,7 @@ msgstr "" "A capacidade de retornar rapidamente foi desativada após a expiração do hash " "de segurança. Por favor, faça login novamente." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3323,7 +3392,7 @@ msgid "Satellite Gridsquare Map" msgstr "Mapa Gridsquare de satélite" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Pesquisa pública" @@ -3374,28 +3443,33 @@ msgstr "Vários utilizadores encontrados pelo slug" #: application/controllers/Zonechecker.php:26 msgid "Gridsquare Zone finder" -msgstr "" +msgstr "Localizador de Quadrícula" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Consulta não configurada. Por favor, reveja a configuração." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "Erro ao obter uma chave de sessão para o callbook. Erro: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "Erro QRZCQ" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" -msgstr "" +msgstr "Arquivo CBR danificado - sem troca válida ou indicativos encontrados" #: application/libraries/Cbr_parser.php:137 msgid "Broken CBR file - no QSO data found." -msgstr "" +msgstr "Ficheiro CBR corrompido - nenhum dado QSO encontrado." #: application/libraries/Cbr_parser.php:147 msgid "Broken CBR file - incomplete header found." -msgstr "" +msgstr "Arquivo CBR corrompido - cabeçalho incompleto encontrado." #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." @@ -3540,38 +3614,40 @@ msgstr "" #: application/models/Logbook_model.php:311 msgid "Station not accessible" -msgstr "" +msgstr "Estação inacessível" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "Identificação da estação não permitida" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Nenhum indicativo fornecido" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC tem de ser numérico" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Indicativo de estação errado %s ao importar QSO com %s para %s: IGNORADO" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "" +"Tentaste importar um QSO sem data válida. Este QSO não foi importado. É " +"inválido" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "Contacto em" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3579,7 +3655,7 @@ msgstr "" "Tentou importar um contacto sem nenhum CALL dado. Este contacto não foi " "importado. É inválido" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3588,64 +3664,64 @@ msgstr "" "QSO em %s: Você tentou importar um QSO sem banda alguma. Este QSO não foi " "importado. É inválido" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "o qslrdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "o qslsdate está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "o clublog_qso_upload_date está inválido (AAAAMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicado para" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "Não há correspondência de contactos" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "confirmado por LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "confirmado pelo gestor do diploma" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "confirmado pelo controlo cruzado dos dados da DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "confirmação pendente" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "não confirmado" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "desconhecido" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "Referência POTA já no log" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO atualizado" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3659,9 +3735,11 @@ msgstr "QSO atualizado" msgid "Bearing" msgstr "Direção" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "" +"A tabela VuccGrids está vazia. Por favor, importa primeiro os dados das " +"grelhas VUCC." #: application/models/Note.php:7 msgid "Contacts" @@ -3796,42 +3874,40 @@ msgstr "Diferença" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3860,33 +3936,33 @@ msgstr "Diferença" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3907,7 +3983,7 @@ msgstr "Diferença" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Todos" @@ -3951,12 +4027,12 @@ msgstr "Período" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Propagação" @@ -3972,7 +4048,7 @@ msgstr "Todos menos SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Nenhum/Vazio" @@ -3982,11 +4058,11 @@ msgstr "Nenhum/Vazio" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Aircraft Scatter" @@ -3996,11 +4072,11 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4010,11 +4086,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4024,11 +4100,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -4038,11 +4114,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4052,11 +4128,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Terra-Lua-Terra" @@ -4066,11 +4142,11 @@ msgstr "Terra-Lua-Terra" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Esporádico E" @@ -4080,11 +4156,11 @@ msgstr "Esporádico E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Irregularidades Alinhadas ao Campo" @@ -4094,11 +4170,11 @@ msgstr "Irregularidades Alinhadas ao Campo" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "Reflexão F2" @@ -4108,11 +4184,11 @@ msgstr "Reflexão F2" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Assistido pela Internet" @@ -4122,11 +4198,11 @@ msgstr "Assistido pela Internet" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4136,11 +4212,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4150,11 +4226,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Dispersão meteorítica" @@ -4164,11 +4240,11 @@ msgstr "Dispersão meteorítica" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Repetidor ou transponder terrestre ou atmosférico" @@ -4178,11 +4254,11 @@ msgstr "Repetidor ou transponder terrestre ou atmosférico" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Dispersão de chuva" @@ -4192,11 +4268,11 @@ msgstr "Dispersão de chuva" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satélite" @@ -4206,11 +4282,11 @@ msgstr "Satélite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-equatorial" @@ -4220,11 +4296,11 @@ msgstr "Trans-equatorial" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Ducting troposférico" @@ -4233,18 +4309,18 @@ msgstr "Ducting troposférico" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4256,21 +4332,21 @@ msgstr "Ducting troposférico" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Mostrar" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4281,7 +4357,7 @@ msgstr "Mostrar" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4290,19 +4366,25 @@ msgstr "Mostrar" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satélite" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4322,22 +4404,22 @@ msgstr "Confirmação" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4383,11 +4465,11 @@ msgstr "Contagem mínima" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4396,11 +4478,10 @@ msgstr "Contagem mínima" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4420,7 +4501,8 @@ msgstr "Nada encontrado!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4436,12 +4518,13 @@ msgstr "Nada encontrado!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4465,7 +4548,7 @@ msgstr "Nada encontrado!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Indicativo" @@ -4476,12 +4559,12 @@ msgstr "Contagem" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Mostrar Contactos" @@ -4534,6 +4617,8 @@ msgid "" "There is different data for DOK in your log compared to DCL or updates where " "not done because QSOs are not confirmed in DCL." msgstr "" +"Há dados diferentes para DOK no seu log em comparação com DCL ou as " +"atualizações não foram feitas porque os QSOs não estão confirmados no DCL." #: application/views/adif/dcl_success.php:29 #: application/views/adif/pota_success.php:29 @@ -4545,7 +4630,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4569,11 +4654,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4587,12 +4672,12 @@ msgstr "Data" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4607,7 +4692,7 @@ msgstr "Data" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4620,7 +4705,7 @@ msgstr "Tempo" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4675,20 +4760,20 @@ msgstr "Importante" msgid "Log Files must have the file type *.adi" msgstr "Os ficheiros de registo devem ter o tipo de ficheiro *.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "O tamanho máximo de upload de ficheiro é " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4749,8 +4834,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "PERIGO" @@ -4869,7 +4954,7 @@ msgstr "Opções de exportação" #: application/views/adif/import.php:302 msgid "Mark exported QSOs as already uploaded to LoTW" -msgstr "" +msgstr "Marcar QSOs exportados como já carregados no LoTW" #: application/views/adif/import.php:311 msgid "Export QSOs not uploaded to LoTW" @@ -4910,6 +4995,8 @@ msgid "" "More information regarding the confirmation status in DCL can be found on " "the %sDCL Confluence page%s." msgstr "" +"Mais informações sobre o estado de confirmação em DCL podem ser encontradas " +"na %spágina DCL Confluence%s." #: application/views/adif/import.php:349 msgid "Only import DOK data from QSOs confirmed on DCL." @@ -5003,6 +5090,8 @@ msgid "" "The CBR file contains a TRX number at the end of each QSO line (for multi-op " "stations)" msgstr "" +"O ficheiro CBR contém um número TRX no final de cada linha QSO (para " +"estações multi-op)" #: application/views/adif/import.php:432 msgid "" @@ -5098,7 +5187,7 @@ msgstr "Verifica %s para dicas sobre erros em ficheiros ADIF." #: application/views/adif/import_success.php:59 msgid "You might have ADIF errors. Please check the following information:" -msgstr "" +msgstr "Poderá haver erros ADIF. Por favor, verifique a seguinte informação:" #: application/views/adif/pota_success.php:12 msgid "Results of POTA Update" @@ -5136,8 +5225,8 @@ msgstr "Referência POTA no ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Estado" @@ -5156,7 +5245,7 @@ msgstr "Nome simples para descrever a utilização desta API." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5222,7 +5311,7 @@ msgstr "O URL da API para esta instância do Wavelog é" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5276,7 +5365,7 @@ msgstr "Permissões" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5321,7 +5410,7 @@ msgstr "Criar uma chave só de leitura" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5330,8 +5419,8 @@ msgstr "Criar uma chave só de leitura" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5348,14 +5437,14 @@ msgstr "Criar uma chave só de leitura" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5411,9 +5500,9 @@ msgid "Filtering on" msgstr "Filtragem ligada" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Condado" @@ -5468,19 +5557,14 @@ msgid "Counties Confirmed" msgstr "Condados Confirmados" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5502,22 +5586,23 @@ msgid "Total" msgstr "Total" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5571,10 +5656,12 @@ msgid "Awards - CQ WAZ" msgstr "Prémios - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtros" @@ -5584,92 +5671,114 @@ msgid "Show CQ Zone Map" msgstr "Mostra o mapa da zona CQ" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" -msgstr "" +msgstr "Predefinições de datas" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Hoje" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" -msgstr "" +msgstr "Ontem" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" -msgstr "" +msgstr "Últimos 7 dias" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" -msgstr "" +msgstr "Últimos 30 dias" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" -msgstr "" +msgstr "Este mês" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" -msgstr "" +msgstr "Mês passado" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" -msgstr "" +msgstr "Este ano" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" -msgstr "" +msgstr "Ano passado" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Limpar" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5677,7 +5786,9 @@ msgid "Date from" msgstr "Data de" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5685,11 +5796,10 @@ msgid "Date to" msgstr "Data para" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5699,9 +5809,8 @@ msgid "Confirmed" msgstr "Confirmado" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5711,67 +5820,64 @@ msgstr "Contactado" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Mostrar contactados" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Mostrar confirmado" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Mostrar não contactados" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5779,95 +5885,161 @@ msgstr "Mostrar contactos com tipo de QSL" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "Cartão QSL" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabela" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mapa" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legenda:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "Cartão de papel QSL" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QRZ-\"confirmação\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(T)rabalhado" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Resumo" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Total contactados" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5932,15 +6104,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Contactado / Confirmado" @@ -5949,11 +6121,9 @@ msgstr "Contactado / Confirmado" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Todas as bandas" @@ -5961,23 +6131,20 @@ msgstr "Todas as bandas" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Reiniciar" @@ -6034,163 +6201,131 @@ msgstr "" "Campos considerados para este diploma: DXCC (Precisa de ser um válido da " "lista DXCC-ADIF-Spec-List" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Mostrar mapa DXCC" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Incluir eliminadas" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antártica" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "África" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Ásia" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "América do Norte" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "América do Sul" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oceânia" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Todas as bandas (exceto SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legenda:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "Cartão de papel QSL" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QRZ-\"confirmação\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(T)rabalhado" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "Nome do DXCC" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefixo" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" +"Não foram encontrados resultados para os seus critérios de pesquisa. Por " +"favor, tente novamente." #: application/views/awards/ffma/index.php:11 #: application/views/interface_assets/header.php:294 @@ -6458,23 +6593,23 @@ msgstr "Mostrar mapa IOTA" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Nome" @@ -6483,14 +6618,14 @@ msgid "Deleted" msgstr "Suprimido" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6500,7 +6635,7 @@ msgstr "Suprimido" msgid "ITU Zone" msgstr "Zona ITU" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6512,21 +6647,21 @@ msgstr "" "em pelo menos 70 das 75 zonas de radiodifusão definidas pela União " "Internacional de Telecomunicações (ITU)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Para mais informações, consultar o site Web da %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Campos considerados para este diploma: Zona ITU (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Diplomas - Zonas ITU" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Mostra o mapa das zonas ITU" @@ -6584,7 +6719,7 @@ msgstr "Resultados" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Cidade" @@ -6593,18 +6728,20 @@ msgstr "Cidade" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "Satélite" #: application/views/awards/pl_polska/index.php:3 msgid "Polish Voivodeships" -msgstr "" +msgstr "Voivodias polacas" #: application/views/awards/pl_polska/index.php:4 msgid "Hover over a voivodeship" -msgstr "" +msgstr "Passe o cursor sobre uma voivodia" #: application/views/awards/pl_polska/index.php:38 msgid "" @@ -6612,6 +6749,9 @@ msgid "" "contacts with stations operating from all 16 Polish voivodeships " "(provinces). Valid from January 1, 1999." msgstr "" +"O Prémio Polska é emitido pela União de Radioamadores da Polónia (PZK) por " +"contactos com estações a operar em todos as 16 voivodias polacos " +"(províncias). Válido a partir de 1 de janeiro de 1999." #: application/views/awards/pl_polska/index.php:39 msgid "" @@ -6619,29 +6759,35 @@ msgid "" "(RTTY/PSK/FSK), and individual bands (160M-2M). Classes: Basic (1 QSO/voiv), " "Bronze (3), Silver (7), Gold (12). All 16 voivodeships required." msgstr "" +"Categorias de prémios: MISTA (todos os modos/bandas), FONIA (SSB/AM/FM/" +"SSTV), CW, DIGI (RTTY/PSK/FSK) e bandas individuais (160M-2M). Classes: " +"Básico (1 QSO/voiv), Bronze (3), Prata (7), Ouro (12). Todas as 16 voivodias " +"são necessárias." #: application/views/awards/pl_polska/index.php:40 #, php-format msgid "Official rules and information: %s" -msgstr "" +msgstr "Regras oficiais e informações: %s" #: application/views/awards/pl_polska/index.php:40 msgid "PZK Polska Award Rules" -msgstr "" +msgstr "Regras do diploma PZK Polska" #: application/views/awards/pl_polska/index.php:41 msgid "" "Requirements: COL_STATE (voivodeship code), COL_DXCC=269 (Poland), QSO date " ">= 1999-01-01. No cross-band/cross-mode/repeater contacts." msgstr "" +"Requisitos: COL_STATE (código da voivodata), COL_DXCC=269 (Polónia), data do " +"QSO >= 1999-01-01. Sem contatos cross-band/cross-mode/repetidor." #: application/views/awards/pl_polska/index.php:54 msgid "Station Logbook" -msgstr "" +msgstr "Livro de Registo da Estação" #: application/views/awards/pl_polska/index.php:62 msgid "Confirmation methods" -msgstr "" +msgstr "Métodos de confirmação" #: application/views/awards/pl_polska/index.php:63 msgid "" @@ -6649,89 +6795,94 @@ msgid "" "accepted for award applications. Other digital confirmations are shown here " "for tracking purposes only." msgstr "" +"De acordo com as regras oficiais de atribuição de prémios, cartões QSL em " +"papel ou confirmações LoTW são aceites para candidaturas a prémios. Outras " +"confirmações digitais são mostradas aqui apenas para fins de acompanhamento." #: application/views/awards/pl_polska/index.php:106 msgid "Award Categories" -msgstr "" +msgstr "Categorias do diploma" #: application/views/awards/pl_polska/index.php:108 msgid "" "Polska Award categories are based on the minimum number of confirmed QSOs " "with each of all 16 voivodeships:" msgstr "" +"As categorias do Prêmio Polska são baseadas no número mínimo de QSOs " +"confirmados com cada uma das 16 voivodias:" #: application/views/awards/pl_polska/index.php:112 msgid "1 QSO per voivodeship" -msgstr "" +msgstr "1 QSO por voivodia" #: application/views/awards/pl_polska/index.php:112 msgid "Basic Class" -msgstr "" +msgstr "Classe Básica" #: application/views/awards/pl_polska/index.php:113 msgid "3 QSOs per voivodeship" -msgstr "" +msgstr "3 QSOs por voivodia" #: application/views/awards/pl_polska/index.php:113 msgid "Bronze Class (3rd)" -msgstr "" +msgstr "Classe Bronze (3ª)" #: application/views/awards/pl_polska/index.php:118 msgid "7 QSOs per voivodeship" -msgstr "" +msgstr "7 QSOs por voivodia" #: application/views/awards/pl_polska/index.php:118 msgid "Silver Class (2nd)" -msgstr "" +msgstr "Classe Prata (2ª)" #: application/views/awards/pl_polska/index.php:119 msgid "12 QSOs per voivodeship" -msgstr "" +msgstr "12 QSOs por voivodia" #: application/views/awards/pl_polska/index.php:119 msgid "Gold Class (1st)" -msgstr "" +msgstr "Classe Ouro (1ª)" #: application/views/awards/pl_polska/index.php:144 msgid "Congratulations!" -msgstr "" +msgstr "Parabéns!" #: application/views/awards/pl_polska/index.php:145 msgid "You are entitled to the following award categories" -msgstr "" +msgstr "Tem direito às seguintes categorias de prémios" #: application/views/awards/pl_polska/index.php:178 msgid "QSOs by Mode Category" -msgstr "" +msgstr "QSOs por Categoria de Modo" #: application/views/awards/pl_polska/index.php:183 msgid "QSOs by Band" -msgstr "" +msgstr "QSOs por Banda" #: application/views/awards/pl_polska/index.php:202 #: application/views/awards/pl_polska/index.php:273 msgid "Voivodeship" -msgstr "" +msgstr "Voivodia" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Código" #: application/views/awards/pl_polska/index.php:204 #: application/views/awards/pl_polska/index.php:345 msgid "MIXED" -msgstr "" +msgstr "MISTO" #: application/views/awards/pl_polska/index.php:205 #: application/views/awards/pl_polska/index.php:346 msgid "PHONE" -msgstr "" +msgstr "FONIA" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6739,62 +6890,65 @@ msgstr "CW" #: application/views/awards/pl_polska/index.php:207 #: application/views/awards/pl_polska/index.php:348 msgid "DIGI" -msgstr "" +msgstr "DIGI" #: application/views/awards/pl_polska/index.php:238 #: application/views/awards/pl_polska/index.php:310 msgid "Total voivodeships" -msgstr "" +msgstr "Total de voivodias" #: application/views/awards/pl_polska/index.php:252 #: application/views/awards/pl_polska/index.php:324 msgid "Bravo! You are entitled to" -msgstr "" +msgstr "Bravo! Tem direito a" #: application/views/awards/pl_polska/index.php:252 #: application/views/awards/pl_polska/index.php:324 msgid "category award!" -msgstr "" +msgstr "prémio de categoria!" #: application/views/awards/pl_polska/index.php:342 msgid "Award Category:" -msgstr "" +msgstr "Categoria de Prémio:" #: application/views/awards/pl_polska/index.php:344 msgid "Mode Categories" -msgstr "" +msgstr "Categorias de Modo" #: application/views/awards/pl_polska/index.php:350 msgid "Band Categories" -msgstr "" +msgstr "Categorias de Banda" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" -msgstr "" +msgstr "Arranja Estado" #: application/views/awards/pl_polska/index.php:372 msgid "Logbook Advanced" -msgstr "" +msgstr "Logbook Avançado" #: application/views/awards/pl_polska/index.php:372 msgid "" "This award uses the State field from your logbook. Ensure this field is " "populated for all SP (Poland) contacts." msgstr "" +"Este prémio utiliza o campo Estado do seu logbook. Certifique-se de que este " +"campo está preenchido para todos os contactos SP (Polónia)." #: application/views/awards/pl_polska/index.php:372 msgid "Tip:" -msgstr "" +msgstr "Dica:" #: application/views/awards/pl_polska/index.php:372 msgid "Use" -msgstr "" +msgstr "Usar" #: application/views/awards/pl_polska/index.php:372 msgid "to auto-populate states from Maidenhead locators." msgstr "" +"preencher automaticamente os estados a partir dos localizadores Maidenhead." #: application/views/awards/pota/index.php:7 msgid "POTA Awards" @@ -6841,8 +6995,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "Referência(s) POTA" @@ -6853,6 +7007,7 @@ msgstr "Província" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Passe o cursor sobre uma província" @@ -6919,7 +7074,7 @@ msgid "Reference" msgstr "Referência" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6987,7 +7142,7 @@ msgstr "" "de grelha contactados e confirmados numa determinada banda." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "" @@ -7073,25 +7228,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Diplomas - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Continente" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "Diploma WAE" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7101,18 +7261,21 @@ msgstr "" "contactos com estações de rádio amador em países europeus e em ilhas " "listadas na lista de países WAE em diferentes bandas." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " "I, WAE TOP and the WAE Trophy." msgstr "" +"O WAE será emitido nos seguintes modos: CW, SSB, Phone, RTTY, FT8, Digital e " +"Modos Mistos. É emitido em cinco classes: WAE III, WAE II, WAE I, WAE TOP e " +"o Troféu WAE." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Campos considerados para este diploma: Região, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "Nome WAE" @@ -7162,7 +7325,7 @@ msgid "Show WAJA Map" msgstr "Mostrar mapa WAJA" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefeitura" @@ -7229,15 +7392,20 @@ msgid "Show WAP Map" msgstr "Mostrar Mapa WAP" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Província" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Contactar Todas as Províncias da China" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7250,7 +7418,7 @@ msgstr "" "administrativas especiais da China, promovendo uma compreensão mais profunda " "da China." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7258,7 +7426,7 @@ msgstr "" "O diploma pode ser obtido através da acumulação a longo prazo de contactos " "ou alcançado num único esforço durante o concurso anual WAPC." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7268,6 +7436,10 @@ msgstr "" "China/318, HongKong/321, Macau/152, Taiwan/386, Ilhas Pratas/505 ou Recife " "Scarborough/506) e Estado válido (ADIF: DXCC e STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7280,7 +7452,7 @@ msgstr "Passe o cursor sobre um estado" #: application/views/awards/was/index.php:5 #: application/views/awards/was/index.php:166 msgid "inc." -msgstr "" +msgstr "inc." #: application/views/awards/was/index.php:25 msgid "WAS Award" @@ -7383,8 +7555,8 @@ msgstr "Campos considerados para este diploma: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "Referência WWFF" @@ -7440,276 +7612,281 @@ msgstr "" "A cópia de segurança das suas notas foi concluída com êxito. O resultado " "pode ser encontrado em" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Clique para preparar o registo." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" -msgstr "" +msgstr "ajustar a frequência" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" -msgstr "" +msgstr "Pop-up bloqueado" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "O pop-up foi bloqueado! Por favor, permita pop-ups para este site " "permanentemente." -#: application/views/bandmap/list.php:16 -msgid "CAT Connection Required" -msgstr "" - #: application/views/bandmap/list.php:17 +msgid "CAT Connection Required" +msgstr "Conexão CAT Necessária" + +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" -msgstr "" +msgstr "Habilitar a conexão CAT para sintonizar o rádio" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" -msgstr "" +msgstr "Limpar Filtros" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" -msgstr "" - -#: application/views/bandmap/list.php:21 -msgid "Radio set to None - CAT connection disabled" -msgstr "" +msgstr "O filtro de banda foi preservado (o bloqueio de banda está ativo)" #: application/views/bandmap/list.php:22 -msgid "Radio Tuned" -msgstr "" +msgid "Radio set to None - CAT connection disabled" +msgstr "Rádio ajustado para Nenhum - Conexão CAT desativada" #: application/views/bandmap/list.php:23 -msgid "Tuned to" -msgstr "" +msgid "Radio Tuned" +msgstr "Rádio Sintonizado" #: application/views/bandmap/list.php:24 -msgid "Tuning Failed" -msgstr "" +msgid "Tuned to" +msgstr "Sintonizado em" #: application/views/bandmap/list.php:25 -msgid "Failed to tune radio to frequency" -msgstr "" +msgid "Tuning Failed" +msgstr "Sintonização falhada" #: application/views/bandmap/list.php:26 +msgid "Failed to tune radio to frequency" +msgstr "Falha ao sintonizar o rádio na frequência" + +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" -msgstr "" +msgstr "QSO Preparado" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" -msgstr "" +msgstr "enviado para o formulário de registro" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" -msgstr "" +msgstr "Ligação CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" -msgstr "" +msgstr "Clique para ativar a conexão CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" -msgstr "" +msgstr "CAT seguindo rádio - Clique para desativar" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" -msgstr "" - -#: application/views/bandmap/list.php:33 -msgid "Band lock active - Click to disable" -msgstr "" +msgstr "Clique para ativar o bloqueio de banda (requer conexão CAT)" #: application/views/bandmap/list.php:34 -msgid "Band Lock" -msgstr "" +msgid "Band lock active - Click to disable" +msgstr "Bloqueio de banda ativo - Clique para desativar" #: application/views/bandmap/list.php:35 -msgid "Band lock enabled - band filter will track radio band" -msgstr "" +msgid "Band Lock" +msgstr "Bloqueio de Banda" #: application/views/bandmap/list.php:36 -msgid "Band filter changed to" -msgstr "" +msgid "Band lock enabled - band filter will track radio band" +msgstr "Bloqueio de banda ativado - filtro de banda seguirá a banda do rádio" #: application/views/bandmap/list.php:37 -msgid "by transceiver" -msgstr "" +msgid "Band filter changed to" +msgstr "Filtro de banda alterado para" #: application/views/bandmap/list.php:38 -msgid "Frequency filter set to" -msgstr "" +msgid "by transceiver" +msgstr "por transceptor" #: application/views/bandmap/list.php:39 -msgid "Frequency outside known bands - showing all bands" -msgstr "" +msgid "Frequency filter set to" +msgstr "Filtro de frequência definido para" #: application/views/bandmap/list.php:40 -msgid "Waiting for radio data..." -msgstr "" +msgid "Frequency outside known bands - showing all bands" +msgstr "Frequência fora das bandas conhecidas - mostrando todas as bandas" #: application/views/bandmap/list.php:41 -msgid "My Favorites" -msgstr "" +msgid "Waiting for radio data..." +msgstr "Aguardando dados de rádio..." #: application/views/bandmap/list.php:42 -msgid "Failed to load favorites" -msgstr "" +msgid "My Favorites" +msgstr "Os Meus Favoritos" #: application/views/bandmap/list.php:43 -msgid "Modes applied. Band filter preserved (CAT connection is active)" -msgstr "" +msgid "Failed to load favorites" +msgstr "Falha ao carregar favoritos" #: application/views/bandmap/list.php:44 +msgid "Modes applied. Band filter preserved (CAT connection is active)" +msgstr "Modos aplicados. Filtro de banda preservado (conexão CAT ativa)" + +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" -msgstr "" +msgstr "Analisar as tuas bandas e modos favoritos" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" -msgstr "" - -#: application/views/bandmap/list.php:48 -msgid "Submode filter enabled" -msgstr "" +msgstr "Os meus submodos" #: application/views/bandmap/list.php:49 -msgid "Submode filter disabled - showing all" -msgstr "" +msgid "Submode filter enabled" +msgstr "Filtro de submodo ativado" #: application/views/bandmap/list.php:50 -msgid "Required submodes" -msgstr "" +msgid "Submode filter disabled - showing all" +msgstr "Filtro de submodos desactivado - mostrar todos" #: application/views/bandmap/list.php:51 -msgid "Configure in User Settings - Modes" -msgstr "" +msgid "Required submodes" +msgstr "Submodos necessários" #: application/views/bandmap/list.php:52 -msgid "No submodes configured - configure in User Settings - Modes" -msgstr "" +msgid "Configure in User Settings - Modes" +msgstr "Configurar em Definições do Utilizador - Modos" #: application/views/bandmap/list.php:53 -msgid "No submodes enabled in settings - showing all spots" +msgid "No submodes configured - configure in User Settings - Modes" msgstr "" +"Nenhum submodo configurado - configure em Configurações do Usuário - Modos" #: application/views/bandmap/list.php:54 +msgid "No submodes enabled in settings - showing all spots" +msgstr "Nenhum submodo ativado nas configurações - mostrando todos os spots" + +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" - -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 -#: application/views/components/dxwaterfall.php:32 -msgid "Toggle CW mode filter" -msgstr "" +"Desativado - sem submodos ativados para este modo nas Configurações do " +"Usuário" #: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 -#: application/views/components/dxwaterfall.php:34 -msgid "Toggle Digital mode filter" -msgstr "" +#: application/views/components/dxwaterfall.php:32 +msgid "Toggle CW mode filter" +msgstr "Alternar filtro de modo CW" #: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/components/dxwaterfall.php:34 +msgid "Toggle Digital mode filter" +msgstr "Alternar filtro de modo digital" + +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" -msgstr "" +msgstr "Alternar filtro de modo fonia" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" -msgstr "" +msgstr "Favoritos" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." -msgstr "" - -#: application/views/bandmap/list.php:62 -msgid "Enter a name for this filter preset:" -msgstr "" +msgstr "Guardar Filtros Atuais..." #: application/views/bandmap/list.php:63 -msgid "Filter preset saved" -msgstr "" +msgid "Enter a name for this filter preset:" +msgstr "Digite um nome para esta predefinição de filtro:" #: application/views/bandmap/list.php:64 -msgid "Filter preset loaded" -msgstr "" +msgid "Filter preset saved" +msgstr "Predefinição de filtro guardada" #: application/views/bandmap/list.php:65 -msgid "Filter preset deleted" -msgstr "" +msgid "Filter preset loaded" +msgstr "Pré-definição de filtro carregada" #: application/views/bandmap/list.php:66 -msgid "Are you sure to delete this filter preset?" -msgstr "" +msgid "Filter preset deleted" +msgstr "Predefinição de filtro eliminada" #: application/views/bandmap/list.php:67 -msgid "No saved filter presets" -msgstr "" +msgid "Are you sure to delete this filter preset?" +msgstr "Tem a certeza de que pretende eliminar esta predefinição de filtro?" #: application/views/bandmap/list.php:68 +msgid "No saved filter presets" +msgstr "Sem predefinições de filtros guardados" + +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" - -#: application/views/bandmap/list.php:71 -msgid "Loading data from DX Cluster" -msgstr "" +"Máximo de 20 predefinições de filtro atingido. Por favor, apague algumas " +"antes de adicionar novas." #: application/views/bandmap/list.php:72 -msgid "Last fetched for" -msgstr "" +msgid "Loading data from DX Cluster" +msgstr "Carregando dados do DX Cluster" #: application/views/bandmap/list.php:73 -msgid "Max Age" -msgstr "" +msgid "Last fetched for" +msgstr "Última busca por" #: application/views/bandmap/list.php:74 -msgid "Fetched at" -msgstr "" +msgid "Max Age" +msgstr "Mais antigos" #: application/views/bandmap/list.php:75 -msgid "Next update in" -msgstr "" +msgid "Fetched at" +msgstr "Buscado em" #: application/views/bandmap/list.php:76 -msgid "minutes" -msgstr "" +msgid "Next update in" +msgstr "Próxima atualização em" #: application/views/bandmap/list.php:77 -msgid "seconds" -msgstr "" +msgid "minutes" +msgstr "minutos" #: application/views/bandmap/list.php:78 -msgid "spots fetched" -msgstr "" +msgid "seconds" +msgstr "segundos" #: application/views/bandmap/list.php:79 -msgid "showing" -msgstr "" +msgid "spots fetched" +msgstr "spots procurados" #: application/views/bandmap/list.php:80 -msgid "showing all" -msgstr "" +msgid "showing" +msgstr "mostrando" #: application/views/bandmap/list.php:81 -msgid "Active filters" -msgstr "" +msgid "showing all" +msgstr "a mostrar tudo" #: application/views/bandmap/list.php:82 -msgid "Fetching..." -msgstr "" +msgid "Active filters" +msgstr "Filtros ativos" -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:83 +msgid "Fetching..." +msgstr "Buscando..." + +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Não contactado" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Contactado, não confirmado" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7717,265 +7894,272 @@ msgstr "Contactado, não confirmado" msgid "LoTW User" msgstr "Utilizador do LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" -msgstr "" - -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 -#: application/views/components/dxwaterfall.php:16 -msgid "New Continent" -msgstr "" +msgstr "Novo indicativo de chamada" #: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 -msgid "New Country" -msgstr "" +#: application/views/components/dxwaterfall.php:16 +msgid "New Continent" +msgstr "Novo Continente" -#: application/views/bandmap/list.php:93 -msgid "Worked Before" -msgstr "" +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 +msgid "New Country" +msgstr "Novo País" #: application/views/bandmap/list.php:94 +msgid "Worked Before" +msgstr "Trabalhou Antes" + +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" -msgstr "" - -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 -msgid "de" -msgstr "" +msgstr "Trabalhado em %s com %s" #: application/views/bandmap/list.php:103 -msgid "spotted" -msgstr "" +#: application/views/bandmap/list.php:598 +msgid "de" +msgstr "de" -#: application/views/bandmap/list.php:106 -msgid "Fresh spot (< 5 minutes old)" -msgstr "" +#: application/views/bandmap/list.php:104 +msgid "spotted" +msgstr "visto" #: application/views/bandmap/list.php:107 +msgid "Fresh spot (< 5 minutes old)" +msgstr "Novo spot (< 5 minutos)" + #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Concurso" -#: application/views/bandmap/list.php:109 -msgid "Click to view" -msgstr "" - #: application/views/bandmap/list.php:110 -msgid "on QRZ.com" -msgstr "" +msgid "Click to view" +msgstr "Clique para ver" #: application/views/bandmap/list.php:111 -#, php-format -msgid "Click to view %s on QRZ.com" -msgstr "" +msgid "on QRZ.com" +msgstr "em QRZ.com" #: application/views/bandmap/list.php:112 -msgid "See details for" -msgstr "" +#, php-format +msgid "Click to view %s on QRZ.com" +msgstr "Clique para ver %s no QRZ.com" #: application/views/bandmap/list.php:113 -msgid "Worked on" -msgstr "" +msgid "See details for" +msgstr "Ver detalhes para" #: application/views/bandmap/list.php:114 -msgid "Not worked on this band" -msgstr "" +msgid "Worked on" +msgstr "Trabalhado em" #: application/views/bandmap/list.php:115 -#, php-format -msgid "LoTW User. Last upload was %d days ago" -msgstr "" +msgid "Not worked on this band" +msgstr "Não trabalhado nesta banda" #: application/views/bandmap/list.php:116 -msgid "Click to view on POTA.app" -msgstr "" +#, php-format +msgid "LoTW User. Last upload was %d days ago" +msgstr "Utilizador do LoTW. Último carregamento foi há %d dias" #: application/views/bandmap/list.php:117 -msgid "Click to view on SOTL.as" -msgstr "" +msgid "Click to view on POTA.app" +msgstr "Clique para ver no POTA.app" #: application/views/bandmap/list.php:118 -msgid "Click to view on cqgma.org" -msgstr "" +msgid "Click to view on SOTL.as" +msgstr "Clique para ver no SOTL.as" #: application/views/bandmap/list.php:119 -msgid "Click to view on IOTA-World.org" -msgstr "" +msgid "Click to view on cqgma.org" +msgstr "Clique para ver em cqgma.org" #: application/views/bandmap/list.php:120 -msgid "See details for continent" -msgstr "" +msgid "Click to view on IOTA-World.org" +msgstr "Clique para ver em IOTA-World.org" #: application/views/bandmap/list.php:121 -#, php-format -msgid "See details for continent %s" -msgstr "" +msgid "See details for continent" +msgstr "Ver detalhes para o continente" #: application/views/bandmap/list.php:122 -msgid "See details for CQ Zone" -msgstr "" +#, php-format +msgid "See details for continent %s" +msgstr "Ver detalhes para o continente %s" #: application/views/bandmap/list.php:123 -#, php-format -msgid "See details for CQ Zone %s" -msgstr "" +msgid "See details for CQ Zone" +msgstr "Ver detalhes para CQ Zone" #: application/views/bandmap/list.php:124 -msgid "in" -msgstr "" +#, php-format +msgid "See details for CQ Zone %s" +msgstr "Ver detalhes para a Zona CQ %s" -#: application/views/bandmap/list.php:127 -msgid "Exit Fullscreen" -msgstr "" +#: application/views/bandmap/list.php:125 +msgid "in" +msgstr "em" #: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 -msgid "Toggle Fullscreen" -msgstr "" +msgid "Exit Fullscreen" +msgstr "Sair do Ecrã Completo" #: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 +msgid "Toggle Fullscreen" +msgstr "Alternar Ecrã Inteiro" + +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" +"A filtragem de banda é controlada pelo teu rádio quando a ligação CAT está " +"ativada" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" -msgstr "" - -#: application/views/bandmap/list.php:132 -msgid "(requires CAT connection)" -msgstr "" +msgstr "Clique para preparar o registo" #: application/views/bandmap/list.php:133 +msgid "(requires CAT connection)" +msgstr "(requer conexão CAT)" + +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Comentário" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Idade" -#: application/views/bandmap/list.php:137 -msgid "Incoming" -msgstr "" - #: application/views/bandmap/list.php:138 -msgid "Outgoing" -msgstr "" +msgid "Incoming" +msgstr "A chegar" #: application/views/bandmap/list.php:139 -#: application/views/components/dxwaterfall.php:15 -msgid "spots" -msgstr "" +msgid "Outgoing" +msgstr "A enviar" #: application/views/bandmap/list.php:140 -msgid "spot" -msgstr "" +#: application/views/components/dxwaterfall.php:15 +msgid "spots" +msgstr "spots" #: application/views/bandmap/list.php:141 -msgid "spotters" -msgstr "" +msgid "spot" +msgstr "spot" -#: application/views/bandmap/list.php:144 -msgid "Please Wait" -msgstr "" +#: application/views/bandmap/list.php:142 +msgid "spotters" +msgstr "spotters" #: application/views/bandmap/list.php:145 +msgid "Please Wait" +msgstr "Por favor, aguarde" + +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" - -#: application/views/bandmap/list.php:148 -msgid "Loading spots..." -msgstr "" +"Por favor, aguarde %s segundos antes de enviar outro indicativo de chamada " +"para o formulário QSO" #: application/views/bandmap/list.php:149 -msgid "No spots found" -msgstr "" +msgid "Loading spots..." +msgstr "A carregar spots..." #: application/views/bandmap/list.php:150 -msgid "No data available" -msgstr "" +msgid "No spots found" +msgstr "Nenhuns spots encontrados" #: application/views/bandmap/list.php:151 -msgid "No spots found for selected filters" -msgstr "" +msgid "No data available" +msgstr "Dados não disponíveis" #: application/views/bandmap/list.php:152 -msgid "Error loading spots. Please try again." -msgstr "" +msgid "No spots found for selected filters" +msgstr "Nenhum spot encontrado para os filtros selecionados" -#: application/views/bandmap/list.php:155 -msgid "Show all modes" -msgstr "" +#: application/views/bandmap/list.php:153 +msgid "Error loading spots. Please try again." +msgstr "Erro ao carregar spots. Por favor, tente novamente." #: application/views/bandmap/list.php:156 -msgid "Show all spots" -msgstr "" +msgid "Show all modes" +msgstr "Mostrar todos os modos" -#: application/views/bandmap/list.php:161 -msgid "Draw Spotters" -msgstr "" +#: application/views/bandmap/list.php:157 +msgid "Show all spots" +msgstr "Mostrar todos os spots" #: application/views/bandmap/list.php:162 -msgid "Extend Map" -msgstr "" +msgid "Draw Spotters" +msgstr "Desenhar Spotters" #: application/views/bandmap/list.php:163 -msgid "Show Day/Night" -msgstr "" +msgid "Extend Map" +msgstr "Mapa extendido" #: application/views/bandmap/list.php:164 +msgid "Show Day/Night" +msgstr "Mostrar Dia/Noite" + +#: application/views/bandmap/list.php:165 msgid "Your QTH" -msgstr "" +msgstr "O seu QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" -msgstr "" +msgstr "Voltar para Casa" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" -msgstr "" +msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" -msgstr "" +msgstr "Ajuda do DX Cluster" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" -msgstr "" +msgstr "Modo Compacto - Ocultar/Mostrar Menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" -msgstr "" +msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7983,314 +8167,282 @@ msgstr "" msgid "None" msgstr "Nenhum" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Ao vivo - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " -msgstr "" +msgstr "Sondagem - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" -msgstr "" - -#: application/views/bandmap/list.php:253 -msgid "Select all continents" -msgstr "" - -#: application/views/bandmap/list.php:253 -msgid "World" -msgstr "" +msgstr "de:" #: application/views/bandmap/list.php:254 -msgid "Toggle Africa continent filter" -msgstr "" +msgid "Select all continents" +msgstr "Seleciona todos os continentes" + +#: application/views/bandmap/list.php:254 +msgid "World" +msgstr "Mundo" #: application/views/bandmap/list.php:255 -msgid "Toggle Antarctica continent filter" -msgstr "" +msgid "Toggle Africa continent filter" +msgstr "Alternar filtro do continente África" #: application/views/bandmap/list.php:256 -msgid "Toggle Asia continent filter" -msgstr "" +msgid "Toggle Antarctica continent filter" +msgstr "Alternar filtro do continente Antártica" #: application/views/bandmap/list.php:257 -msgid "Toggle Europe continent filter" -msgstr "" +msgid "Toggle Asia continent filter" +msgstr "Alternar filtro do continente Ásia" #: application/views/bandmap/list.php:258 -msgid "Toggle North America continent filter" -msgstr "" +msgid "Toggle Europe continent filter" +msgstr "Alternar o filtro do continente Europa" #: application/views/bandmap/list.php:259 -msgid "Toggle Oceania continent filter" -msgstr "" +msgid "Toggle North America continent filter" +msgstr "Alternar filtro do continente da América do Norte" #: application/views/bandmap/list.php:260 +msgid "Toggle Oceania continent filter" +msgstr "Alternar filtro do continente da Oceânia" + +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" -msgstr "" +msgstr "Alternar filtro de continente da América do Sul" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" -msgstr "" +msgstr "Filtros Avançados" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" -msgstr "" +msgstr "Segurar" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" -msgstr "" +msgstr "e clique para selecionar várias opções" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Status DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Fonia" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digital" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" -msgstr "" +msgstr "Bandeiras obrigatórias" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" -msgstr "" +msgstr "Indicativo trabalhado" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" -msgstr "" +msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" -msgstr "" +msgstr "Bandeiras adicionais" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" -msgstr "" +msgstr "Fresco (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" -msgstr "" +msgstr "Spots do continente" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" -msgstr "" +msgstr "Continente da estação do spot" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" -msgstr "" +msgstr "Aplicar filtros" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" -msgstr "" +msgstr "Filtrar Favoritos" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" -msgstr "" +msgstr "Limpar todos os filtros, exceto de Continente" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" -msgstr "" - -#: application/views/bandmap/list.php:440 -msgid "Toggle 80m band filter" -msgstr "" +msgstr "Alternar o filtro da banda de 160m" #: application/views/bandmap/list.php:441 -msgid "Toggle 60m band filter" -msgstr "" +msgid "Toggle 80m band filter" +msgstr "Alternar filtro de banda de 80m" #: application/views/bandmap/list.php:442 -msgid "Toggle 40m band filter" -msgstr "" +msgid "Toggle 60m band filter" +msgstr "Alternar filtro banda 60m" #: application/views/bandmap/list.php:443 -msgid "Toggle 30m band filter" -msgstr "" +msgid "Toggle 40m band filter" +msgstr "Alternar filtro da banda de 40m" #: application/views/bandmap/list.php:444 -msgid "Toggle 20m band filter" -msgstr "" +msgid "Toggle 30m band filter" +msgstr "Alternar filtro de banda de 30m" #: application/views/bandmap/list.php:445 -msgid "Toggle 17m band filter" -msgstr "" +msgid "Toggle 20m band filter" +msgstr "Alternar filtro da banda 20m" #: application/views/bandmap/list.php:446 -msgid "Toggle 15m band filter" -msgstr "" +msgid "Toggle 17m band filter" +msgstr "Alternar filtro da banda de 17m" #: application/views/bandmap/list.php:447 -msgid "Toggle 12m band filter" -msgstr "" +msgid "Toggle 15m band filter" +msgstr "Alternar o filtro da banda de 15m" #: application/views/bandmap/list.php:448 +msgid "Toggle 12m band filter" +msgstr "Alternar filtro da banda de 12m" + +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" -msgstr "" +msgstr "Alternar filtro da banda de 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" -msgstr "" - -#: application/views/bandmap/list.php:456 -msgid "Toggle VHF bands filter" -msgstr "" +msgstr "Alternar filtro da banda de 6m" #: application/views/bandmap/list.php:457 -msgid "Toggle UHF bands filter" -msgstr "" +msgid "Toggle VHF bands filter" +msgstr "Alternar filtro de bandas VHF" #: application/views/bandmap/list.php:458 +msgid "Toggle UHF bands filter" +msgstr "Alternar filtro de bandas UHF" + +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" -msgstr "" +msgstr "Alternar filtro de bandas SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." -msgstr "" - -#: application/views/bandmap/list.php:483 -msgid "Toggle LoTW User filter" -msgstr "" +msgstr "A carregar submodos..." #: application/views/bandmap/list.php:484 -msgid "LoTW users" -msgstr "" +msgid "Toggle LoTW User filter" +msgstr "Alternar filtro de Utilizador LoTW" -#: application/views/bandmap/list.php:490 -msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" -msgstr "" +#: application/views/bandmap/list.php:485 +msgid "LoTW users" +msgstr "utilizadores de LoTW" #: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 -msgid "DX" +msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" +"Alternar filtro de DX Spot (continente spotted ≠ continente do spotter)" -#: application/views/bandmap/list.php:493 -msgid "Toggle New Continents filter" -msgstr "" +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 +msgid "DX" +msgstr "DX" #: application/views/bandmap/list.php:494 -msgid "New Continents" -msgstr "" +msgid "Toggle New Continents filter" +msgstr "Alternar filtro de Novos Continentes" -#: application/views/bandmap/list.php:496 -msgid "Toggle New Entities filter" -msgstr "" +#: application/views/bandmap/list.php:495 +msgid "New Continents" +msgstr "Novos Continentes" #: application/views/bandmap/list.php:497 -msgid "New Entities" -msgstr "" +msgid "Toggle New Entities filter" +msgstr "Alternar filtro de Novas Entidades" -#: application/views/bandmap/list.php:499 -msgid "Toggle New Callsigns filter" -msgstr "" +#: application/views/bandmap/list.php:498 +msgid "New Entities" +msgstr "Novas Entidades" #: application/views/bandmap/list.php:500 -msgid "New Callsigns" -msgstr "" +msgid "Toggle New Callsigns filter" +msgstr "Alternar o filtro de Novos Indicativos de Chamada" -#: application/views/bandmap/list.php:506 -msgid "Toggle Fresh spots filter (< 5 minutes old)" -msgstr "" +#: application/views/bandmap/list.php:501 +msgid "New Callsigns" +msgstr "Novos indicativos de chamada" #: application/views/bandmap/list.php:507 +msgid "Toggle Fresh spots filter (< 5 minutes old)" +msgstr "Alternar filtro de spots frescos (< 5 minutos de duração)" + +#: application/views/bandmap/list.php:508 msgid "Fresh" -msgstr "" +msgstr "Fresco" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" -msgstr "" - -#: application/views/bandmap/list.php:512 -msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" -msgstr "" +msgstr "Alternar filtro de concurso" #: application/views/bandmap/list.php:513 -msgid "Referenced" -msgstr "" +msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" +msgstr "Alternar Caçador de Geo (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:519 -msgid "Open DX Map view" -msgstr "" +#: application/views/bandmap/list.php:514 +msgid "Referenced" +msgstr "Referenciado" #: application/views/bandmap/list.php:520 +msgid "Open DX Map view" +msgstr "Abrir mapa DX" + +#: application/views/bandmap/list.php:521 msgid "DX Map" -msgstr "" +msgstr "Mapa DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "" +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Pesquisar Coluna" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Todas as colunas" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Informações do spot" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submodo" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "Estação DX" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" -msgstr "" +msgstr "Entidade" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8298,6 +8450,60 @@ msgstr "" msgid "Message" msgstr "Mensagem" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Continente do spotter" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Zona CQ do Spotter" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Pesquisar spots..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "Nota: O mapa mostra locais das entidades DXCC, não spots exatos" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Tempo em minutos" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Freq" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Indicativo de chamada spotted" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Bandeira" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "Entidade DXCC" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Indicativo de Spotter" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Data do último QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Especial" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Bandeiras Especiais" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Por favor insira números válidos para a frequência" @@ -8575,7 +8781,7 @@ msgstr "" "de referência IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8693,19 +8899,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8739,15 +8945,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Sim" @@ -8762,19 +8970,19 @@ msgstr "Sim" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8808,16 +9016,17 @@ msgstr "Sim" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Não" @@ -8848,52 +9057,53 @@ msgid "First QSO" msgstr "Primeiro contacto" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Último QSO" #: application/views/calltester/comparison_result.php:18 msgid "DXCC Class Results" -msgstr "" +msgstr "Resultados da Classe DXCC" #: application/views/calltester/comparison_result.php:21 #: application/views/calltester/comparison_result.php:33 msgid "Calls tested:" -msgstr "" +msgstr "Chamadas testadas:" #: application/views/calltester/comparison_result.php:22 #: application/views/calltester/comparison_result.php:34 msgid "Execution time:" -msgstr "" +msgstr "Tempo de execução:" #: application/views/calltester/comparison_result.php:23 #: application/views/calltester/comparison_result.php:35 msgid "Issues found:" -msgstr "" +msgstr "Problemas encontrados:" #: application/views/calltester/comparison_result.php:30 msgid "Logbook Model Results" -msgstr "" +msgstr "Resultados do Modelo de Logbook" #: application/views/calltester/comparison_result.php:44 msgid "Comparison Summary" -msgstr "" +msgstr "Resumo da Comparação" #: application/views/calltester/comparison_result.php:45 msgid "Only found in DXCC Class:" -msgstr "" +msgstr "Apenas encontrado na Classe DXCC:" #: application/views/calltester/comparison_result.php:46 msgid "Only found in Logbook Model:" -msgstr "" +msgstr "Apenas encontrado no Modelo de Logbook:" #: application/views/calltester/comparison_result.php:47 msgid "Found in both methods:" -msgstr "" +msgstr "Encontrado em ambos os métodos:" #: application/views/calltester/comparison_result.php:54 msgid "Issues found only in DXCC Class (not in Logbook Model):" msgstr "" +"Problemas encontrados apenas na Classe DXCC (não no Modelo de Registro):" #: application/views/calltester/comparison_result.php:62 #: application/views/calltester/comparison_result.php:98 @@ -8904,7 +9114,7 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:392 #: application/views/zonechecker/result.php:52 msgid "Station Profile" -msgstr "" +msgstr "Perfil da Estação" #: application/views/calltester/comparison_result.php:63 #: application/views/calltester/comparison_result.php:99 @@ -8912,14 +9122,14 @@ msgstr "" #: application/views/calltester/result.php:25 #: application/views/logbookadvanced/checkresult.php:107 msgid "Existing DXCC" -msgstr "" +msgstr "DXCC existente" #: application/views/calltester/comparison_result.php:64 #: application/views/calltester/comparison_result.php:100 #: application/views/calltester/comparison_result.php:136 #: application/views/calltester/result.php:26 msgid "Existing ADIF" -msgstr "" +msgstr "ADIF existente" #: application/views/calltester/comparison_result.php:65 #: application/views/calltester/comparison_result.php:101 @@ -8927,62 +9137,64 @@ msgstr "" #: application/views/calltester/result.php:27 #: application/views/logbookadvanced/checkresult.php:108 msgid "Result DXCC" -msgstr "" +msgstr "Resultado DXCC" #: application/views/calltester/comparison_result.php:66 #: application/views/calltester/comparison_result.php:102 #: application/views/calltester/comparison_result.php:138 #: application/views/calltester/result.php:28 msgid "Result ADIF" -msgstr "" +msgstr "Resultado ADIF" #: application/views/calltester/comparison_result.php:90 msgid "Issues found only in Logbook Model (not in DXCC Class):" -msgstr "" +msgstr "Problemas encontrados apenas no Modelo de Diário (não na Classe DXCC):" #: application/views/calltester/comparison_result.php:126 msgid "Issues found in both methods:" -msgstr "" +msgstr "Problemas encontrados em ambos os métodos:" #: application/views/calltester/comparison_result.php:162 msgid "" "No DXCC issues found in either method. All calls have correct DXCC " "information." msgstr "" +"Não foram encontrados problemas no DXCC em nenhum dos métodos. Todas as " +"chamadas têm a informação correta de DXCC." #: application/views/calltester/index.php:3 msgid "Callsign DXCC identification" -msgstr "" +msgstr "Identificação do indicativo DXCC" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Indicativo: " #: application/views/calltester/index.php:15 msgid "Start DXCC Check" -msgstr "" +msgstr "Iniciar verificação DXCC" #: application/views/calltester/index.php:18 msgid "Compare DXCC class and logbook model" -msgstr "" +msgstr "Comparar o modelo de classe DXCC e o modelo de logbook" #: application/views/calltester/result.php:4 #: application/views/logbookadvanced/checkresult.php:85 msgid "Callsigns tested: " -msgstr "" +msgstr "Indicativos testados: " #: application/views/calltester/result.php:5 #: application/views/logbookadvanced/checkresult.php:86 msgid "Execution time: " -msgstr "" +msgstr "Tempo de execução: " #: application/views/calltester/result.php:6 #: application/views/logbookadvanced/checkresult.php:87 msgid "Number of potential QSOs with wrong DXCC: " -msgstr "" +msgstr "Número de QSOs potenciais com DXCC incorreto: " #: application/views/club/clubswitch_modal.php:5 msgid "Switch to a Clubstation" @@ -9088,7 +9300,7 @@ msgstr "Exportar contacto para ficheiro ADIF" #: application/views/club/permissions.php:128 msgid "Export own QSO per ADIF" -msgstr "" +msgstr "Exportar QSO próprio por ADIF" #: application/views/club/permissions.php:137 msgid "User Management" @@ -9248,8 +9460,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9299,163 +9511,167 @@ msgstr "Descarregar QSLs do Clublog" #: application/views/components/dxwaterfall.php:13 msgid "Tune to spot frequency and start logging QSO" -msgstr "" +msgstr "Sintoniza a frequência específica e começa a registar o QSO" #: application/views/components/dxwaterfall.php:14 msgid "Cycle through nearby spots" -msgstr "" +msgstr "Ciclar por spots próximos" #: application/views/components/dxwaterfall.php:17 msgid "New DXCC" -msgstr "" +msgstr "DXCC novo" #: application/views/components/dxwaterfall.php:19 msgid "First spot" -msgstr "" +msgstr "Primeiro spot" #: application/views/components/dxwaterfall.php:19 msgid "Previous spot" -msgstr "" +msgstr "Spot anterior" #: application/views/components/dxwaterfall.php:20 msgid "No spots at lower frequency" -msgstr "" +msgstr "Sem spots em frequências mais baixas" #: application/views/components/dxwaterfall.php:21 msgid "Last spot" -msgstr "" +msgstr "Último spot" #: application/views/components/dxwaterfall.php:21 msgid "Next spot" -msgstr "" +msgstr "Próximo spot" #: application/views/components/dxwaterfall.php:22 msgid "No spots at higher frequency" -msgstr "" +msgstr "Sem spots em frequências mais altas" #: application/views/components/dxwaterfall.php:23 msgid "No spots available" -msgstr "" +msgstr "Sem spots disponíveis" #: application/views/components/dxwaterfall.php:24 msgid "Cycle through unworked continents/DXCC" -msgstr "" +msgstr "A passar através de continentes/DXCC não trabalhados" #: application/views/components/dxwaterfall.php:25 msgid "DX Hunter" -msgstr "" +msgstr "Caçador de DX" #: application/views/components/dxwaterfall.php:26 msgid "No unworked continents/DXCC on this band" -msgstr "" +msgstr "Sem continentes/DXCC trabalhados nesta banda" #: application/views/components/dxwaterfall.php:27 msgid "Click to cycle or wait 1.5s to apply" -msgstr "" +msgstr "Clique para alternar ou espere 1,5s para aplicar" #: application/views/components/dxwaterfall.php:28 msgid "Change spotter continent" -msgstr "" +msgstr "Mudar o continente do spotter" #: application/views/components/dxwaterfall.php:29 msgid "Filter by mode" -msgstr "" +msgstr "Filtrar por modo" #: application/views/components/dxwaterfall.php:36 msgid "Zoom out" -msgstr "" +msgstr "Afastar" #: application/views/components/dxwaterfall.php:37 msgid "Reset zoom to default (3)" -msgstr "" +msgstr "Repor zoom para o padrão (3)" #: application/views/components/dxwaterfall.php:38 msgid "Zoom in" -msgstr "" +msgstr "Aumentar o zoom" #: application/views/components/dxwaterfall.php:39 msgid "Downloading DX Cluster data" -msgstr "" +msgstr "Transferindo dados do DX Cluster" #: application/views/components/dxwaterfall.php:40 msgid "Comment: " -msgstr "" +msgstr "Comentário: " #: application/views/components/dxwaterfall.php:41 msgid "modes:" -msgstr "" +msgstr "modos:" #: application/views/components/dxwaterfall.php:42 msgid "OUT OF BANDPLAN" -msgstr "" +msgstr "FORA DO PLANO DE BANDAS" #: application/views/components/dxwaterfall.php:43 msgid "Out of band" -msgstr "" +msgstr "Fora de banda" #: application/views/components/dxwaterfall.php:44 msgid "" "DX Waterfall has experienced an unexpected error and will be shut down. " "Please visit Wavelog's GitHub and create a bug report if this issue persists." msgstr "" +"O DX Waterfall encontrou um erro inesperado e será encerrado. Por favor, " +"visite o GitHub do Wavelog e crie um relatório de bug se este problema " +"persistir." #: application/views/components/dxwaterfall.php:45 msgid "Changing radio frequency..." -msgstr "" +msgstr "Mudando a frequência do rádio..." #: application/views/components/dxwaterfall.php:46 msgid "INVALID" -msgstr "" +msgstr "INVÁLIDO" #: application/views/components/dxwaterfall.php:47 msgid "Click to turn on the DX Waterfall" -msgstr "" +msgstr "Clique para ativar a Waterfall DX" #: application/views/components/dxwaterfall.php:48 msgid "Turn off DX Waterfall" -msgstr "" +msgstr "Desligar DX Waterfall" #: application/views/components/dxwaterfall.php:49 msgid "Please wait" -msgstr "" +msgstr "Por favor, espera" #: application/views/components/dxwaterfall.php:50 msgid "Cycle label size" -msgstr "" +msgstr "Tamanho da etiqueta do ciclo" #: application/views/components/dxwaterfall.php:51 msgid "X-Small" -msgstr "" +msgstr "Muito pequeno" #: application/views/components/dxwaterfall.php:52 msgid "Small" -msgstr "" +msgstr "Pequeno" #: application/views/components/dxwaterfall.php:53 msgid "Medium" -msgstr "" +msgstr "Médio" #: application/views/components/dxwaterfall.php:54 msgid "Large" -msgstr "" +msgstr "Grande" #: application/views/components/dxwaterfall.php:55 msgid "X-Large" -msgstr "" +msgstr "Extra largo" #: application/views/components/dxwaterfall.php:56 msgid "by:" -msgstr "" +msgstr "por:" #: application/views/components/dxwaterfall.php:57 #, php-format msgid "Please wait %s second(s) before toggling DX Waterfall again." msgstr "" +"Por favor, aguarde %s segundo(s) antes de alternar novamente o DX Waterfall." #: application/views/components/dxwaterfall.php:81 #: application/views/components/dxwaterfall.php:87 msgid "DX Waterfall Help" -msgstr "" +msgstr "Ajuda Waterfall DX" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 @@ -9560,7 +9776,7 @@ msgstr "Nome ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9630,7 +9846,7 @@ msgstr "Criar" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Nome do Concurso" @@ -9708,8 +9924,8 @@ msgid "Locator" msgstr "Locator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9824,11 +10040,11 @@ msgstr "Identificador" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Ativado" @@ -9923,7 +10139,8 @@ msgid "Cron List" msgstr "Lista de Cron" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -9981,7 +10198,7 @@ msgstr "Modo de Propagação" #: application/views/csv/index.php:95 msgctxt "Propagation Mode" msgid "All but Repeater" -msgstr "" +msgstr "Todos exceto Repetidor" #: application/views/dashboard/index.php:5 msgid "RSTS" @@ -10055,6 +10272,8 @@ msgid "" "Don't lose your streak - You have already had at least one QSO for the last " "%s consecutive days." msgstr "" +"Não percas a tua sequência - Já tiveste pelo menos um QSO nos últimos %s " +"dias consecutivos." #: application/views/dashboard/index.php:184 msgid "You have made no QSOs today; time to turn on the radio!" @@ -10079,14 +10298,16 @@ msgid "" "LoTW Warning: There is an issue with at least one of your %sLoTW " "certificates%s!" msgstr "" +"Aviso do LoTW: Há um problema com pelo menos um dos seus certificados " +"%sLoTW%s!" #: application/views/dashboard/index.php:216 msgid "At least one of your certificates is expired" -msgstr "" +msgstr "Pelo menos um dos seus certificados está expirado" #: application/views/dashboard/index.php:217 msgid "At least one of your certificates is expiring" -msgstr "" +msgstr "Pelo menos um dos seus certificados está a expirar" #: application/views/dashboard/index.php:295 #: application/views/qso/index.php:929 @@ -10117,9 +10338,9 @@ msgstr "Necessário" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10141,10 +10362,10 @@ msgstr "Necessário" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Enviado" @@ -10154,9 +10375,9 @@ msgstr "Enviado" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10177,10 +10398,10 @@ msgstr "Enviado" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Recebido" @@ -10188,17 +10409,17 @@ msgstr "Recebido" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10221,11 +10442,11 @@ msgstr "Recebido" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Solicitado" @@ -10251,6 +10472,38 @@ msgstr "Última atualização às %s." msgid "Data provided by HAMqsl." msgstr "Dados fornecidos pela HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Número de contactos para este dia da semana" @@ -10330,7 +10583,7 @@ msgstr "Data de Início" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Data de Fim" @@ -10515,29 +10768,29 @@ msgstr "Carregar Ficheiro" #: application/views/debug/index.php:2 msgid "Are you sure you want to clear the cache?" -msgstr "" +msgstr "Tem a certeza de que quer limpar a cache?" #: application/views/debug/index.php:3 msgid "Failed to clear cache!" -msgstr "" +msgstr "Falha ao limpar a cache!" #: application/views/debug/index.php:4 #, php-format msgid "Last version check: %s" -msgstr "" +msgstr "Última verificação da versão: %s" #: application/views/debug/index.php:5 msgid "Wavelog is up to date!" -msgstr "" +msgstr "Wavelog está atualizado!" #: application/views/debug/index.php:6 #, php-format msgid "There is a newer version available: %s" -msgstr "" +msgstr "Há uma versão mais recente disponível: %s" #: application/views/debug/index.php:7 msgid "The Remote Repository doesn't know your branch." -msgstr "" +msgstr "O repositório remoto não conhece o seu ramo." #: application/views/debug/index.php:32 msgid "Wavelog Information" @@ -10670,7 +10923,8 @@ msgstr "Sucesso" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Falhou" @@ -10750,107 +11004,121 @@ msgstr "Módulos" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Instalado" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Não instalado" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" -msgstr "" +msgstr "Informação da Cache" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" -msgstr "" +msgstr "Configuração atual" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" -msgstr "" +msgstr "Adaptador principal" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" -msgstr "" +msgstr "Adaptador de backup" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" -msgstr "" +msgstr "Caminho para o adaptador %s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "Prefixo chave" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" -msgstr "" +msgstr "Detalhes da Cache" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" -msgstr "" +msgstr "Tamanho Total" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" +msgstr "Número de chaves" + +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "A cache está a funcionar corretamente. Tudo bem!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." msgstr "" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" + +#: application/views/debug/index.php:526 msgid "Available Adapters" -msgstr "" - -#: application/views/debug/index.php:496 -msgid "Clear Cache" -msgstr "" +msgstr "Adaptadores Disponíveis" #: application/views/debug/index.php:543 +msgid "Clear Cache" +msgstr "Limpar a cache" + +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Informação do Git" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Ramo" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/d" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Último Fetch" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Verifica se há uma nova versão" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10858,77 +11126,77 @@ msgstr "Verifica se há uma nova versão" msgid "Update now" msgstr "Atualizar agora" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Data de transferência do ficheiro" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Ficheiro" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Última atualização" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "Atualização do DXCC via Club Log" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Atualização" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Descarregar ficheiro DOK" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "Descarregamento dos utilizadores de LoTW" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "Descarregamento do ficheiro POTA" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "Descarregamento de ficheiros SCP" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "Descarregamento do ficheiro SOTA" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "Descarregamento do ficheiro WWFF" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "Atualização de TLE" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Atualização dos Hams que estão nas notas" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" -msgstr "" +msgstr "Grelhas VUCC" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Manutenção da QSO-DB" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -10938,144 +11206,144 @@ 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:737 +#: application/views/debug/index.php:784 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:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Localização do objetivo" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Reatribuir" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 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:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Tudo ok" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albanês" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Arménio" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bósnio" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Búlgaro" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Chinês (simplificado)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Croata" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Checo" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Holandês" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Inglês" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estoniano" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Finlandês" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Francês" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Alemão" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Grego" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Húngaro" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japonês" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Letão" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Lituano" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Montenegrino" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polaco" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Português" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Sérvio" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Eslovaco" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Esloveno" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Espanhol" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turco" @@ -11138,7 +11406,7 @@ msgstr "" "Apenas os contactos com um quadrado de grelha definido serão exportados!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "Informação QSL" @@ -11385,7 +11653,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "Mensagem QSL" @@ -11522,31 +11790,32 @@ msgid "QSL Date" msgstr "Data QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Vista" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Vazio" @@ -11636,7 +11905,7 @@ msgstr "Os contactos são marcados como exportados para o logbook do HRDLog ." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Editar contacto" @@ -11748,154 +12017,155 @@ msgstr "Não foram encontradas notas" #: application/views/interface_assets/footer.php:73 msgid "No notes for this callsign" -msgstr "" +msgstr "Sem notas para este indicativo de chamada" #: application/views/interface_assets/footer.php:74 msgid "Callsign Note" -msgstr "" +msgstr "Nota do indicativo" #: application/views/interface_assets/footer.php:75 msgid "Note deleted successfully" -msgstr "" +msgstr "Nota eliminada com sucesso" #: application/views/interface_assets/footer.php:76 msgid "Note created successfully" -msgstr "" +msgstr "Nota criada com sucesso" #: application/views/interface_assets/footer.php:77 msgid "Note saved successfully" -msgstr "" +msgstr "Nota guardada com sucesso" #: application/views/interface_assets/footer.php:78 msgid "Error saving note" -msgstr "" +msgstr "Erro ao guardar nota" #: application/views/interface_assets/footer.php:79 #, php-format msgid "QSO with %s by %s was added to logbook." -msgstr "" +msgstr "QSO com %s por %s foi adicionado ao livro de registos." #: application/views/interface_assets/footer.php:80 msgid "QSO Added to Backlog" -msgstr "" +msgstr "QSO adicionado ao backlog" #: application/views/interface_assets/footer.php:81 #, php-format msgid "Send email to %s" -msgstr "" +msgstr "Enviar e-mail para %s" #: application/views/interface_assets/footer.php:82 msgid "" "Callsign was already worked and confirmed in the past on this band and mode!" msgstr "" +"O indicativo já foi trabalhado e confirmado no passado nesta banda e modo!" #: application/views/interface_assets/footer.php:83 msgid "Callsign was already worked in the past on this band and mode!" -msgstr "" +msgstr "O indicativo já foi trabalhado no passado nesta banda e modo!" #: application/views/interface_assets/footer.php:84 msgid "New Callsign!" -msgstr "" +msgstr "Novo indicativo!" #: application/views/interface_assets/footer.php:85 msgid "Grid was already worked and confirmed in the past" -msgstr "" +msgstr "A quadrícula já foi trabalhada e confirmada no passado" #: application/views/interface_assets/footer.php:86 msgid "Grid was already worked in the past" -msgstr "" +msgstr "A grelha já foi trabalhada no passado" #: application/views/interface_assets/footer.php:87 msgid "New grid!" -msgstr "" +msgstr "Nova grelha!" #: application/views/interface_assets/footer.php:88 msgid "Are you sure to delete Fav?" -msgstr "" +msgstr "Tem a certeza de que quer eliminar Favorito?" #: application/views/interface_assets/footer.php:89 msgid "" "DXCC was already worked and confirmed in the past on this band and mode!" -msgstr "" +msgstr "O DXCC já foi trabalhado e confirmado no passado nesta banda e modo!" #: application/views/interface_assets/footer.php:90 msgid "DXCC was already worked in the past on this band and mode!" -msgstr "" +msgstr "DXCC já foi trabalhado no passado nesta banda e modo!" #: application/views/interface_assets/footer.php:91 msgid "New DXCC, not worked on this band and mode!" -msgstr "" +msgstr "Novo DXCC, não trabalhei nesta banda e modo!" #: application/views/interface_assets/footer.php:92 #, php-format msgid "Lookup %s info on %s" -msgstr "" +msgstr "Procurar informações %s sobre %s" #: application/views/interface_assets/footer.php:93 #, php-format msgid "Lookup %s summit info on %s" -msgstr "" +msgstr "Procurar informações sobre o summit %s em %s" #: application/views/interface_assets/footer.php:94 #, php-format msgid "Lookup %s reference info on %s" -msgstr "" +msgstr "Consulte a referência %s em %s" #: application/views/interface_assets/footer.php:95 msgid "Error loading bearing!" -msgstr "" +msgstr "Erro ao carregar a direcção!" #: application/views/interface_assets/footer.php:96 msgid "Aliases" -msgstr "" +msgstr "Apelidos" #: application/views/interface_assets/footer.php:97 msgid "Previously" -msgstr "" +msgstr "Anteriormente" #: application/views/interface_assets/footer.php:98 msgid "Born" -msgstr "" +msgstr "Nascido" #: application/views/interface_assets/footer.php:99 msgid "years old" -msgstr "" +msgstr "anos de idade" #: application/views/interface_assets/footer.php:100 msgid "License" -msgstr "" +msgstr "Licença" #: application/views/interface_assets/footer.php:101 msgid "from" -msgstr "" +msgstr "de" #: application/views/interface_assets/footer.php:102 msgid "years" -msgstr "" +msgstr "anos" #: application/views/interface_assets/footer.php:103 msgid "expired on" -msgstr "" +msgstr "expirou em" #: application/views/interface_assets/footer.php:104 msgid "Website" -msgstr "" +msgstr "Website" #: application/views/interface_assets/footer.php:105 msgid "Local time" -msgstr "" +msgstr "Hora local" #: application/views/interface_assets/footer.php:107 msgid "View location on Google Maps (Satellite)" -msgstr "" +msgstr "Ver local no Google Maps (Satélite)" #: application/views/interface_assets/footer.php:108 msgid "Novice" -msgstr "" +msgstr "Novato" #: application/views/interface_assets/footer.php:109 msgid "Technician" -msgstr "" +msgstr "Técnico" #: application/views/interface_assets/footer.php:111 #: application/views/interface_assets/header.php:117 @@ -11904,110 +12174,122 @@ msgstr "Avançado" #: application/views/interface_assets/footer.php:112 msgid "Extra" -msgstr "" +msgstr "Extra" #: application/views/interface_assets/footer.php:113 msgid "Gridsquare Formatting" -msgstr "" +msgstr "Formatação de quadrícula" #: application/views/interface_assets/footer.php:114 msgid "" "Enter multiple (4-digit) grids separated with commas. For example: IO77,IO78" msgstr "" +"Digite várias grelhas (4 dígitos) separadas por vírgulas. Por exemplo: IO77," +"IO78" #: application/views/interface_assets/footer.php:115 msgid "live" -msgstr "" +msgstr "ao vivo" #: application/views/interface_assets/footer.php:116 msgid "polling" -msgstr "" +msgstr "a buscar" #: application/views/interface_assets/footer.php:117 msgid "" "Note: Periodic polling is slow. When operating locally, WebSockets are a " "more convenient way to control your radio in real-time." msgstr "" +"Nota: A busca periódica é lenta. Ao operar localmente, os WebSockets são uma " +"forma mais conveniente de controlar o seu rádio em tempo real." #: application/views/interface_assets/footer.php:118 msgid "TX" -msgstr "" +msgstr "TX" #: application/views/interface_assets/footer.php:119 msgid "RX" -msgstr "" +msgstr "RX" #: application/views/interface_assets/footer.php:120 msgid "TX/RX" -msgstr "" +msgstr "TX/RX" #: application/views/interface_assets/footer.php:122 msgid "Power" -msgstr "" +msgstr "Potência" #: application/views/interface_assets/footer.php:123 msgid "Radio connection error" -msgstr "" +msgstr "Erro de conexão do rádio" #: application/views/interface_assets/footer.php:124 msgid "Connection lost, please select another radio." -msgstr "" +msgstr "Conexão perdida, por favor, selecione outro rádio." #: application/views/interface_assets/footer.php:125 msgid "Radio connection timeout" -msgstr "" +msgstr "Tempo de ligação de rádio esgotado" #: application/views/interface_assets/footer.php:126 msgid "Data is stale, please select another radio." -msgstr "" +msgstr "Os dados estão obsoletos, por favor selecione outro rádio." #: application/views/interface_assets/footer.php:127 msgid "You're not logged in. Please log in." -msgstr "" +msgstr "Você não está autenticado. Por favor, faça o login." #: application/views/interface_assets/footer.php:128 msgid "Radio Tuning Failed" -msgstr "" +msgstr "Falha na Sintonização do Rádio" #: application/views/interface_assets/footer.php:129 msgid "Failed to tune radio to" -msgstr "" +msgstr "Falha ao sintonizar o rádio em" #: application/views/interface_assets/footer.php:130 msgid "CAT interface not responding. Please check your radio connection." msgstr "" +"A interface CAT não está a responder. Por favor, verifica a ligação do seu " +"rádio." #: application/views/interface_assets/footer.php:131 msgid "No CAT URL configured for this radio" -msgstr "" +msgstr "Nenhum URL CAT configurado para este rádio" #: application/views/interface_assets/footer.php:132 msgid "WebSocket Radio" -msgstr "" +msgstr "Rádio WebSocket" #: application/views/interface_assets/footer.php:133 msgid "Location is fetched from provided gridsquare" -msgstr "" +msgstr "A localização é obtida a partir da quadrícula fornecida" #: application/views/interface_assets/footer.php:134 msgid "Location is fetched from DXCC coordinates (no gridsquare provided)" msgstr "" +"A localização é obtida a partir das coordenadas DXCC (sem quadrícula " +"fornecida)" #: application/views/interface_assets/footer.php:137 msgid "Working without CAT connection" -msgstr "" +msgstr "Trabalhar sem ligação CAT" #: application/views/interface_assets/footer.php:138 msgid "" "CAT connection is currently disabled. Enable CAT connection to work in " "online mode with your radio." msgstr "" +"A ligação CAT está atualmente desativada. Ative a ligação CAT para trabalhar " +"em modo online com o seu rádio." #: application/views/interface_assets/footer.php:139 msgid "" "To connect your radio to Wavelog, visit the Wavelog Wiki for setup " "instructions." msgstr "" +"Para ligar o seu rádio ao Wavelog, visite o Wavelog Wiki para instruções de " +"configuração." #: application/views/interface_assets/footer.php:223 #: application/views/interface_assets/header.php:547 @@ -12020,77 +12302,77 @@ msgstr "Informação da Versão" msgid "Failed to load the modal. Please try again." msgstr "Falha ao carregar o modal. Por favor, tente novamente." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Descrição:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Descrição da consulta" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "A sua consulta foi guardada!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Editar consultas" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Consultas guardadas:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Executar Consulta" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Consultas Guardadas" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 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:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Exportar para ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Abrir no Logbook Avançado" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 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:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "A consulta armazenada foi eliminada!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 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:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "A descrição da consulta foi atualizada!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 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:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12100,15 +12382,15 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Quantidade: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Grelhas: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12116,57 +12398,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Gridsquares" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" +"Falha na procura de localização. Por favor, verifique a consola do navegador." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "quadrícula" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Número total" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "Cartão QSL para " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 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:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "Cartão eQSL" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "Cartão eQSL para " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "Ficheiro de imagem QSL" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Frente do Cartão QSL:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Parte traseira do Cartão QSL:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Adicionar QSOs adicionais a um Cartão QSL" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Algo correu mal. Por favor, tente novamente!" @@ -12289,7 +12576,7 @@ msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:268 msgid "Poland" -msgstr "" +msgstr "Polónia" #: application/views/interface_assets/header.php:274 msgid "Switzerland" @@ -12320,7 +12607,7 @@ msgid "Satellite Pass" msgstr "Passagem de Satélite" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Administrador" @@ -12345,7 +12632,7 @@ msgid "Log" msgstr "Log" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12427,22 +12714,22 @@ msgstr "Exportação DCL" #: application/views/interface_assets/header.php:537 msgid "Internal tools" -msgstr "" +msgstr "Ferramentas internas" #: application/views/interface_assets/header.php:539 msgid "Callsign DXCC checker" -msgstr "" +msgstr "Checker de indicativos DXCC" #: application/views/interface_assets/header.php:540 msgid "GeoJSON QSO Map" -msgstr "" +msgstr "Mapa de QSO em GeoJSON" #: application/views/interface_assets/header.php:541 msgid "Gridsquare Zone checker" -msgstr "" +msgstr "Checker de zona de quadrícula" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Ajuda" @@ -12577,7 +12864,7 @@ msgid "Total height of one label" msgstr "Altura total de uma etiqueta" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Tamanho da letra" @@ -12638,14 +12925,14 @@ msgstr "Orientação do papel" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Paisagem" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Retrato" @@ -12664,47 +12951,52 @@ msgstr "" "escolher algo com significado, talvez o estilo da etiqueta." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Marcar QSL como impressa" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Imprimir" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Criar novo tipo de etiqueta" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Criar novo tipo de papel" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Tipos de papel" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Largura" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Altura" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Utilizado por etiquetas" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Orientação" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Tipos de etiquetas" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12712,76 +13004,90 @@ msgstr "Tipos de etiquetas" msgid "QSOs" msgstr "Contactos" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Usar para impressão" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Nenhum papel atribuído" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Etiquetas de cartões QSL pendentes" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "Contactos à espera" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Ver contactos" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Incluir grelha?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Incluir referência? (SIG, SOTA, POTA, IOTA, WWFF; se disponível no local)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Incluir via (se preenchido)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Incluir QSLMSG (se preenchido)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Incluir mensagem TNX?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Iniciar a impressão em?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " "data." msgstr "" +"Se um QSO tiver um localizador de 4 caracteres (por exemplo, JO90), tenta " +"refiná-lo usando dados do callbook." #: application/views/logbookadvanced/callbookdialog.php:6 msgid "" "We’ll keep the original value and add a more precise locator (e.g., JO90AB " "or JO90AB12) when a match is confident." msgstr "" +"Manteremos o valor original e adicionaremos um localizador mais preciso (por " +"exemplo, JO90AB ou JO90AB12) quando houver confiança na correspondência." #: application/views/logbookadvanced/checkresult.php:42 msgid "Distance Check Results" -msgstr "" +msgstr "Resultados da Verificação de Distância" #: application/views/logbookadvanced/checkresult.php:43 #: application/views/logbookadvanced/checkresult.php:59 #: application/views/logbookadvanced/checkresult.php:75 msgid "QSOs to update found:" -msgstr "" +msgstr "QSOs para atualizar encontrados:" #: application/views/logbookadvanced/checkresult.php:46 #: application/views/logbookadvanced/distancedialog.php:2 @@ -12790,89 +13096,100 @@ msgid "" "station profile, and the gridsquare of the QSO partner. Distance will be " "calculated based on if short path or long path is set." msgstr "" +"Atualize todos os QSOs com a distância baseada no seu gridsquare definido no " +"perfil da estação, e no gridsquare do parceiro de QSO. A distância será " +"calculada com base se o caminho curto ou caminho longo estiver definido." #: application/views/logbookadvanced/checkresult.php:47 #: application/views/logbookadvanced/distancedialog.php:3 msgid "This is useful if you have imported QSOs without distance information." -msgstr "" +msgstr "Isso é útil se importou QSOs sem informações de distância." #: application/views/logbookadvanced/checkresult.php:48 #: application/views/logbookadvanced/distancedialog.php:4 msgid "Update will only set the distance for QSOs where the distance is empty." msgstr "" +"A atualização só definirá a distância para QSOs onde a distância estiver " +"vazia." #: application/views/logbookadvanced/checkresult.php:58 msgid "Continent Check Results" -msgstr "" +msgstr "Resultados da Verificação do Continente" #: application/views/logbookadvanced/checkresult.php:62 #: application/views/logbookadvanced/continentdialog.php:2 msgid "" "Update all QSOs with the continent based on the DXCC country of the QSO." -msgstr "" +msgstr "Atualizar todos os QSOs com o continente com base no país DXCC do QSO." #: application/views/logbookadvanced/checkresult.php:63 #: application/views/logbookadvanced/continentdialog.php:3 msgid "This is useful if you have imported QSOs without continent information." -msgstr "" +msgstr "Isto é útil se tiver importado QSOs sem informação sobre o continente." #: application/views/logbookadvanced/checkresult.php:64 #: application/views/logbookadvanced/continentdialog.php:4 msgid "" "Update will only set the continent for QSOs where the continent is empty." msgstr "" +"A atualização apenas definirá o continente para QSOs onde o continente " +"estiver vazio." #: application/views/logbookadvanced/checkresult.php:74 #: application/views/logbookadvanced/checkresult.php:146 msgid "Gridsquare Check Results" -msgstr "" +msgstr "Resultados da Verificação do Grid Square" #: application/views/logbookadvanced/checkresult.php:83 msgid "DXCC Check Results" -msgstr "" +msgstr "Resultados da Verificação do DXCC" #: application/views/logbookadvanced/checkresult.php:92 #: application/views/logbookadvanced/checkresult.php:234 #: application/views/logbookadvanced/checkresult.php:310 msgid "Update selected" -msgstr "" +msgstr "Atualização selecionada" #: application/views/logbookadvanced/checkresult.php:153 msgid "These QSOs MAY have incorrect gridsquares." -msgstr "" +msgstr "Estes QSOs PODEM ter quadrículas incorretas." #: application/views/logbookadvanced/checkresult.php:154 msgid "" "Results depends on the correct DXCC. The gridsquare list comes from the TQSL " "gridsquare database." msgstr "" +"Os resultados dependem do DXCC correto. A lista de gridsquare vem da base de " +"dados de gridsquare do TQSL." #: application/views/logbookadvanced/checkresult.php:167 msgid "DXCC Gridsquare" -msgstr "" +msgstr "Quadrícula do DXCC" #: application/views/logbookadvanced/checkresult.php:191 #: application/views/logbookadvanced/index.php:77 msgid "Show more" -msgstr "" +msgstr "Mostrar mais" #: application/views/logbookadvanced/checkresult.php:197 msgid "View on map" -msgstr "" +msgstr "Ver no mapa" #: application/views/logbookadvanced/checkresult.php:222 msgid "CQ Zone Check Results" -msgstr "" +msgstr "Resultados da verificação da zona CQ" #: application/views/logbookadvanced/checkresult.php:224 msgid "" "The following QSOs were found to have a different CQ zone compared to what " "this DXCC normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"Os seguintes QSOs foram encontrados com uma zona CQ diferente da que este " +"DXCC normalmente tem (um máximo de 5000 QSOs são mostrados):" #: application/views/logbookadvanced/checkresult.php:229 msgid "Force update even if DXCC covers multiple CQ zones" -msgstr "" +msgstr "Forçar a actualização mesmo que DXCC cubra várias zonas CQ" #: application/views/logbookadvanced/checkresult.php:230 msgid "" @@ -12882,6 +13199,11 @@ msgid "" "are updated. This checkbox overrides this but might result in wrong data. " "Use with caution!" msgstr "" +"A função de atualização só pode definir a zona CQ principal que é atribuída " +"ao DXCC. Se o DXCC abranger várias zonas CQ, há uma hipótese de que isto não " +"esteja correto. Por padrão, apenas QSOs com DXCCs que cobrem uma única zona " +"CQ são atualizados. Esta caixa de seleção sobrepõe isto, mas pode resultar " +"em dados incorretos. Use com cuidado!" #: application/views/logbookadvanced/checkresult.php:247 msgid "DXCC CQ Zone" @@ -12899,21 +13221,21 @@ msgstr "Zona CQ DXCC" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Estação" @@ -12924,17 +13246,19 @@ msgstr "Não foram encontradas Zonas CQ incorretas." #: application/views/logbookadvanced/checkresult.php:298 msgid "ITU Zone Check Results" -msgstr "" +msgstr "Resultados da Verificação da Zona ITU" #: application/views/logbookadvanced/checkresult.php:300 msgid "" "The following QSOs were found to have a different ITU zone compared to what " "this DXCC normally has (a maximum of 5000 QSOs are shown):" msgstr "" +"Os seguintes QSOs foram encontrados com uma zona ITU diferente daquela que " +"este DXCC normalmente tem (um máximo de 5000 QSOs são mostrados):" #: application/views/logbookadvanced/checkresult.php:305 msgid "Force update even if DXCC covers multiple ITU zones" -msgstr "" +msgstr "Forçar atualização mesmo que o DXCC cubra múltiplas zonas ITU" #: application/views/logbookadvanced/checkresult.php:306 msgid "" @@ -12944,6 +13268,11 @@ msgid "" "are updated. This checkbox overrides this but might result in wrong data. " "Use with caution!" msgstr "" +"A função de atualização só pode definir a zona CQ principal que é atribuída " +"ao DXCC. Se o DXCC abranger várias zonas CQ, há uma hipótese de que isto não " +"esteja correto. Por padrão, apenas QSOs com DXCCs que cobrem uma única zona " +"CQ são atualizados. Esta caixa de seleção sobrepõe isto, mas pode resultar " +"em dados incorretos. Use com cuidado!" #: application/views/logbookadvanced/checkresult.php:323 msgid "DXCC ITU Zone" @@ -12951,144 +13280,152 @@ msgstr "DXCC da zona ITU" #: application/views/logbookadvanced/checkresult.php:374 msgid "IOTA Check Results" -msgstr "" +msgstr "Resultados do Check IOTA" #: application/views/logbookadvanced/checkresult.php:381 msgid "These QSOs MAY have an incorrect IOTA reference." -msgstr "" +msgstr "Esses QSOs PODEM ter uma referência IOTA incorreta." #: application/views/logbookadvanced/checkresult.php:382 msgid "" "Results depends on the correct DXCC, and it will only be checked against " "current DXCC. False positive results may occur." msgstr "" +"Os resultados dependem do DXCC correto, e só será verificado em relação ao " +"DXCC atual. Podem ocorrer falsos positivos." #: application/views/logbookadvanced/checkresult.php:393 msgid "QSO DXCC" -msgstr "" +msgstr "QSO DXCC" #: application/views/logbookadvanced/checkresult.php:395 msgid "IOTA DXCC" -msgstr "" +msgstr "IOTA DXCC" #: application/views/logbookadvanced/dbtoolsdialog.php:4 msgid "Data Repair Tools" -msgstr "" +msgstr "Ferramentas de Reparo de Dados" #: application/views/logbookadvanced/dbtoolsdialog.php:6 msgid "Wiki Help" -msgstr "" +msgstr "Ajuda da Wiki" #: application/views/logbookadvanced/dbtoolsdialog.php:8 msgid "" "Warning. This tool can be dangerous to your data, and should only be used if " "you know what you are doing." msgstr "" +"Aviso. Esta ferramenta pode ser perigosa para os seus dados, e só deve ser " +"usada se souber o que está a fazer." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Todas as Localizações das Estações" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:13 -msgid "Use Wavelog to determine CQ Zone for all QSOs." -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 -msgid "Check" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:23 -msgid "Check all QSOs in the logbook for incorrect ITU Zones" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:24 -msgid "Use Wavelog to determine ITU Zone for all QSOs." -msgstr "" +msgstr "Verifica todos os QSOs no logbook para zonas CQ incorretas" #: application/views/logbookadvanced/dbtoolsdialog.php:34 -msgid "Check Gridsquares" -msgstr "" +msgid "Use Wavelog to determine CQ Zone for all QSOs." +msgstr "Use o Wavelog para determinar a CQ Zone para todos os QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:35 -msgid "Check gridsquares that does not match the DXCC" -msgstr "" +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 +msgid "Check" +msgstr "Verificar" + +#: application/views/logbookadvanced/dbtoolsdialog.php:44 +msgid "Check all QSOs in the logbook for incorrect ITU Zones" +msgstr "Verifique todos os QSOs no logbook para zonas ITU incorretas" #: application/views/logbookadvanced/dbtoolsdialog.php:45 +msgid "Use Wavelog to determine ITU Zone for all QSOs." +msgstr "Use o Wavelog para determinar a Zona ITU para todos os QSOs." + +#: application/views/logbookadvanced/dbtoolsdialog.php:55 +msgid "Check Gridsquares" +msgstr "Verificar Locators" + +#: application/views/logbookadvanced/dbtoolsdialog.php:56 +msgid "Check gridsquares that does not match the DXCC" +msgstr "Verificar os gridsquares que não correspondem ao DXCC" + +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:46 -msgid "Update missing or incorrect continent information" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:57 -msgid "Update missing state/province information" -msgstr "" +msgstr "Arranja Continente" #: application/views/logbookadvanced/dbtoolsdialog.php:67 -#: application/views/logbookadvanced/index.php:68 -msgid "Update Distances" -msgstr "" - -#: application/views/logbookadvanced/dbtoolsdialog.php:68 -msgid "Calculate and update distance information for QSOs" -msgstr "" +msgid "Update missing or incorrect continent information" +msgstr "Atualizar informações de continente ausentes ou incorretas" #: application/views/logbookadvanced/dbtoolsdialog.php:78 +msgid "Update missing state/province information" +msgstr "Atualizar informações não exactas de estado/província" + +#: application/views/logbookadvanced/dbtoolsdialog.php:88 +#: application/views/logbookadvanced/index.php:68 +msgid "Update Distances" +msgstr "Atualizar Distâncias" + +#: application/views/logbookadvanced/dbtoolsdialog.php:89 +msgid "Calculate and update distance information for QSOs" +msgstr "Calcular e atualizar informações de distância para QSOs" + +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" -msgstr "" +msgstr "Verifique todos os QSOs no logbook para DXCC incorreto" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." -msgstr "" +msgstr "Use o Wavelog para determinar o DXCC para todos os QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" -msgstr "" +msgstr "Procurar QSOs com grelha em falta no callbook" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" -msgstr "" +msgstr "Use a pesquisa do callbook para definir o locator" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" -msgstr "" +msgstr "Isto é limitado a 150 indicativos de chamada para cada execução!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" -msgstr "" +msgstr "Verificar IOTA contra DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" -msgstr "" +msgstr "Use o Wavelog para verificar o IOTA em relação ao DXCC" #: application/views/logbookadvanced/dupesearchdialog.php:4 msgid "Search for duplicates using:" -msgstr "" +msgstr "Procurar duplicados usando:" #: application/views/logbookadvanced/dupesearchdialog.php:16 msgid "Match QSOs within 1800s (30min) of each other" -msgstr "" +msgstr "Combine QSOs até 1800s (30min) entre si" #: application/views/logbookadvanced/dupesearchdialog.php:25 msgid "Match QSOs with the same mode (SSB, CW, FM, etc.)" -msgstr "" +msgstr "Combine QSOs com o mesmo modo (SSB, CW, FM, etc.)" #: application/views/logbookadvanced/dupesearchdialog.php:34 msgid "Match QSOs on the same band" -msgstr "" +msgstr "Combine QSOs na mesma banda" #: application/views/logbookadvanced/dupesearchdialog.php:43 msgid "Match QSOs using the same satellite" -msgstr "" +msgstr "Combine QSOs com o mesmo satélite" #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" @@ -13108,13 +13445,13 @@ msgstr "Potência da estação" #: application/views/logbookadvanced/edit.php:25 msgid "DARC DOK" -msgstr "" +msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Região" @@ -13183,9 +13520,9 @@ msgid "QSL Sent Method" msgstr "Método de envio de QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL via" @@ -13209,84 +13546,84 @@ msgstr "Banda RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Inválido" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Verificado" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Direto" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Eletrónico" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13450,79 +13787,80 @@ msgstr "Ajuda Avançada do logbook" #: application/views/logbookadvanced/index.php:24 msgid "Continent fix" -msgstr "" +msgstr "Correção de continente" #: application/views/logbookadvanced/index.php:25 msgid "There was a problem fixing ITU Zones." -msgstr "" +msgstr "Houve um problema ao corrigir as Zonas ITU." #: application/views/logbookadvanced/index.php:26 msgid "There was a problem fixing CQ Zones." -msgstr "" +msgstr "Houve um problema ao corrigir as Zonas CQ." #: application/views/logbookadvanced/index.php:27 msgid "ITU Zones updated successfully!" -msgstr "" +msgstr "Zonas ITU atualizadas com sucesso!" #: application/views/logbookadvanced/index.php:28 msgid "CQ Zones updated successfully!" -msgstr "" +msgstr "Zonas CQ atualizadas com sucesso!" #: application/views/logbookadvanced/index.php:29 msgid "You need to select at least 1 row to fix ITU Zones!" msgstr "" +"Você precisa selecionar pelo menos 1 linha para corrigir as Zonas da ITU!" #: application/views/logbookadvanced/index.php:30 msgid "You need to select at least 1 row to fix CQ Zones!" -msgstr "" +msgstr "Tem de selecionar pelo menos 1 linha para corrigir as Zonas CQ!" #: application/views/logbookadvanced/index.php:31 msgid "You need to select at least 1 row to fix State!" -msgstr "" +msgstr "É necessário selecionar pelo menos 1 linha para corrigir o estado!" #: application/views/logbookadvanced/index.php:32 msgid "State updated successfully!" -msgstr "" +msgstr "Estado atualizado com sucesso!" #: application/views/logbookadvanced/index.php:33 msgid "There was a problem fixing State." -msgstr "" +msgstr "Houve um problema ao resolver o Estado." #: application/views/logbookadvanced/index.php:34 msgid "Fixing State" -msgstr "" +msgstr "Corrigindo o Estado" #: application/views/logbookadvanced/index.php:35 #, php-format msgid "Fixing State (%s QSOs)" -msgstr "" +msgstr "Consertar Estado (%s QSOs)" #: application/views/logbookadvanced/index.php:36 #, php-format msgid "Fixing State: %s remaining" -msgstr "" +msgstr "Corrigir Estado: %s restantes" #: application/views/logbookadvanced/index.php:37 msgid "Fixed" -msgstr "" +msgstr "Reparado" #: application/views/logbookadvanced/index.php:38 #, php-format msgid "Fixed: %s" -msgstr "" +msgstr "Reparado: %s" #: application/views/logbookadvanced/index.php:39 msgid "Skipped" -msgstr "" +msgstr "Ignorado" #: application/views/logbookadvanced/index.php:40 #, php-format msgid "Skipped: %s, see details for skipped rows below" -msgstr "" +msgstr "Ignorado: %s, veja os detalhes das linhas ignoradas abaixo" #: application/views/logbookadvanced/index.php:41 msgid "State Fix Complete" -msgstr "" +msgstr "Conclusão da Correção de Estado" #: application/views/logbookadvanced/index.php:42 #, php-format @@ -13531,68 +13869,73 @@ msgid "" "countries, please create a ticket at %s with the GeoJSON file and desired " "letter coding for your country." msgstr "" +"Nem todas as entidades DXCC têm suporte estadual. Se precisares de suporte " +"para países adicionais, cria um ticket em %s com o ficheiro GeoJSON e a " +"codificação de letras desejada para o teu país." #: application/views/logbookadvanced/index.php:45 msgid "Only 1 row can be selected for Quickfilter!" -msgstr "" +msgstr "Apenas 1 linha pode ser selecionada para Filtro Rápido!" #: application/views/logbookadvanced/index.php:46 msgid "You need to select a row to use the Quickfilters!" -msgstr "" +msgstr "Tem de selecionar uma linha para usar os Filtros Rápidos!" #: application/views/logbookadvanced/index.php:47 msgid "You need to select a least 1 row to display a QSL card!" -msgstr "" +msgstr "Precisa de selecionar pelo menos 1 linha para exibir um cartão QSL!" #: application/views/logbookadvanced/index.php:48 msgid "Continents updated successfully!" -msgstr "" +msgstr "Continentes atualizados com sucesso!" #: application/views/logbookadvanced/index.php:49 msgid "There was a problem fixing Continents." -msgstr "" +msgstr "Houve um problema ao corrigir Continentes." #: application/views/logbookadvanced/index.php:51 msgid "SUCCESS" -msgstr "" +msgstr "ÊXITO" #: application/views/logbookadvanced/index.php:52 msgid "INFO" -msgstr "" +msgstr "INFO" #: application/views/logbookadvanced/index.php:58 msgid "Options for the Advanced Logbook" -msgstr "" +msgstr "Opções para o Livro de Registos Avançado" #: application/views/logbookadvanced/index.php:59 msgid "" "Something went wrong with label print. Go to labels and check if you have " "defined a label, and that it is set for print!" msgstr "" +"Algo correu mal com a impressão da etiqueta. Vá às etiquetas e verifique se " +"definiu uma etiqueta e se está configurada para imprimir!" #: application/views/logbookadvanced/index.php:60 msgid "You need to select a least 1 row!" -msgstr "" +msgstr "Você precisa selecionar pelo menos 1 linha!" #: application/views/logbookadvanced/index.php:61 msgid "Start printing at which label?" -msgstr "" +msgstr "Começar a imprimir em qual etiqueta?" #: application/views/logbookadvanced/index.php:62 msgid "You need to select at least 1 row to print a label!" -msgstr "" +msgstr "Você precisa selecionar pelo menos 1 linha para imprimir uma etiqueta!" #: application/views/logbookadvanced/index.php:63 msgid "An error occurred while saving options: " -msgstr "" +msgstr "Ocorreu um erro ao guardar as opções: " #: application/views/logbookadvanced/index.php:64 msgid "You need to select a least 1 row to delete!" -msgstr "" +msgstr "Precisa de selecionar pelo menos 1 linha para eliminar!" #: application/views/logbookadvanced/index.php:65 msgid "You need to select a least 1 row to update from callbook!" -msgstr "" +msgstr "É necessário selecionar pelo menos 1 linha para atualizar no callbook!" #: application/views/logbookadvanced/index.php:66 #: application/views/oqrs/showrequests.php:10 @@ -13601,112 +13944,132 @@ msgstr "Ocorreu um erro ao fazer o pedido" #: application/views/logbookadvanced/index.php:67 msgid "You need to select at least 1 location to do a search!" -msgstr "" +msgstr "Tem de selecionar pelo menos 1 local para fazer uma pesquisa!" #: application/views/logbookadvanced/index.php:69 msgid "QSO records updated." -msgstr "" +msgstr "Registros de QSO atualizados." #: application/views/logbookadvanced/index.php:70 msgid "There was a problem updating distances." -msgstr "" +msgstr "Houve um problema ao atualizar as distâncias." #: application/views/logbookadvanced/index.php:71 msgid "Distances updated successfully!" -msgstr "" +msgstr "Distâncias atualizadas com sucesso!" #: application/views/logbookadvanced/index.php:73 msgid "" "Are you sure you want to fix all QSOs with missing DXCC information? This " "action cannot be undone." msgstr "" +"Tens a certeza de que quer corrigir todos os QSOs com informação de DXCC em " +"falta? Esta ação não pode ser desfeita." #: application/views/logbookadvanced/index.php:74 msgid "Duplicate Search" -msgstr "" +msgstr "Pesquisa duplicada" #: application/views/logbookadvanced/index.php:78 msgid "Show less" -msgstr "" +msgstr "Mostrar menos" #: application/views/logbookadvanced/index.php:80 msgid "Gridsquares for" -msgstr "" +msgstr "Quadrículas para" #: application/views/logbookadvanced/index.php:81 msgid "Non DXCC matching gridsquare" -msgstr "" +msgstr "Quadrícula não coincidente com DXCC" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "De" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "Para" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Nenhum/Vazio" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "" +"Distância em quilómetros. A pesquisa procurará distâncias maiores ou iguais " +"a este valor." -#: application/views/logbookadvanced/index.php:513 -msgid "Sort column" +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Duração" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." msgstr "" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:523 +msgid "Sort column" +msgstr "Ordenar coluna" + +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "Hora do contacto" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" -msgstr "" +msgstr "QSO Modificado" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" -msgstr "" +msgstr "Ordenar direção" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" -msgstr "" +msgstr "Descendente" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" -msgstr "" - -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 -msgid "Apply filters" -msgstr "" +msgstr "Ascendente" #: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 +msgid "Apply filters" +msgstr "Aplicar filtros" + +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "Filtros QSL" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL enviada" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13723,32 +14086,32 @@ msgstr "QSL enviada" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "Em fila" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13777,280 +14140,280 @@ msgstr "Em fila" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Inválido (Ignorar)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL recebida" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "Método de envio de QSL" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "Método de receção de QSL" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW enviado" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW recebido" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog enviado" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog recebido" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL enviada" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL recebida" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL enviado" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL Recebido" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "Imagens QSL" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" -msgstr "" +msgstr "QRZ enviado" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" -msgstr "" +msgstr "QRZ recebido" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Filtros rápidos" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Pesquisa rápida com selecionado: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Procurar Data" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Pesquisar DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Pesquisar Estado" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Pesquisar quadrícula" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Pesquisar Zona CQ" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Pesquisar Zona ITU" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Pesquisar Modo" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Pesquisar Banda" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Pesquisar IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Pesquisar SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Pesquisar POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Pesquisar WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Pesquisar Operador" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" "Atenção! Tem a certeza de que pretende apagar o(s) contacto(s) marcado(s)?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " Contacto(s) vai ser apagado" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Com selecionado: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Atualização via Callbook" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "Fila de espera Bureau" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "Fila de espera Direto" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "Fila de espera Eletrónica" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Enviado (Bureau)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Enviado (Direto)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Enviado (Eletrónico)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Não enviado" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL não necessária" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Não recebida" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Recebido (Bureau)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Recebido (Direto)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Recebido (Eletrónico)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Criar ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Imprimir etiqueta" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "Apresentação de slides QSL" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Resultados" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplicados" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Mapa do globo" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" -msgstr "" +msgstr "Ferramentas de Banco de Dados" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" -msgstr "" +msgstr "Última modificação" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "Msg QSL (E)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "Msg QSL (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "As minhas referências" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Azi ant" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Azimute da antena" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Elev ant" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Elevação da antena" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Potência da estação" @@ -14072,30 +14435,31 @@ msgstr "Próximo" #: application/views/logbookadvanced/showMissingDxccQsos.php:14 #, php-format msgid "Found %s QSO(s) missing DXCC information." -msgstr "" +msgstr "Encontrado(s) %s QSO(s) sem informação DXCC." #: application/views/logbookadvanced/showMissingDxccQsos.php:47 #: application/views/logbookadvanced/showStateQsos.php:49 msgid "No Issues Found" -msgstr "" +msgstr "Nenhum problema encontrado" #: application/views/logbookadvanced/showStateQsos.php:16 #, php-format msgid "Found %s QSO(s) missing state information for DXCC %s." msgstr "" +"Foram encontrados %s QSO(s) com informação de estado em falta para DXCC %s." #: application/views/logbookadvanced/showUpdateResult.php:22 msgid "Results for state update:" -msgstr "" +msgstr "Resultados da atualização do estado:" #: application/views/logbookadvanced/showUpdateResult.php:24 #: application/views/logbookadvanced/showUpdateResult.php:26 msgid "The number of QSOs updated for state/province in" -msgstr "" +msgstr "O número de QSOs atualizado para o estado/província em" #: application/views/logbookadvanced/showUpdateResult.php:38 msgid "These QSOs could not be updated:" -msgstr "" +msgstr "Estes QSOs não puderam ser atualizados:" #: application/views/logbookadvanced/showUpdateResult.php:45 #: application/views/search/lotw_unconfirmed.php:26 @@ -14104,136 +14468,145 @@ msgstr "Localização da estação" #: application/views/logbookadvanced/showUpdateResult.php:46 msgid "Reason" -msgstr "" +msgstr "Razão" #: application/views/logbookadvanced/showUpdateResult.php:69 msgid "Results for continent update:" -msgstr "" +msgstr "Resultados da atualização do continente:" #: application/views/logbookadvanced/showUpdateResult.php:70 msgid "The number of QSOs updated for continent is" -msgstr "" +msgstr "O número de QSOs atualizado para o continente é" #: application/views/logbookadvanced/showUpdateResult.php:74 msgid "Results for distance update:" -msgstr "" +msgstr "Resultados para atualização de distância:" #: application/views/logbookadvanced/showUpdateResult.php:75 msgid "The number of QSOs updated for distance is" -msgstr "" +msgstr "O número de QSOs atualizado para a distância é" #: application/views/logbookadvanced/showUpdateResult.php:79 msgid "Results for gridsquare update:" -msgstr "" +msgstr "Resultados para a atualização do quadrado de grade:" #: application/views/logbookadvanced/showUpdateResult.php:80 msgid "The number of QSOs updated for gridsquare is" -msgstr "" +msgstr "O número de QSOs atualizado para a quadrícula é" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Incluir via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Incluir QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Incluir mensagem TNX" #: application/views/logbookadvanced/statecheckresult.php:3 #: application/views/logbookadvanced/statecheckresult.php:42 msgid "State Check Results" -msgstr "" +msgstr "Resultados da Verificação do Estado" #: application/views/logbookadvanced/statecheckresult.php:4 msgid "" "QSOs with missing state and gridsquares with 6 or more characters found for " "the following DXCCs:" msgstr "" +"QSOs com estado ausente e quadrículas com 6 ou mais caracteres encontrados " +"para os seguintes DXCCs:" #: application/views/logbookadvanced/statecheckresult.php:30 msgid "Run fix" -msgstr "" +msgstr "Executar correção" #: application/views/logbookadvanced/statecheckresult.php:43 msgid "No QSOs were found where state information can be fixed." msgstr "" +"Não foram encontrados QSOs onde a informação de estado possa ser corrigida." #: application/views/logbookadvanced/statedialog.php:2 msgid "" "Update QSOs with state/province information based on gridsquare and DXCC " "country." msgstr "" +"Atualizar QSOs com informações de estado/província com base no gridsquare e " +"país DXCC." #: application/views/logbookadvanced/statedialog.php:3 msgid "" "This feature uses GeoJSON boundary data to determine the state/province from " "the gridsquare locator." msgstr "" +"Este recurso utiliza dados de fronteira em GeoJSON para determinar o estado/" +"província a partir do localizador de quadrícula." #: application/views/logbookadvanced/statedialog.php:4 msgid "Update will only set the state for QSOs where:" -msgstr "" +msgstr "A atualização apenas definirá o estado para QSOs onde:" #: application/views/logbookadvanced/statedialog.php:6 msgid "The state field is empty" -msgstr "" +msgstr "O campo de estado está vazio" #: application/views/logbookadvanced/statedialog.php:7 msgid "A gridsquare is present (at least 6 characters)" -msgstr "" +msgstr "Uma quadrícula está presente (pelo menos 6 caracteres)" #: application/views/logbookadvanced/statedialog.php:8 msgid "The DXCC country supports state lookup" -msgstr "" +msgstr "O país DXCC suporta a pesquisa de estado" #: application/views/logbookadvanced/statedialog.php:10 msgid "Currently supported countries" -msgstr "" +msgstr "Atualmente, países suportados" #: application/views/logbookadvanced/useroptions.php:15 msgid "Basic QSO Information" -msgstr "" +msgstr "Informação Básica de QSO" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" -msgstr "" +msgstr "Detalhes da Estação" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" -msgstr "" +msgstr "Serviços de Confirmação" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" -msgstr "" +msgstr "Informação geográfica" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" -msgstr "" +msgstr "Programas de Prémios" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" -msgstr "" +msgstr "Informação adicional" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" -msgstr "" +msgstr "Detalhes técnicos" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" -msgstr "" +msgstr "Apenas para depuração" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" msgstr "" +"Isto destina-se apenas a fins de depuração e não está concebido para ser " +"exibido por defeito" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" -msgstr "" +msgstr "Camadas do Mapa" #: application/views/lookup/index.php:11 #: application/views/qso/award_tabs.php:53 @@ -14267,7 +14640,7 @@ msgstr "Não utilizador de LoTW" #: application/views/lookup/result.php:16 msgid "This gridsquare exists in the following DXCC(s):" -msgstr "" +msgstr "Esta quadrícula existe nos seguintes DXCC(s):" #: application/views/lotw/analysis.php:8 application/views/qrz/analysis.php:8 msgid "No data imported. please check selected date. Must be in the past!" @@ -14359,37 +14732,37 @@ msgid "Date Expires" msgstr "Data de expiração" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Último envio" #: application/views/lotw_views/index.php:95 msgid "Last change:" -msgstr "" +msgstr "Última mudança:" #: application/views/lotw_views/index.php:95 msgid "Serial number:" -msgstr "" +msgstr "Número de série:" #: application/views/lotw_views/index.php:97 msgid "Certificate superseded" -msgstr "" +msgstr "Certificado substituído" #: application/views/lotw_views/index.php:100 msgid "Certificate expired" -msgstr "" +msgstr "Certificado expirado" #: application/views/lotw_views/index.php:102 msgid "Certificate expiring" -msgstr "" +msgstr "Certificado a expirar" #: application/views/lotw_views/index.php:104 msgid "Certificate valid" -msgstr "" +msgstr "Certificado válido" #: application/views/lotw_views/index.php:109 msgid "QSO end date nearing" -msgstr "" +msgstr "A data de fim do QSO está a aproximar-se" #: application/views/lotw_views/index.php:121 #, php-format @@ -14421,14 +14794,15 @@ msgid "" "For further information please visit the %sLoTW FAQ page%s in the Wavelog " "Wiki" msgstr "" +"Para mais informações, visite a página %sLoTW FAQ page%s na Wavelog Wiki" #: application/views/map/qso_map.php:15 msgid "Select Country:" -msgstr "" +msgstr "Selecionar País:" #: application/views/map/qso_map.php:17 msgid "Choose a country..." -msgstr "" +msgstr "Escolha um país..." #: application/views/mode/create.php:24 application/views/mode/edit.php:33 msgctxt "Name of mode in ADIF-specification" @@ -14559,7 +14933,7 @@ msgstr "Pesquisar notas (mín. 3 carateres)" #: application/views/notes/main.php:54 msgid "Add stroked zero (Ø)" -msgstr "" +msgstr "Adiciona zero cortado (Ø)" #: application/views/notes/main.php:57 msgid "Reset search" @@ -15035,7 +15409,7 @@ msgstr "Há alguma informação adicional que seja necessário conhecer?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "E-mail" @@ -15052,11 +15426,11 @@ msgstr "Enviar não no pedido de logs" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Via" @@ -15067,7 +15441,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Adicionar à fila de impressão" @@ -15485,7 +15859,7 @@ msgstr "Marcar as QSLs pedidas como enviadas" msgid "No QSLs to print were found!" msgstr "Não foram encontradas QSLs para imprimir!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15563,7 +15937,7 @@ msgstr "A entrada WWFF precisa ser preenchida para mostrar um resumo!" #: application/views/qso/award_tabs.php:19 msgid "Propagation mode needs to be SAT to show a summary!" -msgstr "" +msgstr "O modo de propagação precisa ser 'SAT' para mostrar um resumo!" #: application/views/qso/award_tabs.php:20 msgid "Gridsquare input needs to be filled to show a summary!" @@ -15631,7 +16005,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Potência de Transmissão (W)" @@ -15693,9 +16067,9 @@ msgid "Station County" msgstr "Condado da Estação" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "Informação SIG" @@ -15743,7 +16117,7 @@ msgstr "Nota: Não editável. Apenas exibido aqui." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Modificado" @@ -15809,29 +16183,31 @@ msgstr "Valor inválido para a elevação da antena:" #: application/views/qso/index.php:39 msgid "Please wait before saving another QSO" -msgstr "" +msgstr "Por favor, espere antes de guardar outro QSO" #: application/views/qso/index.php:42 msgid "Satellite not found" -msgstr "" +msgstr "Satélite não encontrado" #: application/views/qso/index.php:43 msgid "Supported by LoTW" -msgstr "" +msgstr "Suportado pelo LoTW" #: application/views/qso/index.php:44 msgid "Not supported by LoTW" -msgstr "" +msgstr "Não é suportado pelo LoTW" #: application/views/qso/index.php:46 msgid "" "You have already filled in a callsign. First finish this QSO before filling " "the last spot from DXcluster." msgstr "" +"Já preencheu um indicativo. Primeiro termine este QSO antes de preencher o " +"último lugar do DXcluster." #: application/views/qso/index.php:47 msgid "No spots found in this frequency." -msgstr "" +msgstr "Nenhum spot encontrado nesta frequência." #: application/views/qso/index.php:93 msgid "LIVE" @@ -15866,16 +16242,16 @@ msgstr "Pesquisar DXCluster para o spot mais recente" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "Referência IOTA" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "Referência SOTA" @@ -15915,17 +16291,17 @@ msgstr "Por exemplo: Q03" msgid "E-mail address of QSO-partner" msgstr "Endereço de correio eletrónico do parceiro de contacto" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Nome do Satélite" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Modo Satélite" #: application/views/qso/index.php:708 msgid "QSO Note" -msgstr "" +msgstr "Nota de QSO" #: application/views/qso/index.php:751 msgid "QSL MSG" @@ -15937,13 +16313,15 @@ msgstr "Repor a predefinição" #: application/views/qso/index.php:787 msgid "Callsign Notes" -msgstr "" +msgstr "Notas de indicativo de chamada" #: application/views/qso/index.php:788 msgid "" "Store private information about your QSO partner. These notes are never " "shared or exported to external services." msgstr "" +"Armazene informações privadas sobre o seu parceiro de QSO. Estas notas nunca " +"são partilhadas ou exportadas para serviços externos." #: application/views/qso/index.php:837 msgid "Winkey" @@ -15983,13 +16361,15 @@ msgstr "Sugestões" #: application/views/qso/index.php:898 msgid "QSO Partner's Profile" -msgstr "" +msgstr "Perfil do Parceiro de QSO" #: application/views/qso/index.php:899 msgid "" "Profile picture and data fetched from third-party services. This information " "is not stored on your Wavelog instance." msgstr "" +"Imagem de perfil e dados obtidos de serviços de terceiros. Esta informação " +"não é armazenada na sua instância do Wavelog." #: application/views/qso/log_qso.php:9 msgid "Redirecting to QSO logging page..." @@ -16020,23 +16400,40 @@ msgstr "Rádios Ativos" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "Abaixo está uma lista de rádios activos que estão ligados ao Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." msgstr "" "Se ainda não ligou nenhum rádio, consulte a página API para gerar chaves API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Como operador de estação do clube, pode definir um rádio padrão que só se " +"aplica a si. Isto permite-lhe ter um rádio padrão que é automaticamente " +"selecionado quando faz login, enquanto ainda pode usar outros rádios se " +"quiser." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Como utilizador normal, pode definir um rádio padrão para si. Isso permite " +"que tenha um rádio padrão que é automaticamente selecionado quando faz " +"login, enquanto ainda tem a possibilidade de usar outros rádios se quiser." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Pode saber como utilizar as %s na wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Pode descobrir como usar as funções %sradio%s na wiki." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "funções do rádio" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Aguarde ..." @@ -16380,13 +16777,6 @@ msgstr "Tempo AOS" msgid "LOS Time" msgstr "Tempo LOS" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Duração" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Caminho" @@ -16504,6 +16894,11 @@ msgstr "Guardar consulta" msgid "Stored queries" msgstr "Consultas armazenadas" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Pode saber como utilizar as %s na wiki." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "funções de filtro de pesquisa" @@ -16564,7 +16959,7 @@ msgstr "" #: application/views/search/result.php:65 msgid "Source callbook" -msgstr "" +msgstr "Livro de chamadas fonte" #: application/views/search/search_result_ajax.php:463 #: application/views/view_log/partial/log.php:142 @@ -16581,35 +16976,35 @@ msgstr "Marcar QSL anviada (Direta)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Marcar QSL recebida (Bureau)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Marcar QSL recebida (Direto)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Marcar cartão QSL como solicitado (Bureau)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Marcar cartão QSL como solicitado (Direto)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Marcar QSL como não necessária" @@ -17161,7 +17556,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problemas? Verifique a %swiki%s." @@ -17377,7 +17772,7 @@ msgid "Link Location" msgstr "Conectar localização" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Nome do perfil" @@ -17392,20 +17787,24 @@ msgid "" "analytics. Great for when you're operating in multiple locations but they " "are part of the same DXCC or VUCC Circle." msgstr "" +"Os logbooks das estações permitem-lhe agrupar as localizações das estações, " +"o que lhe permite ver todas as localizações numa sessão, desde as áreas do " +"logbook até às analíticas. Ótimo para quando está a operar em várias " +"localizações mas estas fazem parte do mesmo DXCC ou VUCC Circle." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Editar localizações ligadas" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Site de visitantes" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Localizações das Estações" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17413,13 +17812,13 @@ msgstr "" "A “Station Locations” define os locais de operação, como o seu QTH, o QTH de " "um amigo ou uma estação portátil." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "Semelhante aos logbooks, um perfil de estação mantém um conjunto de " "contactos juntos." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17427,7 +17826,7 @@ msgstr "" "Apenas uma estação pode estar ativa de cada vez. Na tabela abaixo, isto é " "mostrado com o emblema -Active Station- (Estação ativa)." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17435,23 +17834,23 @@ msgstr "" "A coluna 'Conectado' mostra se a localização da estação está ligada ao " "logbook Ativo selecionado acima." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Criar uma localização de estação" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Mostre apenas locais do logbook activo" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Mostrar todas as localizações" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" -msgstr "" +msgstr "Mostra uma lista de locais" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17459,7 +17858,7 @@ msgstr "" "Atenção: É necessário definir uma localização de estação ativa. Aceda a " "Indicativo de chamada->Localização da estação para selecionar uma." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17467,23 +17866,23 @@ msgstr "" "Devido a alterações recentes no Wavelog, é necessário reatribuir contactos " "aos perfis da sua estação." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Manutenção" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Por favor, reatribua-os em " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Conectado" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Favorito" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "marcar/desmarcar como favorito" @@ -17524,7 +17923,7 @@ msgstr "Anos" #: application/views/statistics/index.php:15 #: application/views/statistics/index.php:99 msgid "Months" -msgstr "" +msgstr "Meses" #: application/views/statistics/index.php:19 msgid "Number of QSOs worked each year" @@ -17532,55 +17931,55 @@ msgstr "Número de contactos feitos em cada ano" #: application/views/statistics/index.php:20 msgid "Number of QSOs worked each month" -msgstr "" +msgstr "Número de QSOs realizados a cada mês" #: application/views/statistics/index.php:31 msgid "January" -msgstr "" +msgstr "Janeiro" #: application/views/statistics/index.php:32 msgid "February" -msgstr "" +msgstr "Fevereiro" #: application/views/statistics/index.php:33 msgid "March" -msgstr "" +msgstr "Março" #: application/views/statistics/index.php:34 msgid "April" -msgstr "" +msgstr "Abril" #: application/views/statistics/index.php:35 msgid "May" -msgstr "" +msgstr "Maio" #: application/views/statistics/index.php:36 msgid "June" -msgstr "" +msgstr "Junho" #: application/views/statistics/index.php:37 msgid "July" -msgstr "" +msgstr "Julho" #: application/views/statistics/index.php:38 msgid "August" -msgstr "" +msgstr "Agosto" #: application/views/statistics/index.php:39 msgid "September" -msgstr "" +msgstr "Setembro" #: application/views/statistics/index.php:40 msgid "October" -msgstr "" +msgstr "Outubro" #: application/views/statistics/index.php:41 msgid "November" -msgstr "" +msgstr "Novembro" #: application/views/statistics/index.php:42 msgid "December" -msgstr "" +msgstr "Dezembro" #: application/views/statistics/index.php:50 msgid "Explore the logbook." @@ -18013,7 +18412,7 @@ msgstr "" #: application/views/user/edit.php:376 msgid "Prioritize database search over external lookup" -msgstr "" +msgstr "Priorizar a pesquisa no banco de dados em vez da consulta externa" #: application/views/user/edit.php:382 msgid "" @@ -18021,6 +18420,9 @@ msgid "" "QSOs before querying external services. Set to \"No\" to always use external " "lookup services instead." msgstr "" +"Quando definido para \"Sim\", a pesquisa de indicativos usará primeiro os " +"dados dos seus QSOs anteriores antes de consultar serviços externos. Defina " +"para \"Não\" para usar sempre serviços de pesquisa externos." #: application/views/user/edit.php:386 msgid "" @@ -18072,15 +18474,17 @@ msgstr "Número de contactos anteriores exibidos na página de QSO." #: application/views/user/edit.php:447 msgid "DX Waterfall" -msgstr "" +msgstr "Cascata DX" #: application/views/user/edit.php:451 msgid "squelched" -msgstr "" +msgstr "Silenciado" #: application/views/user/edit.php:454 msgid "Show an interactive DX Cluster 'Waterfall' on the QSO logging page." msgstr "" +"Mostra uma 'Queda de Água' interativa do DX Cluster na página de registo de " +"QSO." #: application/views/user/edit.php:465 msgid "Menu Options" @@ -18156,7 +18560,7 @@ msgstr "Não exibido" #: application/views/user/edit.php:549 msgid "QSO (worked, not confirmed)" -msgstr "" +msgstr "QSO (trabalhado, não confirmado)" #: application/views/user/edit.php:568 msgid "QSO (confirmed)" @@ -18164,15 +18568,15 @@ msgstr "Contacto (confirmado)" #: application/views/user/edit.php:569 msgid "(If 'No', displayed as 'QSO (worked, not confirmed)')" -msgstr "" +msgstr "(Se 'Não', exibido como 'QSO (trabalhado, não confirmado)')" #: application/views/user/edit.php:588 msgid "Unworked (e.g. Zones)" -msgstr "" +msgstr "Não trabalhado (por exemplo, Zonas)" #: application/views/user/edit.php:589 msgid "(Color for unworked zones)" -msgstr "" +msgstr "(Cor para zonas não trabalhadas)" #: application/views/user/edit.php:599 msgid "Show Locator" @@ -18232,45 +18636,49 @@ msgstr "Isto altera a exibição dos dados solares e de propagação no painel." #: application/views/user/edit.php:689 msgid "Show Fields on QSO Tab" +msgstr "Mostrar Campos no separador QSO" + +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Os itens activados serão mostrados no separador de contacto em vez de no " "separador Geral." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Configurações de pedido de QSL online (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Texto global" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Este texto é um texto opcional que pode ser apresentado no topo da página do " "OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Pesquisa agrupada" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Desligado" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Ligado" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18278,11 +18686,11 @@ msgstr "" "Quando esta opção está activada, todos os locais de estações com OQRS ativo " "serão pesquisados de uma só vez." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Mostrar o nome do local da estação em resultados de pesquisa agrupada" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18290,11 +18698,11 @@ msgstr "" "Se a pesquisa agrupada estiver activada, pode decidir se o nome da " "localização da estação deve ser apresentado na tabela de resultados." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Correspondência automática OQRS" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18303,69 +18711,69 @@ msgstr "" "o sistema tentará corresponder automaticamente os pedidos recebidos com os " "registos log existentes." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Correspondência automática de OQRS para pedidos via direto" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Se isto estiver ativado, a correspondência automática de OQRS para pedidos " "via direto acontecerá." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Valores por defeito" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Definições para banda predefinida e confirmação" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Banda predefinida" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Métodos QSL predefinidos" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Serviços de terceiros" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Nome de utilizador do Logbook of The World (LoTW)" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Palavra-passe do Logbook of The World (LoTW)" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Teste de Login" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Nome de utilizador eQSL.cc" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Palavra-passe do eQSL.cc" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "ClubLog" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Email do Club Log" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Palavra-passe do ClubLog" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18375,15 +18783,15 @@ msgstr "" "senha de aplicação para usar o Clublog no Wavelog. Visite %sa sua página de " "definições do Clublog%s para o fazer." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "Widget On-Air" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18391,16 +18799,16 @@ msgstr "" "Nota: Para utilizar este widget, é necessário ter pelo menos um rádio CAT " "configurado e a funcionar." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Quando ativado, o widget estará disponível em %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Exibir hora do \"visto por último\"" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18408,15 +18816,15 @@ msgstr "" "Esta configuração controla se o horário de 'Última vez visto' é exibido no " "widget ou não." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Exibir apenas o rádio atualizado mais recentemente" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Não, mostra todos os rádios" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18428,15 +18836,15 @@ msgstr "" "recentemente atualizado. No caso de ter apenas um rádio, esta definição não " "tem efeito." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "Widget de contactos" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Exibir hora exata do contacto" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18444,40 +18852,40 @@ msgstr "" "Esta configuração controla se o tempo exato do contacto deve ser exibido no " "widget contactos ou não." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Diversos" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Estado do envio para AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Estado do envio dos contactos satélite para" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL do Mastodonserver" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "URL principal do seu servidor Mastodon, por exemplo, %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Funcionalidades do Winkeyer ativadas" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18486,25 +18894,25 @@ msgstr "" "O suporte ao Winkeyer no Wavelog é muito experimental. Leia primeiro o wiki " "em %s antes de o ativar." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Chave privada de envio" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Ver o seu perfil em %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Mostrar apenas passagens válidas" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18513,7 +18921,7 @@ msgstr "" "definido na sua conta hams.at. Requer a definição de uma chave de feed " "privada." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Guardar conta" @@ -18937,7 +19345,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "último enviado" @@ -18955,7 +19363,7 @@ msgstr "Gestão de QSLs" #: application/views/view_log/qso.php:86 msgid "View note for this callsign" -msgstr "" +msgstr "Veja a nota para este indicativo" #: application/views/view_log/qso.php:138 msgid "Total Distance" @@ -18965,121 +19373,129 @@ msgstr "Distância total" msgid "Other Path" msgstr "Outro Caminho" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"Uma única quadrícula foi inserida no campo de quadrículas VUCC, que deveria " +"conter dois ou quatro quadrados de quadrícula em vez de uma única quadrícula." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Azimute da antena" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Elevação da antena" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "O cartão QSL foi enviado via bureau" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "O cartão QSL foi enviado por via direta" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "O cartão QSL foi enviado por via eletrónica" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "O cartão QSL foi enviado via manager" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "O cartão QSL foi enviado" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "O cartão QSL foi recebido via bureau" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "O cartão QSL foi recebido por via direta" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "O cartão QSL foi recebido por via eletrónica" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "O cartão QSL foi recebido via manager" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "O cartão QSL foi recebido" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Esta estação usa LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Este contacto foi confirmado no" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Este contacto está confirmado no LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Este contacto está confirmado no eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Este contacto está confirmado no QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Este contacto está confirmado no Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Este QSO está confirmado no DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Mais contactos" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Partilhar" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Detailes" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Imagem da frente do cartão QSL transferida" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Transferir imagem do cartão QSL" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Imagem do verso do cartão QSL transferida" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Marcar QSL Recebida (Eletrónico)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "Imagem eQSL" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" -msgstr "" +msgstr "QSO não encontrado" #: application/views/visitor/layout/footer.php:239 msgid "Filter Results" @@ -19210,65 +19626,75 @@ msgstr "Recebido" #: application/views/zonechecker/index.php:3 msgid "Gridsquare Zone identification" -msgstr "" +msgstr "Identificação da Zona Gridsquare" #: application/views/zonechecker/index.php:15 msgid "Zone Type" -msgstr "" +msgstr "Tipo de Zona" #: application/views/zonechecker/index.php:20 msgid "Start Zone Check" -msgstr "" +msgstr "Verificação da Zona de Início" #: application/views/zonechecker/index.php:39 #: application/views/zonechecker/index.php:62 msgid "Processing..." -msgstr "" +msgstr "Processando..." #: application/views/zonechecker/index.php:50 #: application/views/zonechecker/index.php:73 msgid "An error occurred while processing the request." -msgstr "" +msgstr "Ocorreu um erro ao processar o pedido." #: application/views/zonechecker/result.php:16 msgid "Callsigns Tested" -msgstr "" +msgstr "Indicativos testados" #: application/views/zonechecker/result.php:17 msgid "Execution Time" -msgstr "" +msgstr "Tempo de Execução" #: application/views/zonechecker/result.php:18 msgid "Potential Wrong Zones" -msgstr "" +msgstr "Zonas Potenciais Incorretas" #: application/views/zonechecker/result.php:19 msgid "Cache Hits" -msgstr "" +msgstr "Acertos do cache" #: application/views/zonechecker/result.php:20 msgid "Cache Misses" -msgstr "" +msgstr "Perdas de cache" #: application/views/zonechecker/result.php:21 msgid "Hit Rate" -msgstr "" +msgstr "Taxa de Acerto" #: application/views/zonechecker/result.php:55 msgid "ITUz" -msgstr "" +msgstr "ITUz" #: application/views/zonechecker/result.php:56 msgid "ITUz geojson" -msgstr "" +msgstr "ITUz geojson" #: application/views/zonechecker/result.php:58 msgid "CQz" -msgstr "" +msgstr "CQz" #: application/views/zonechecker/result.php:59 msgid "CQz geojson" -msgstr "" +msgstr "CQz geojson" + +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Atualmente, o cache está a usar o adaptador de backup porque o primário " +#~ "está indisponível." + +#~ msgid "radio functions" +#~ msgstr "funções do rádio" #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Zonas CQ registadas incorretamente" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index abfcc437a..9ce64bc85 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 24be12d28..cd68cd391 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-04 16:42+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-12 17:48+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian \n" @@ -23,7 +23,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -76,8 +76,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -88,11 +88,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -123,11 +123,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -148,8 +148,8 @@ msgid "Activated Gridsquare Map" msgstr "Карта активированных квадратов" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -311,51 +311,51 @@ msgstr "Ключ API %s удалён" msgid "Awards" msgstr "Дипломы" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Дипломы - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -364,13 +364,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -382,29 +382,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Дипломы — WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Дипломы — WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Журнал — VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -417,43 +417,58 @@ msgstr "Журнал — VUCC" msgid "Log View" msgstr "Просмотр журнала" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " и диапазон " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "и" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Каждый диапазон (без SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "диапазон" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " и спутник " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " и тип орбиты " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " и тип прохождения " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " и вид модуляции " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " и " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -474,14 +489,14 @@ msgstr " и " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -496,16 +511,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -519,111 +534,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "US Counties" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Журнал - Графства" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Дипломы - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Сработанные квадраты" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Квадраты, подтверждённые на LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Квадраты, подтверждённые бумажными QSL" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Всего сработано квадратов" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Дипломы - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "Зоны ITU" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -654,8 +669,7 @@ msgstr "Новый вид модуляции" msgid "Edit Band" msgstr "Редактировать диапазон" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -688,15 +702,24 @@ msgstr "Данные CBR импортированы" msgid "Callsign statistics" msgstr "Статистика по позывным" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " и диапазон " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " и спутник " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Проверка позывного" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "Проверка позывных CSV" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Проверка позывного" @@ -782,28 +805,31 @@ msgid "No user has configured Clublog." msgstr "Ни один пользователь не сконфигурировал доступ к Clublog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -835,7 +861,7 @@ msgid "Update Contest" msgstr "Обновить контест" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -853,12 +879,12 @@ msgstr "Редактирование задачи" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "никогда" @@ -933,14 +959,14 @@ msgstr "Импорт ключа DCL" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1190,7 +1216,7 @@ msgstr "Не найдены QSO для загрузки." msgid "KML Export" msgstr "Экспорт KML" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "наклейки QSL карточек" @@ -1198,59 +1224,59 @@ msgstr "наклейки QSL карточек" msgid "Create Label Type" msgstr "Новый тип наклеек" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Название наклейки" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Тип бумаги" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Единицы измерения" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Отступ сверху" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Отступ слева" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSL в строку" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSL в столбец" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Интервал по горизонтали" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Интервал по вертикали" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Ширина наклейки" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Высота наклейки" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Размер шрифта" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Количество QSO на наклейке" @@ -1259,22 +1285,22 @@ msgid "Create Paper Type" msgstr "Новый тип бумаги" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Название типа бумаги" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Ширина бумаги" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Высота бумаги" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1282,19 +1308,19 @@ msgstr "" "Ваш тип бумаги не может быть сохранён. Помните, что вы не можете задать уже " "существующее в списке типов бумаги название." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Вам необходимо указать тип бумаги для наклеек перед печатью" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "" "Вам нужно создать шаблон наклейки и назначить его используемым при печати." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1302,31 +1328,31 @@ msgstr "" "Что-то пошло не так! Наклейки не могут быть сгенерированы. Проверьте размер " "наклеек и размер шрифта." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "QSO для печати не найдены!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Редактировать тип наклеек" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Шаблон наклейки сохранён." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Шаблон наклейки удалён." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Редактировать тип бумаги" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Тип бумаги сохранён." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Тип бумаги удалён." @@ -1349,55 +1375,55 @@ msgstr "Журналы" msgid "Logbook" msgstr "Журнал" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1405,93 +1431,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "Все запросы к коллбукам не удались или не принесли результатов." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1499,7 +1527,7 @@ msgstr "Все запросы к коллбукам не удались или #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1516,13 +1544,13 @@ msgstr "Все запросы к коллбукам не удались или #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1561,15 +1589,15 @@ msgstr "Все запросы к коллбукам не удались или msgid "Mode" msgstr "Модуляция" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1590,15 +1618,15 @@ msgstr "Модуляция" msgid "RST (S)" msgstr "RST (TX)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1620,7 +1648,7 @@ msgstr "RST (TX)" msgid "RST (R)" msgstr "RST (RX)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1629,29 +1657,29 @@ msgstr "RST (RX)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Страна" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1664,7 +1692,7 @@ msgstr "Страна" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1672,7 +1700,7 @@ msgstr "Страна" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1681,12 +1709,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1695,7 +1723,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1703,7 +1731,7 @@ msgstr "IOTA" msgid "State" msgstr "Область/штат" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1712,19 +1740,19 @@ msgstr "Область/штат" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1740,20 +1768,20 @@ msgstr "Область/штат" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "QTH локатор" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1763,9 +1791,9 @@ msgstr "QTH локатор" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1783,18 +1811,18 @@ msgstr "QTH локатор" msgid "Distance" msgstr "Дистанция" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1802,25 +1830,26 @@ msgstr "Дистанция" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1831,13 +1860,13 @@ msgstr "Дистанция" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1876,13 +1905,14 @@ msgstr "Дистанция" msgid "Band" msgstr "Диапазон" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1903,13 +1933,13 @@ msgstr "Диапазон" msgid "Frequency" msgstr "Частота" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1922,21 +1952,21 @@ msgstr "Частота" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Оператор" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1945,14 +1975,14 @@ msgstr "Оператор" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "Удалённые DXCC" @@ -1960,12 +1990,12 @@ msgstr "Удалённые DXCC" msgid "Advanced logbook" msgstr "Расширенный журнал" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "Значение DXCC обновлено для %d QSO." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Карта для DXCC %s и квадратов %s." @@ -1980,7 +2010,7 @@ msgstr "Быстрый поиск" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1992,11 +2022,11 @@ msgstr "Сертификат импортирован." msgid "Certificate Updated." msgstr "Сертификат обновлен." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Сертификат удален." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2009,7 +2039,7 @@ msgstr "" "%s Для получения дополнительной информации, пожалуйста, посетите %sстраницу " "FAQ LoTW%s в Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2019,50 +2049,50 @@ msgstr "" "Ошибка при извлечении сертификата из файла %s. Если имя файла содержит 'key-" "only', это обычно запрос сертификата, который еще не обработан LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "При обработке сертификата в файле %s произошла ошибка." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "Ошибка извлечения закрытого ключа из сертификата в файле %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW. Информация ADIF" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Не удалось подключиться к LoTW." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Пользователю %s (%s) не удалось войти в LoTW." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Имя пользователя/пароль неверны" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW в настоящее время недоступен. Попробуйте позже." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "Вход в LoTW выполнен успешно!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Отсутствуют учетные данные LoTW." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW. Импорт ADIF" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Вы не указали свои учетные данные ARRL LoTW!" @@ -2087,7 +2117,7 @@ msgstr "Редактировать" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Заметки" @@ -2233,7 +2263,7 @@ msgstr "Значение таймаута радиоинтерфейса изм #: application/controllers/Options.php:247 #: application/views/options/sidebar.php:6 msgid "Email" -msgstr "Емэйл" +msgstr "Электронная почта" #: application/controllers/Options.php:304 msgid "The settings were saved successfully." @@ -2250,7 +2280,9 @@ msgstr "Отправка тестового сообщения не удалас #: application/controllers/Options.php:350 msgid "Testmail sent. Email settings seem to be correct." -msgstr "Тестовое сообщение отправлено. Настройки емэйл похожи на правильные." +msgstr "" +"Тестовое сообщение отправлено. Похоже, что настройки электронной почты " +"правильны." #: application/controllers/Options.php:362 #: application/controllers/Options.php:381 @@ -2409,19 +2441,19 @@ msgstr "Загрузка QSL карточек" msgid "Print Requested QSLs" msgstr "Распечатать запрошенные QSL" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Добавить QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Для доступа к этому URL необходимо войти в систему." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Перевод вызова" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Позывной не указан." @@ -2430,18 +2462,18 @@ msgstr "Позывной не указан." msgid "Hardware Interfaces" msgstr "Интерфейсы радиостанций" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Радио" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Метка времени" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2449,61 +2481,65 @@ msgstr "Метка времени" msgid "Options" msgstr "Опции" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Настройки" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "По умолчанию (кликните, чтобы освободить)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Установить как радиостанцию по умолчанию" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "НЕИЗВЕСТНО" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "последнее обновление" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Установить как радиостанцию по умолчанию" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "По умолчанию (кликните, чтобы освободить)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Редактировать" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2512,22 +2548,42 @@ msgstr "Редактировать" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Удалить" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "" +"WebSocket в настоящее время установлен в качестве интерфейса радиостанции по " +"умолчанию (нажмите, чтобы отключить)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Установить WebSocket в качестве интерфейса радиостанции по умолчанию" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "CAT-интерфейсные радиостанции не найдены." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Вы всё ещё можете установить WebSocket в качестве интерфейса радиостанции по " +"умолчанию." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Изменить настройки CAT" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Интерфейс радиостанции успешно удалён" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Экспорт EDI" @@ -2595,7 +2651,7 @@ msgstr "У вас нет профиля QTH. Перейдите по ссылк #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2606,13 +2662,13 @@ msgstr "здесь" msgid "Satellite Timers" msgstr "Спутниковые таймеры" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2667,7 +2723,8 @@ msgstr "Редактировать профиль QTH: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2675,7 +2732,7 @@ msgstr "Редактировать профиль QTH: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2688,7 +2745,7 @@ msgid "Duplicate Station Location:" msgstr "Дубликат профиля QTH:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Пожалуйста, проверьте значение QTH локатора (%s)" @@ -2751,7 +2808,8 @@ msgstr "Ошибка. Ссылка уже используется!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2759,19 +2817,19 @@ msgid "Disabled" msgstr "Выключено" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Установить как активный" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Активный журнал" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2781,7 +2839,7 @@ msgstr "" "нему профили QTH к другому журналу." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Просмотр публичной страницы журнала: " @@ -2790,19 +2848,19 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Вы уверены, что хотите удалить публичный псевдоним?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "Вы уверены, что хотите сделать профиль QTH %s активным?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Установить активным" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Активный профиль QTH" @@ -2810,31 +2868,31 @@ msgstr "Активный профиль QTH" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Вы уверены, что хотите удалить все QSO из этого профиля станции?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Очистить лог" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Скопировать" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2847,7 +2905,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Пожалуйста, выберите один" @@ -2927,103 +2985,103 @@ msgstr "Подготовка исключений DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Подготовка префиксов DXCC: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "Готово" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Обновляется..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Исключения DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Префиксы DXCC:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Обновление SCP завершено. Результат: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Обновление SCP не удалось. Результат: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Обновление пользователей LoTW завершено. Результат: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Обновление пользователей LoTW не удалось. Результат: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Обновление DOK завершено. Результат: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "Обновление DOK не удалось. Результат: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Обновление SOTA завершено. Результат: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "Обновление SOTA не удалось. Результат: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Обновление WWFF завершено. Результат: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Обновление WWFF не удалось. Результат: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Обновление HAMqsl завершено. Результат: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Обновление HAMqsl не удалось. Результат: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Обновление POTA завершено. Результат: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "Обновление POTA не удалось. Результат: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Обновление TLE завершено. Результат: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "Обновление TLE не удалось. Результат: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "Обновление спутников для LoTW" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Обновить \"Заметки о корреспондентах\"" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Обновление файла квадратов VUCC завершено. Результат: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Обновление файла квадратов VUCC не удалось. Результат: " @@ -3058,61 +3116,61 @@ msgstr "Недопустимый параметр!" msgid "Add User" msgstr "Добавить пользователя" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Имя пользователя %s уже используется!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "Электронная почта %s уже используется!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Неверный пароль!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Пользователь %s добавлен!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Пользователи" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Редактировать пользователя" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Аккаунт пользователя %s отредактирован" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Профиль" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Удалить оператора" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Пользователь удалён" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Не удалось удалить пользователя!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Ошибка базы данных:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3120,29 +3178,29 @@ msgstr "" "Поздравляем! Wavelog был успешно установлен. Теперь вы можете войти в " "систему в первый раз." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Это не разрешено!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Вход не выполнен. Попробуйте снова." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Вход" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Вы не можете войти в аккаунт коллективной станции напрямую. Используйте " "вместо этого свой личный аккаунт." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3150,7 +3208,7 @@ msgstr "" "Ваш аккаунт заблокирован из-за слишком большого количества неудачных попыток " "входа. Пожалуйста, сбросьте пароль." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3161,52 +3219,52 @@ msgstr "" "администратором. В настоящий момент только администраторы могут войти на " "сервер." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Неверные логин или пароль!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Пользователь %s вышел." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Профиль QTH" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Позывной" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "DXCC станции" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Зона CQ" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Зона ITU" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Локатор" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3215,35 +3273,35 @@ msgstr "" "Профиль QTH успешно создан! Добро пожаловать в Wavelog! Чтобы завершить " "настройку станции, кликните %sздесь%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "|Создать профиль QTH не удалось! Пожалуйста, настройте его вручную." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "Сброс пароля отключен в демо-версии!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Восстановить пароль" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." -msgstr "Настройки емэйл некорректны." +msgstr "Настройки электронной почты некорректны." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Осуществлён сброс пароля." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Сбросить пароль" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3251,7 +3309,7 @@ msgstr "" "Не удалось создать учетную запись с этим именем пользователя. Пожалуйста, " "попробуйте другое, не \"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." @@ -3259,7 +3317,7 @@ msgstr "" "Не удалось создать учетную запись с этим адресом электронной почты. " "Пожалуйста, попробуйте другой адрес, не \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3268,7 +3326,7 @@ msgstr "" "В настоящее время вы не можете выдавать себя за другого пользователя. Вам " "нужно установить %s на %s в вашем config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3277,15 +3335,15 @@ msgstr "" "В настоящее время вы не можете выдавать себя за другого пользователя. " "Пожалуйста, сначала измените encryption_key в вашем файле config.php!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Неверный хеш" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "Хэш имперсонации слишком старый. Пожалуйста, попробуйте снова." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3293,15 +3351,15 @@ msgstr "" "Вы не можете выдавать себя за другого пользователя, если вы не вошли в " "систему как исходный пользователь" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Произошла проблема с вашей сессией. Пожалуйста, попробуйте снова." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "Запрашиваемый для имперсонации пользователь не существует" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3309,13 +3367,13 @@ msgstr "" "Не удалось определить правильный уровень доступа для оператора коллективной " "станции. Попробуйте снова после повторного входа." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Упс.. Что-то пошло не так. Попробуй войти снова." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3323,7 +3381,7 @@ msgstr "" "Возможность быстрого возврата была отключена после истечения срока действия " "хэша безопасности. Пожалуйста, войдите снова." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3336,7 +3394,7 @@ msgid "Satellite Gridsquare Map" msgstr "Карта квадратов (спутники)" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Публичный поиск" @@ -3388,14 +3446,19 @@ msgstr "Несколько пользователей найдено по пуб msgid "Gridsquare Zone finder" msgstr "Поиск зоны по квадрату" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Поиск не настроен. Пожалуйста, проверьте конфигурацию." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "Ошибка при получении ключа сеанса для колбука. Ошибка: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "Ошибка QRZCQ" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Ошибка при получении ключа сеанса для запроса HamQTH" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3551,25 +3614,25 @@ msgstr "HRDlog: не найдены профили QTH с данными вхо msgid "Station not accessible" msgstr "Станция недоступна" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "Недопустимый ID станции" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Не указан позывной" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC должен быть цифровым" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Неправильный позывной %s при импорте QSO с %s для %s: ПРОПУЩЕНО" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3577,11 +3640,11 @@ msgstr "" "Вы пытались импортировать QSO без действительной даты. Это QSO не " "действительно и не было импортировано" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "начало QSO" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3589,7 +3652,7 @@ msgstr "" "Вы пытались импортировать QSO без указанного позывного. Это QSO не было " "импортировано. Оно недействительно" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3598,64 +3661,64 @@ msgstr "" "QSO в %s: Вы пыталсь импортировать QSO без информации о диапазоне. Это QSO " "некорректно, импорт отклонён.imported. It's invalid" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "дата получения QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "дата отправки QSL недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "дата загрузки QSO в Clublog недействительна (ГГГГММДД)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Дубликат для" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSO не может быть сопоставлено" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "подтверждено LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "подтверждено менеджером диплома" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "подтверждено кросс-проверкой с данными DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "подтверждение ожидается" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "не подтверждено" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "неизвестно" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "Ренференция POTA уже в журнале" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO обновлено" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3669,7 +3732,7 @@ msgstr "QSO обновлено" msgid "Bearing" msgstr "Направление" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "Таблица VuccGrids пуста. Сначала импортируйте данные квадратов VUCC." @@ -3807,42 +3870,40 @@ msgstr "Разница" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3871,33 +3932,33 @@ msgstr "Разница" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3918,7 +3979,7 @@ msgstr "Разница" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Все" @@ -3962,12 +4023,12 @@ msgstr "Период" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Распространение" @@ -3983,7 +4044,7 @@ msgstr "Все, кроме спутников" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Нет/Пусто" @@ -3993,11 +4054,11 @@ msgstr "Нет/Пусто" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Рассеяние на инверсионном следе самолётов" @@ -4007,11 +4068,11 @@ msgstr "Рассеяние на инверсионном следе самолё #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Авроральное" @@ -4021,11 +4082,11 @@ msgstr "Авроральное" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Авроральное (E)" @@ -4035,11 +4096,11 @@ msgstr "Авроральное (E)" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Пассивные отражатели" @@ -4049,11 +4110,11 @@ msgstr "Пассивные отражатели" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "Эхолинк" @@ -4063,11 +4124,11 @@ msgstr "Эхолинк" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Отражение от Луны" @@ -4077,11 +4138,11 @@ msgstr "Отражение от Луны" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Спорадическое прохождение (Е)" @@ -4091,11 +4152,11 @@ msgstr "Спорадическое прохождение (Е)" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Анизотропия ионосферы" @@ -4105,11 +4166,11 @@ msgstr "Анизотропия ионосферы" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "Отражение от слоя F2" @@ -4119,11 +4180,11 @@ msgstr "Отражение от слоя F2" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "С помощью Интернет" @@ -4133,11 +4194,11 @@ msgstr "С помощью Интернет" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ионосферное рассеяние" @@ -4147,11 +4208,11 @@ msgstr "Ионосферное рассеяние" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4161,11 +4222,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Рассеяние на метеорных следах" @@ -4175,11 +4236,11 @@ msgstr "Рассеяние на метеорных следах" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Наземный или атмосферный репитер или транспондер" @@ -4189,11 +4250,11 @@ msgstr "Наземный или атмосферный репитер или т #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Рассеяние на дожде" @@ -4203,11 +4264,11 @@ msgstr "Рассеяние на дожде" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Спутник" @@ -4217,11 +4278,11 @@ msgstr "Спутник" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Трансэкваториальное" @@ -4231,11 +4292,11 @@ msgstr "Трансэкваториальное" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Тропосферное прохождение" @@ -4244,18 +4305,18 @@ msgstr "Тропосферное прохождение" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4267,21 +4328,21 @@ msgstr "Тропосферное прохождение" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Показать" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4292,7 +4353,7 @@ msgstr "Показать" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4301,19 +4362,25 @@ msgstr "Показать" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Спутник" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4333,22 +4400,22 @@ msgstr "Подтверждение" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4394,11 +4461,11 @@ msgstr "Минимальное количество" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4407,11 +4474,10 @@ msgstr "Минимальное количество" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4431,7 +4497,8 @@ msgstr "Не найдено!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4447,12 +4514,13 @@ msgstr "Не найдено!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4476,7 +4544,7 @@ msgstr "Не найдено!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Позывной" @@ -4487,12 +4555,12 @@ msgstr "Счётчик" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Показать лог QSO" @@ -4558,7 +4626,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4582,11 +4650,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4600,12 +4668,12 @@ msgstr "Дата" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4620,7 +4688,7 @@ msgstr "Дата" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4633,7 +4701,7 @@ msgstr "Время" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4688,20 +4756,20 @@ msgstr "Важно" msgid "Log Files must have the file type *.adi" msgstr "Лог-файлы должны иметь расширение .adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Максимальный размер загружаемого файла " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4762,8 +4830,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "ОПАСНО" @@ -5154,8 +5222,8 @@ msgstr "Референцим POTA в ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Статус" @@ -5174,7 +5242,7 @@ msgstr "Простое название, описывающее назначен #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5241,7 +5309,7 @@ msgstr "URL API этого сервера Wavelog" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5293,7 +5361,7 @@ msgstr "Разрешения" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5338,7 +5406,7 @@ msgstr "Создать ключ с правами 'Только Чтение'" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5347,8 +5415,8 @@ msgstr "Создать ключ с правами 'Только Чтение'" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5365,14 +5433,14 @@ msgstr "Создать ключ с правами 'Только Чтение'" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5429,9 +5497,9 @@ msgid "Filtering on" msgstr "Отфильтровано по" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Район" @@ -5484,19 +5552,14 @@ msgid "Counties Confirmed" msgstr "Подтверждённые графства" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5518,22 +5581,23 @@ msgid "Total" msgstr "Всего" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5586,10 +5650,12 @@ msgid "Awards - CQ WAZ" msgstr "Дипломы - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Фильтры" @@ -5599,92 +5665,114 @@ msgid "Show CQ Zone Map" msgstr "Показать карту зон CQ" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Предустановки даты" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Сегодня" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Вчера" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Последние 7 дней" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Последние 30 дней" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "В этом месяце" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "В прошлом месяце" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "В этом году" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "В прошлом году" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Очистить" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5692,7 +5780,9 @@ msgid "Date from" msgstr "Дата от" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5700,11 +5790,10 @@ msgid "Date to" msgstr "Дата до" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5714,9 +5803,8 @@ msgid "Confirmed" msgstr "Подтверждено" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5726,67 +5814,64 @@ msgstr "Сработано" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Показать сработанные" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Показать подтверждённые" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Показать не сработанные" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5794,95 +5879,161 @@ msgstr "Отобразить QSO с типом QSL" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL карточка" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Таблица" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Карта" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Легенда:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "Бумажная (Q)SL" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "\"подтверждение\"-QR(Z)" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(С)работано" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Сводка" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Итого (без спутниковых)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Всего сработано" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5947,15 +6098,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Сработано / Подтверждено" @@ -5964,11 +6115,9 @@ msgstr "Сработано / Подтверждено" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Каждый диапазон" @@ -5976,23 +6125,20 @@ msgstr "Каждый диапазон" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Сброс" @@ -6048,161 +6194,127 @@ msgstr "" "Поле, используемое для этого диплома: DXCC (должно быть действительным из " "списка DXCC-ADIF-Spec-List)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Показать карту DXCC" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Включая удалённые" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Антарктика" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Африка" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Азия" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Европа" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Северная Америка" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Южная Америка" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Океания" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Каждый диапазон (без SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Легенда:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "Бумажная (Q)SL" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "\"подтверждение\"-QR(Z)" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(С)работано" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "Название DXCC" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Префикс" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "По вашему запросу ничего не найдено. Пожалуйста, попробуйте снова." @@ -6475,23 +6587,23 @@ msgstr "Показать карту IOTA" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Имя" @@ -6500,14 +6612,14 @@ msgid "Deleted" msgstr "Удалено" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6517,7 +6629,7 @@ msgstr "Удалено" msgid "ITU Zone" msgstr "Зона ITU" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6529,22 +6641,22 @@ msgstr "" "радиостанциями по крайней мере в 70 из 75 зон вещания, определенных " "Международным союзом электросвязи (ITU)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" "Для получения дополнительной информации вы можете посетить эту ссылку: %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Поле, используемое для этого диплома: ITUZ (зона ITU)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Дипломы - зоны ITU" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Показать карту зон ITU" @@ -6601,7 +6713,7 @@ msgstr "Результат" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Город" @@ -6610,8 +6722,10 @@ msgstr "Город" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "Спутники" @@ -6747,7 +6861,7 @@ msgstr "Воеводство" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Код" @@ -6763,7 +6877,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6801,8 +6915,8 @@ msgid "Band Categories" msgstr "Категории по диапазонам" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Исправить значение поля \"Область/Штат\"" @@ -6874,8 +6988,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "Сравочник POTA" @@ -6886,6 +7000,7 @@ msgstr "Провинция" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Наведите курсор на провинцию" @@ -6904,7 +7019,7 @@ msgid "" "implemented in Wavelog." msgstr "" "Категория SIG или \"Группа по интересам\" предоставляет возможность " -"использовать любой вариант 'Диплома группы по интеерсам' для дипломов, " +"использовать любой вариант 'Диплома группы по интересам' для дипломов, " "которые не реализованы в Wavelog." #: application/views/awards/sig/index.php:9 @@ -6951,7 +7066,7 @@ msgid "Reference" msgstr "Референция" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -7019,7 +7134,7 @@ msgstr "" "стработанных и подтвержденных кважратов на желаемом диапазоне." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "" @@ -7102,25 +7217,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Дипломы - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Континент" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "Не найдено ни одного QSO, соответствующего условиям данного диплома!" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "Диплом WAE" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7130,7 +7250,7 @@ msgstr "" "любительскими радиостанциями в европейских странах и на островах, " "перечисленных в списке стран WAE, на разных диапазонах." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7140,11 +7260,11 @@ msgstr "" "RTTY, FT8, Digital и Mixed Modes. Он выдается в пяти классах: WAE III, WAE " "II, WAE I, WAE TOP и WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Поля, используемые для этого диплома: STATE, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "Название WAE" @@ -7194,7 +7314,7 @@ msgid "Show WAJA Map" msgstr "Показать карту WAJA" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Префектура" @@ -7259,15 +7379,20 @@ msgid "Show WAP Map" msgstr "Показать карту WAP" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Провинция" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Провинция" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Провел связи со всеми провинциями Китая" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7279,7 +7404,7 @@ msgstr "" "муниципалитетах, автономных регионах и специальных административных районах " "Китая, способствуя более глубокому пониманию Китая." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7287,7 +7412,7 @@ msgstr "" "Диплом можно получить путем длительного накопления QSO или во время " "ежегодного контеста WAPC." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7297,6 +7422,10 @@ msgstr "" "(Китай), 321 (Гонконг), 152 (Макао), 386 (Тайвань), 505 (о. Пратас) или 506 " "(риф Скарборо)) и STATE (корректное значение)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Показать карту WAPC" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7411,8 +7540,8 @@ msgstr "Поле, используемое для этого диплома: WWF #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "Справочник WWFF" @@ -7467,223 +7596,223 @@ msgstr "" "Резервное копирование заметок успешно завершено. Выходные данные можно найти " "здесь" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Кликните, чтобы подготовить запись в журнале." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "перестроить частоту" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Всплывающее окно заблокировано" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Всплывающее окно было заблокировано! Пожалуйста, разрешите всплывающие окна " "для этого сайта." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Требуется соединение по CAT" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Подключите радиостанцию по CAT для настройки" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Очистить фильтры" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Сохранён фильтр по диапазону (активна блокировка диапазона)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Выбрана радиостанция: Отсутствует - соединение по CAT отключено" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Радиостанция настроена" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Настроена на" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Настройка не удалась" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Не удалось настроить радиостанцию на частоту" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "Запись о QSO подготовлена" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "отправлено в форму ввода QSO" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "Соединение по CAT" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Кликните, чтобы включить соединение по CATК" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "Нстройки радиостанции приоритетнее CAT - Кликните, чтобы отключить" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "" "Кликните, чтобы включить блокировку диапазона (требуется соединение по CAT)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Блокировка диапазона активна - Кликните, чтобы отключить" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Блокировка диапазона" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "" "Блокировка диапазона включена - фильтр по диапазону будет отслеживать " "диапазон радиостанции" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Фильтр по диапазону изменён на" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "трансивером" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Фильтр по частоте установлен на" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Частота вне известных диапазонов - отображаются все диапазоны" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Ожидание данных от радиостанции..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Избранное" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Не удалось загрузить избранное" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "Фильтр по видам модуляции применён. Фильтр по диапазону сохранён (соединение " "по CAT активно)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Установлены избранные вид модуляции и диапазон" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Мои подвиды модуляции" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Фильтр по подвидам модуляции включен" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Фильтр по подвидам модуляции отключен - отображается всё" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Требуемые подвиды модуляции" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Настраивается в Пользовательских настройках - Виды модуляции" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Подвиды модуляции не настроены - настройте в Пользовательских настройках - " "Виды модуляции" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "В настройках не включены подвиды модуляции режимы - показываются все споты" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Отключено - нет подвидов модуляции, включенных для этого вида модуляции в " "Пользовательских настройках" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Переключить фильтр по CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Переключить фильтр по цифровым видам" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Переключить фильтр по голосовым видам" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Избранное" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Сохранить текущие фильтры..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Введите название для этой конфигурации фильтров:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Конфигурация фильтров сохранена" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Конфигурация фильтров загружена" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Конфигурация фильтров удалена" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Вы уверены, что хотите удалить эту конфигурацию фильтров?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Нет сохранённых конфигураций фильтров" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7691,64 +7820,64 @@ msgstr "" "Достигнуто максимальное количество в 20 конфигураций фильтров. Удалите " "некоторые перед добавлением новых." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Загрузка данных из DX-кластера" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Последний запрос" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Максимальный возраст" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Получено в" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Следующее обновление через" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "минут(ы)" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "секунд(ы)" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "споты получены" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "отображаются" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "отображаются все" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Активные фильтры" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Запрос..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Не сработано" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Сработано, не подтверждено" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7756,269 +7885,272 @@ msgstr "Сработано, не подтверждено" msgid "LoTW User" msgstr "Пользователь LoTW" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Новый позывной" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Новый континент" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Новая страна" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Сработано" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Работал на %s с %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "от" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "спот отправлен" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Свежий спот (< 5 минут назад)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Контест" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Кликните, чтобы посмотреть" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "на QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Кликните, чтобы просмотреть %s на QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Подробнее" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Сработан на" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Не сработан на этом диапазоне" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "Пользователь LoTW. Последняя загрузка была %d дней назад" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Кликните, чтобы посмотреть на POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Кликните, чтобы посмотреть на SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Кликните, чтобы посмотреть на cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Кликните, чтобы посмотреть на IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Подробнее о континенте" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Подробнее о континенте %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Подробнее о зоне CQ" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Подробнее о зоне CQ %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "в" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Выйти из полноэкранного режима" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Переключить полноэкранный режим" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Фильтрация по диапазону контролируется вашей радиостанцией, когда включено " "соединение по CAT" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Кликните, чтобы подготовить к записи в лог" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(требуется соединение по CAT)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Споттер" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Комментарий" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Возраст" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Входящий" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Исходяший" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "споты" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "спот" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "споттеры" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Пожалуйста, подождите" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Пожалуйста, подождите %s секунд, прежде чем отправить другой позывной в " "форму QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Загрузка спотов..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Споты не найдены" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Нет данных" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "По выбранным фильтрам ничего не найдено" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Ошибка загрузки спотов. Пожалуйста, попробуйте еще раз." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Показать все виды модуляции" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Показать все споты" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Отобразить споттеров" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Расширенная карта" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Показать День/Ночь" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Ваш QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Вернуться домой" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX кластер" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Помощь с DX-кластером" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Компактный режим - Скрыть/Показать меню" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -8026,316 +8158,281 @@ msgstr "TRX:" msgid "None" msgstr "Нет" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Вживую - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Опрос - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "от:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Выберать все континенты" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Мир" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Переключить фильтр континента Африка" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Переключить фильтр континента Антарктида" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Переключить фильтр континента Азия" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Переключить фильтр континента Европа" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Переключить фильтр континента Северная Америка" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Переключить фильтр континента Океания" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Переключить фильтр континента Южная Америка" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Расширенные фильтры" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Удерживать" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "и кликнуть, чтобы выбрать несколько вариантов" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "Статус DXCC" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phone" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Требуемые флаги" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Стработанный позывной" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX спот" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Дополнительные флаги" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Свежий (< 5 мин)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Споты с континента" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Континент спота" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Применить фильтры" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Фильтровать избранное" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Очистить все фильтры, кроме Континента споттера" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Переключить фильтр диапазона 160м" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Переключить фильтр диапазона 80м" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Переключить фильтр диапазона 60м" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Переключить фильтр диапазона 40м" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Переключить фильтр диапазона 30м" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Переключить фильтр диапазона 20м" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Переключить фильтр диапазона 17м" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Переключить фильтр диапазона 15м" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Переключить фильтр диапазона 12м" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Переключить фильтр диапазона 10м" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Переключить фильтр диапазона 6 м" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Переключить фильтр УКВ диапазонов (6м .. 2м)" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Переключить фильтр УКВ диапазонов (70см .. 12см)" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Переключить фильтр диапазонов СВЧ" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Загрузка подвидов модуляции..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Переключить фильтр по пользователям LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "Пользователи LoTW" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Переключить фильтр DX (континент споттера ≠ континент спота)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Переключить фильтр новых континентов" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Новые континенты" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Переключить фильтр новых DXCC" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Новые DXCC" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Переключить фильтр новых позывных" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Новые позывные" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Переключить фильтр свежих спотов (< 5 минут)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Свежие" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Переключить фильтр контестов" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Переключить фильтр охотника за территориями (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Референции" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Открыть карту DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "Карта DX" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Поиск спотов..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Поиск в столбце" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Примечание: Карта показывает расположения DXCC, а не актуальные расположения " -"спотов" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Все столбцы" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Возраст в минутах" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Информация о споте" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Частота" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Подвид" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Позывной спота" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Флаг" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "DXCC" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Позывной споттера" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Континент споттера" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Зона CQ споттера" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Дата последнего QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Отметки" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Специальные флаги" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8343,6 +8440,62 @@ msgstr "Специальные флаги" msgid "Message" msgstr "Сообщение" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Континент споттера" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Зона CQ споттера" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Поиск спотов..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Примечание: Карта показывает расположения DXCC, а не актуальные расположения " +"спотов" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Возраст в минутах" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Частота" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Позывной спота" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Флаг" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Позывной споттера" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Дата последнего QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Отметки" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Специальные флаги" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Пожалуйста, введите допустимое значение для частоты" @@ -8623,7 +8776,7 @@ msgstr "" "IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8741,19 +8894,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8787,15 +8940,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Да" @@ -8810,19 +8965,19 @@ msgstr "Да" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8856,16 +9011,17 @@ msgstr "Да" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Нет" @@ -8896,7 +9052,7 @@ msgid "First QSO" msgstr "Первое QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Последний QSO" @@ -9005,8 +9161,8 @@ msgid "Callsign DXCC identification" msgstr "Идентификация DXCC для позывного" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Позывной: " @@ -9303,8 +9459,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9621,7 +9777,7 @@ msgstr "название для ADIF" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9694,7 +9850,7 @@ msgstr "Создать" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Название контеста" @@ -9774,8 +9930,8 @@ msgid "Locator" msgstr "Локатор" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9891,11 +10047,11 @@ msgstr "Идентификатор" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Включено" @@ -9990,7 +10146,8 @@ msgid "Cron List" msgstr "Список задач" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10192,9 +10349,9 @@ msgstr "Необходимо" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10216,10 +10373,10 @@ msgstr "Необходимо" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Отправлено" @@ -10229,9 +10386,9 @@ msgstr "Отправлено" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10252,10 +10409,10 @@ msgstr "Отправлено" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Принято" @@ -10263,17 +10420,17 @@ msgstr "Принято" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10296,11 +10453,11 @@ msgstr "Принято" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Запрошено" @@ -10326,6 +10483,38 @@ msgstr "Последнее обновление в %s." msgid "Data provided by HAMqsl." msgstr "Данные предоставлены HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "К-индекс: Показатель геомагнитной активности (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "A-индекс: Показатель среднесуточного уровня геомагнитной активности" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Показатель солнечной активности" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Скорость солнечного ветра (км/с)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Отношение сигнал/шум" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Уровень солнечного излучения в рентгеновском диапазоне" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Число солнечных пятен" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Kp-индекс: Показатель активности Авроры" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Количество QSO за этот день недели" @@ -10405,7 +10594,7 @@ msgstr "Дата начала" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Дата окончания" @@ -10749,7 +10938,8 @@ msgstr "Успешно" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Ошибка" @@ -10828,109 +11018,128 @@ msgstr "Модули" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Установленные" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Не установленные" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "Информация о кэше" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "Текущая конфигурация" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "Основной адаптер" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "Резервный адаптер" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "Путь к адаптеру %s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "Ключевой префикс" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" -"В настоящее время кэш использует запасной адаптер, так как основной " -"недоступен." - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "Кэш работает нормально. Всё в порядке!" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "Подробная информация о кэше" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "Общий размер" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "Количество ключей" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "Кэш работает нормально. Всё в порядке!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"В данный момент кэш использует резервный адаптер, потому что основной " +"недоступен. Проверьте разрешения на файлы, расширения PHP и/или ваше сетевое " +"соединение с сервисами (если используется redis/memcached)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"Кэш не работает! В настоящее время система использует адаптер %s. Проверьте, " +"как установлены права доступа к файлам, расширения PHP и/или соединение с " +"сетью для сервисов (если используете redis/memcached). Вы можете продолжать " +"использовать Wavelog, но значения не будут кэшироваться (что плохо)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "Доступные адаптеры" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "Очистить кеш" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Информация Git" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Ветка" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "недоступно" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Коммит" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Тэг" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Последнее обновление" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Проверить наличие новой версии" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10938,77 +11147,77 @@ msgstr "Проверить наличие новой версии" msgid "Update now" msgstr "Обновить сейчас" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Дата скачивания файла" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Файл" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Последнее обновление" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "Обновление DXCC из Clublog" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Обновить" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Скачать файл DOK" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "Скачать список пользователей LoTW" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "Скачать файл POTA" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "Скачать файл SCP" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "Скачать файл SOTA" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "Скачать файл WWFF" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "Обновление TLE" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Обновление \"Заметок о корреспондентах\"" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "Квадраты VUCC" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Обслуживание БД QSO" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -11017,141 +11226,141 @@ msgstr[0] "База данных содержит %d QSO без привязан msgstr[1] "База данных содержит %d QSO без привязанного профиля QTH" msgstr[2] "База данных содержит %d QSO без привязанного профиля QTH" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Пожалуйста, отметьте QSO и привяжите их к существующему профилю QTH:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Целевой профиль QTH" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Переназначить" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Каждое QSO в вашей базе данных привязано к соответствующему профилю QTH" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Всё ОК" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Албанский" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Армянский" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Боснийский" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Болгарский" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Хорватский" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Чешский" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Голландский" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Английский" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Эстонский" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Финский" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Французский" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Немецкий" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Греческий" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Венгерский" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Итальянский" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Японский" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Латышский" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Литовский" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Черногорский" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Польский" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Португальский" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Русский" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Сербский" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Словацкий" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Словенский" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Испанский" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Шведский" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Турецкий" @@ -11213,7 +11422,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Только QSO с заполненным полем 'квадрат' будут экспортированы!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL" @@ -11459,7 +11668,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "сообщение QSL" @@ -11597,31 +11806,32 @@ msgid "QSL Date" msgstr "Дата QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Посмотреть" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Пусто" @@ -11708,7 +11918,7 @@ msgstr "QSO отмечены, как экспортированные в жур #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Редактировать QSO" @@ -12103,76 +12313,76 @@ msgstr "Информация о версии" msgid "Failed to load the modal. Please try again." msgstr "Не удалось загрузить модальное окно. Пожалуйста, попробуйте еще раз." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Описание:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Описание запроса" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Ваш запрос сохранён!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Редактировать запросы" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Сохранённые запросы:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Выполнить запрос" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Сохранённые запросы" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Сначала нужно сформировать запрос, прежде чем искать!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Экспортировать в ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Открыть в расширенном журнале" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Внимание! Вы уверены, что хотите удалить этот сохранённый запрос?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "Сохранённый запрос был удален!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "Не удалось удалить сохранённый запрос. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "Описание запроса было обновлено!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Что-то пошло не так с сохранением. Пожалуйста, попробуйте еще раз!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12182,15 +12392,15 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Всего: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Квадратов: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12198,57 +12408,62 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Квадраты" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" +"Поиск местоположения не удался. Пожалуйста, проверьте консоль браузера." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "квадрат(/-а/-ов)" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Всего" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSL-карточка для " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Внимание! Вы уверены, что хотите удалить эту QSL-карточку?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-карточка" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL-карточка для " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "Изображение QSL-карточки" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Лицевая сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Обратная сторона QSL-карточки:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Добавить дополнительные QSO на QSL-карточку" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Что-то пошло не так. Пожалуйста, попробуйте еще раз!" @@ -12402,7 +12617,7 @@ msgid "Satellite Pass" msgstr "Прохождение спутника" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Администрирование" @@ -12427,7 +12642,7 @@ msgid "Log" msgstr "Журнал" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12524,7 +12739,7 @@ msgid "Gridsquare Zone checker" msgstr "Проверка значения зоны по квадратам" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Помощь" @@ -12659,7 +12874,7 @@ msgid "Total height of one label" msgstr "Полная высота одной наклейки" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Размер шрифта" @@ -12719,14 +12934,14 @@ msgstr "Ориентация бумаги" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Ландшафтная" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Портретная" @@ -12745,47 +12960,52 @@ msgstr "" "осмысленное, к примеру, стиль наклейки." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Отметить, что QSL напечатана" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Печать" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Параметры печати наклеек" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Добавить новый тип наклейки" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Добавить новый тип бумаги" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Типы бумаги" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Ширина" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Высота" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Используется для наклеек" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Ориентация" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Тип наклеек" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12793,55 +13013,65 @@ msgstr "Тип наклеек" msgid "QSOs" msgstr "QSO" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Используется для печати" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Не выбрана бумага" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Наклейки для QSL-карточек в ожидании" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSO в ожидании" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Просмотр QSO" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Включить мой позывной?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Включить квадрат?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Включить референцию (SIG, SOTA, POTA, IOTA, WWFF; если указано в профиле QTH)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Включить via (если заполнено)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Включить QSLMSG (если заполнено)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Включить сообщение TNX?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "С какой позиции на листе начать печать?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Введите начальную позицию для печати наклеек" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -13002,21 +13232,21 @@ msgstr "CQ зона DXCC" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Профиль QTH" @@ -13100,91 +13330,95 @@ msgstr "" "Предупреждение. Этот инструмент может быть опасен для ваших данных и должен " "использоваться только в том случае, если вы знаете, что делаете." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Все профили QTH" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "" "Проверка всех QSO в журнале на предмет указания неверных значений зон CQ" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Использовать Wavelog для определения значений зоны CQ для всех QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Проверка" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "" "Проверка всех QSO в журнале на предмет указания неверных значений зон ITU" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Использовать Wavelog для определения значений зоны ITU для всех QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Проверка квадратов" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Проверка квадратов, которые не совпадают с DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Исправить информацию о континенте" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Обновите отсутствующую или некорректную информацию о континенте" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Обновить отсутствующую информацию об области/штате/провинции" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Обновить инфомацию о дистанциях" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Рассчитать и обновить информацию о дистанции для QSO" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "Проверка всех QSO в журнале на предмет неверного DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Использовать Wavelog, чтобы определить информацию о DXCC для всех QSO." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "" "Запросить данные для QSOs с отсутствующей информацией о квадрате в колбуке" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Использовать запрос данных из колбука для определения квадрата" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Ограничение: до 150 позывных за один запуск!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Проверка IOTA по DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Использование Wavelog, для проверки IOTA по DXCC" @@ -13229,10 +13463,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Регион" @@ -13301,9 +13535,9 @@ msgid "QSL Sent Method" msgstr "Способ отправки QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL через" @@ -13327,84 +13561,84 @@ msgstr "Диапазон приёма" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Недействительный" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Верифицировано" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Напрямую" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Бюро" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Электронное" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13766,26 +14000,26 @@ msgstr "Квадраты для" msgid "Non DXCC matching gridsquare" msgstr "Квадрат, несоответствующий DXCC" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "От" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "к" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "DX" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Нет/Пусто" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13793,51 +14027,69 @@ msgstr "" "Расстояние в километрах. Будут осуществлён поиск расстояний больших или " "равных этому значению." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Продолжительность" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Продолжительность в минутах. Поиск будет искать продолжительность, большую " +"или равную этому значению." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Сортировать по столбцу" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "Время QSO" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO изменено" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Направление сортировки" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "По убыванию" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "По возрастанию" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Применить фильтры" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "QSL фильтры" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL отправлено" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13854,32 +14106,32 @@ msgstr "QSL отправлено" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "В очереди" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13908,279 +14160,279 @@ msgstr "В очереди" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Некорректно (Игнорировать)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL получено" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "Способ отправки QSL" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "Способ получения QSL" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW отправлен" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW получен" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Отправлено в Clublog" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Получено из Clublog" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL отправлено" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL получено" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL отправлено" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL получено" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "Изображения QSL" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ отправлено" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ получено" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Быстрые фильтры" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Быстрый поиск с выбранными: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Дата поиска" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Поиск DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Поиск штата" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Поиск квадрата" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Поиск зоны CQ" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Поиск зоны ITU" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Поиск вида модуляции" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Поиск диапазона" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Поиск IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Поиск SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Поиск POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Поиск WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Поиск оператора" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Предупреждение! Вы уверены, что хотите удалить отмеченные QSO?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO будут удалены" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "С выбранными: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Обновить из колбука" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "В очередь (бюро)" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "В очередь (напрямую)" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "В очередь (электронно)" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Отправлено (бюро)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Отправле (напрямую)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Отправлено (электронно)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Не отправлено" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL не требуется" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Не получена" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Получено (бюро)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Получено (напрямую)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Получено (электронно)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Создать ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Напечатать наклейки" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "Слайдшоу QSL" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# QSO" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Дубликаты" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Глобус" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Инструменты для работы с базой данных" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Последние изменённые" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "от" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL сообщение (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL сообщение (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Мой QTH локатор" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Аз. ант." -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Азимут антенны" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Возв. ант." -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Угол возвышения антенны" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Выходная мощность" @@ -14263,15 +14515,15 @@ msgstr "Результаты обновления информации о ква msgid "The number of QSOs updated for gridsquare is" msgstr "Количество QSO, в которых обновлена информация о квадрате," -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Включить via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Включить QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Включить сообщение TNX" @@ -14338,42 +14590,42 @@ msgstr "В настоящее время поддерживаются DXCC" msgid "Basic QSO Information" msgstr "Основная информация о QSO" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Подробная информация о станции" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Сервисы подтверждения" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Географическая информация" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Дипломные программы" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Дополнительная информация" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Технические детали" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Только для отладки" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" msgstr "" "Только для целей отладки и не предназначено для отображения по умолчанию" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Слои карты" @@ -14503,7 +14755,7 @@ msgid "Date Expires" msgstr "Дата окончания срока действия" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Последняя загрузка" @@ -14843,11 +15095,11 @@ msgstr "Бубт показаны споты только от споттеро #: application/views/options/email.php:45 msgid "Outgoing Protocol" -msgstr "Протокол отправки емэйл" +msgstr "Протокол отправки" #: application/views/options/email.php:50 msgid "The protocol that will be used to send out emails." -msgstr "Протокол, который будет использоваться для отправки емэйл." +msgstr "Протокол, который будет использоваться для отправки электронной почты." #: application/views/options/email.php:54 msgid "SMTP Encryption" @@ -14859,7 +15111,9 @@ msgstr "Без шифрования" #: application/views/options/email.php:60 msgid "Choose whether emails should be sent with TLS or SSL." -msgstr "Выберите, что будет использоваться при отправке емэйл: TLS или SSL." +msgstr "" +"Выберите, что будет использоваться при отправке электронной почты: TLS или " +"SSL." #: application/views/options/email.php:64 msgid "Email Sender Name" @@ -14878,7 +15132,8 @@ msgstr "Адрес электронной почты" msgid "" "The email address from which the emails are sent, e.g. 'wavelog@example.com'" msgstr "" -"Адрес, с которого будет отправляться емэйл, к примеру, 'wavelog@example.com'" +"Адрес, с которого будет отправляться электронная почта, к примеру, " +"'wavelog@example.com'" #: application/views/options/email.php:80 msgid "SMTP Host" @@ -14914,7 +15169,7 @@ msgid "" "that is used." msgstr "" "Имя пользователя для входа на почтовый сервер, обычно это — указанный выше " -"адрес емэйл." +"адрес электронной почты." #: application/views/options/email.php:104 msgid "SMTP Password" @@ -14930,7 +15185,8 @@ msgstr "Отправить тестовое сообщение" #: application/views/options/email.php:117 msgid "The email will be sent to the address defined in your account settings." -msgstr "Емэйл будет отпрален на адрес, указанный в настройках вашего аккаунта." +msgstr "" +"Письмо будет отправлено на адрес, указанный в настройках вашего аккаунта." #: application/views/options/hon.php:38 msgid "Provider for Hams Of Note" @@ -15175,9 +15431,9 @@ msgstr "Есть ли дополнительная информация, о ко #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" -msgstr "Емэйл" +msgstr "Электронная почта" #: application/views/oqrs/notinlogform.php:36 #: application/views/oqrs/request.php:62 @@ -15192,11 +15448,11 @@ msgstr "Отправить запрос 'не в журнале'" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "via" @@ -15206,7 +15462,7 @@ msgstr "Связей не найдено. Похоже, вы не были ак #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Добавить в очередь печати" @@ -15620,7 +15876,7 @@ msgstr "Отметить, что запрошенные QSL отправлены msgid "No QSLs to print were found!" msgstr "QSL для печати не найдены!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15763,7 +16019,7 @@ msgstr "Укажите мощность в Ваттах (только цифры #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Мощность передачи (Вт)" @@ -15825,9 +16081,9 @@ msgid "Station County" msgstr "Район (округ)" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "Информация SIG" @@ -15875,7 +16131,7 @@ msgstr "Примечание: Не редактируется. Только от #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Модифицированный" @@ -16000,16 +16256,16 @@ msgstr "Поиск в DX кластере последнего спота" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "Справочник IOTA" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "Справочник SOTA" @@ -16049,11 +16305,11 @@ msgstr "Например: Q03" msgid "E-mail address of QSO-partner" msgstr "Адрес электронной почты корреспондента в QSO" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Название спутника" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Вид модуляции (для спутника)" @@ -16158,7 +16414,7 @@ msgstr "Активные радиостанции" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "Ниже приведен список активных радиостанций, подключенных к Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16166,16 +16422,33 @@ msgstr "" "Если вы еще не подключили ни одной радиостанции, посмотрите страницу API, " "чтобы сгенерировать ключи API." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Как оператор коллективной станции, вы можете выбрать интерфейс радиостанции " +"по умолчанию, который будет использоваться только в вашем профиле. Этот " +"интерфейс будет автоматически выбираться при входе в систему, при этом вы " +"всё равно можете использовать другие интерфейсы радиостанций, если захотите." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Как обычный пользователь, вы можете выьрать интерфейс радиостанции по " +"умолчанию для себя. Этот интерфейс будет выбираться при входе в систему, при " +"этом всегда можно использовать другие интерфейсы радиостанций если захочется." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "О том, как использовать %s, вы можете узнать в вики." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Информация об использовании функций %sрадио%s опубликована на вики." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "интерфейс радиостанции" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Пожалуйста, подождите..." @@ -16519,13 +16792,6 @@ msgstr "Время AOS" msgid "LOS Time" msgstr "Время LOS" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Продолжительность" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Траектория" @@ -16641,6 +16907,11 @@ msgstr "Сохранить запрос" msgid "Stored queries" msgstr "Сохранённые запросы" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "О том, как использовать %s, вы можете узнать в вики." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "функции фильтров поиска" @@ -16716,35 +16987,35 @@ msgstr "Отметить, что QSL отправлена напрямую" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Отметить, что QSL получена через бюро" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Отметить, что QSL получена напрямую" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Отметить, что QSL запрошена через бюро" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Отметить, что QSL запрошена напрямую" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Отметить, что QSL не требуется" @@ -17284,7 +17555,7 @@ msgstr "Данные SIG (например, DA/NW-357)." #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Проблемы? Смотри в %swiki%s." @@ -17433,13 +17704,14 @@ msgstr "OQRS включен" #: application/views/station_profile/create.php:412 #: application/views/station_profile/edit.php:443 msgid "OQRS Email alert" -msgstr "Оповещение о OQRS о емэйл" +msgstr "Оповещение о OQRS по электронной почте" #: application/views/station_profile/create.php:417 #: application/views/station_profile/edit.php:448 msgid "Make sure email is set up under admin and global options." msgstr "" -"Убедитесь, что емэйл сконфигурирован администратором в общих настройках." +"Убедитесь, что электронная почта сконфигурирована в администивных и общих " +"настройках." #: application/views/station_profile/create.php:420 #: application/views/station_profile/edit.php:451 @@ -17499,7 +17771,7 @@ msgid "Link Location" msgstr "Привязать профиль QTH" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Профиль QTH" @@ -17518,19 +17790,19 @@ msgstr "" "в одном месте: от журнала до аналитики. Удобно, к примеру, когда работаешь " "из нескольких мест, но они входят в один и тот же DXCC или в круг VUCC." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Редактировать привязанные профили QTH" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Публичная страница" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Профили QTH" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17538,11 +17810,11 @@ msgstr "" "Профили QTH определяют места работы, к примеру: ваш QTH, QTH друга или \"в " "поле\"." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "Также, как и журнал, профиль станции хранит в одном месте набор QSO." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17550,7 +17822,7 @@ msgstr "" "Только один профиль QTH может быть активен в каждый момент. В таблице ниже " "он отмечен меткой -Активный профиль QTH-." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17558,23 +17830,23 @@ msgstr "" "Столбец \"Привязка\" показывает привязан ли профиль QTH к активному журналу, " "выбранному выше." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Создать профиль QTH" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Показать местоположения только для активного журнала" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Показать все местоположения" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Показать список профилей QTH" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17582,7 +17854,7 @@ msgstr "" "Внимание. Вам нужно установить активный профиль QTH. Перейдите в меню " "Позывной->профили QTH, чтобы выбрать активный профиль." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17590,23 +17862,23 @@ msgstr "" "Из-за недавних изменений в Wavelog вам нужно переназначить QSO вашим " "профилям станции." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Обслуживание" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Пожалуйста, переназначьте их в " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Привязка" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Избранные" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "отметить/снять отметку как избранный" @@ -18355,43 +18627,47 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Показать поля на вкладке QSO" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Отображение карты в окне QSO" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Включенные элементы будут отображаться на вкладке QSO, а не на вкладке " "General." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Настройки онлайн-запроса QSL (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Сообщение на странице OQRS" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Необязательный текст, который может быть отображён в верхней части страницы " "OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Объединённый поиск" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Выкл" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Вкл" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18399,11 +18675,11 @@ msgstr "" "Если включено, то поиск будет осуществляться во всех профилях QTH, где " "активен OQRS." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Показывать название профиля QTH в сгруппированных результатах поиска" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18411,11 +18687,11 @@ msgstr "" "Если включен групповой поиск, вы можете решить, должно ли название профиля " "QTH отображаться в таблице результатов." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Автоматическая обработка OQRS" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18423,70 +18699,70 @@ msgstr "" "Если включено, будет выполнена автоматическая обработка OQRS, т.е. система " "попытается автоматически сопоставить входящие запросы с существующими логами." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Автоматическая обработка OQRS для запросов напрямую" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Если включено, будет выполнена автоматическая обработка OQRS для заппросов " "напрямую, т.е. система попытается автоматически сопоставить входящие запросы " "с существующими логами." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Значения по умолчанию" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Настройки для диапазона и способ подтверждения (QSL) по умолчанию" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Диапазон по умолчанию" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Способы подтверждения (QSL) по умолчанию" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Сторонние сервисы" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Логин" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Пароль" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Тестовый вход" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Логин" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Пароль" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Clublog" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Адрес электронной почты аккаунта в Clublog" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Пароль" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18496,15 +18772,15 @@ msgstr "" "сгенерировать пароль приложения для использования Clublog в Wavelog. " "Посетите %sстраницу настроек вашего Clublog%s, чтобы сделать это." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Виджеты" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "Виджет \"В эфире\"" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18512,16 +18788,16 @@ msgstr "" "Примечание: Чтобы использовать этот виджет, у вас должен быть настроен и " "работать, как минимум, один интерфейс радиостанции." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "После включения виджет будет доступен на %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Отобразить время \"Последней активности\"" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18529,15 +18805,15 @@ msgstr "" "Эта настройка управляет отображением времени \"Последней активности\" в " "виджете." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Отображать только недавно обновлённые данные от радиостанции" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Нет, отображать все радиостанции" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18549,15 +18825,15 @@ msgstr "" "пользователя или только последнюю обновленную. Если у вас настроена только " "одна радиостанция, эта настройка не имеет эффекта." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSO виджет" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Отображать точное время QSO" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18565,40 +18841,40 @@ msgstr "" "Эта настройка контролирует, следует ли отображать точное время QSO в виджете " "QSO или нет." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Разное" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Загрузка статуса AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Загружать статус QSO через спутники в" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Сервер Mastodon" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL профиля пользователя Mastodon" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Главный URL вашего сервера Mastodon, т.е. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Функционал Winkeyer включен" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18607,25 +18883,25 @@ msgstr "" "Поддержка Winkeyer в Wavelog является очень экспериментальной. Перед " "включением сначала прочитайте вики в %s." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Приватный ключ потока" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Смотри свой профиль на %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Показывать только пригодные для работы витки" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18634,7 +18910,7 @@ msgstr "" "квадрате, установленном в вашем аккаунте на hams.at. Требуется указание " "приватного ключа потока." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Сохранить изменения" @@ -19062,7 +19338,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "последнее отправленное" @@ -19090,119 +19366,127 @@ msgstr "Суммарная дистанция" msgid "Other Path" msgstr "Другой путь" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"В поле VUCC gridsquares был введён один квадрат, должно быть введено два или " +"четыре квадрата вместо одного." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Азимут антенны" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Возвышение антенны" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL карточка была отправлена через бюро" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL карточка была отправлена напрямую" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "Электронная QSL карточка была отправлена" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL карточка была отправлена через QSL-менеджера" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL карточка была отправлена" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL карточка была получена через бюро" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL карточка была получена напрямую" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "Электронная QSL карточка была получена" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL карточка была получена через QSL-менеджера" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL карточка была получена" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Эта станция использует LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Это QSO было подтверждено" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Это QSO подтверждено на LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Это QSO подтверждено на eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Это QSO подтверждено на QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Это QSO подтверждено на Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Это QSO подтверждено на DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Больше QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Поделиться" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Подробно" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Загруженное изображение лицевой стороны QSL карточки" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Загрузить изображение для QSL карточки" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Загруженное изображение оборотной стороны QSL карточки" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Отметить, что QSL получена электронно" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "изображение eQSL-карточки" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO не найдено" @@ -19393,6 +19677,19 @@ msgstr "CQ" msgid "CQz geojson" msgstr "CQ geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "В настоящее время кэш использует запасной адаптер, так как основной " +#~ "недоступен." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Ошибка при получении ключа сеанса для запроса HamQTH" + +#~ msgid "radio functions" +#~ msgstr "интерфейс радиостанции" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Некорректно записанные зоны CQ" diff --git a/application/locale/sk/LC_MESSAGES/messages.mo b/application/locale/sk/LC_MESSAGES/messages.mo index 3464cf23c..5ce8a4208 100644 Binary files a/application/locale/sk/LC_MESSAGES/messages.mo and b/application/locale/sk/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sk/LC_MESSAGES/messages.po b/application/locale/sk/LC_MESSAGES/messages.po index 02cc27543..7105f428e 100644 --- a/application/locale/sk/LC_MESSAGES/messages.po +++ b/application/locale/sk/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-01-26 21:21+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-03 16:07+0000\n" "Last-Translator: Viliam Petrik \n" "Language-Team: Slovak \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -71,8 +71,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -83,11 +83,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -118,11 +118,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -143,8 +143,8 @@ msgid "Activated Gridsquare Map" msgstr "Mapa aktivovaných lokátorov" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -306,51 +306,51 @@ msgstr "API kľúč %s bol vymazaný" msgid "Awards" msgstr "Diplomy" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Diplomy - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -359,13 +359,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -377,29 +377,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Diplomy - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Diplomy - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Zobrazenie denníka - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -412,43 +412,58 @@ msgstr "Zobrazenie denníka - VUCC" msgid "Log View" msgstr "Zobrazenie denníka" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " a pásmo " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "a" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Každé pásmo (bez SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "pásmo" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " a satelit " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " a druh orbity " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " a šírenie " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " a mód " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " a " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -469,14 +484,14 @@ msgstr " a " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -491,16 +506,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -514,111 +529,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "Okresy USA" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Zobrazenie denníka - okresy" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Diplomy " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Lokátory urobené" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Lokátory potvrdené cez LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Lokátory potvrdené papierovými QSL" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Celkový počet urobených lokátorov" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Diplomy - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "ITU zóny" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -649,8 +664,7 @@ msgstr "Vytvoriť mód" msgid "Edit Band" msgstr "Úprava pásma" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -683,15 +697,24 @@ msgstr "CBR dáta naimportované" msgid "Callsign statistics" msgstr "Štatistiky volacích znakov" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " a pásmo " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " a sat " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Overovanie značky" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "CSV tester značiek" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Overovač značiek" @@ -774,28 +797,31 @@ msgid "No user has configured Clublog." msgstr "Žiadny používateľ nekonfiguroval Clublog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -827,7 +853,7 @@ msgid "Update Contest" msgstr "Aktualizovať contest" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -845,12 +871,12 @@ msgstr "Upraviť Cronjob" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "nikdy" @@ -925,14 +951,14 @@ msgstr "Import DCL kľúča" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -962,7 +988,7 @@ msgstr "Kľúč(e) vymazaný(é)." #: application/controllers/Debug.php:114 msgid "(empty)" -msgstr "" +msgstr "(prázdne)" #: application/controllers/Debug.php:132 msgid "Debug" @@ -1179,7 +1205,7 @@ msgstr "Žiadne QSOs na nahratie." msgid "KML Export" msgstr "KML export" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "Štítky QSL kariet" @@ -1187,59 +1213,59 @@ msgstr "Štítky QSL kariet" msgid "Create Label Type" msgstr "Vytvoriť typ štítku" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Názov štítku" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Typ papiera" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Meranie" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Horný okraj" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Ľavý okraj" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSL horizontálne" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSL vertikálne" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Horizontálna medzera" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Vertikálna medzera" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Šírka štítka" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Výška štítka" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Veľkosť písma" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Počet spojení na štítku" @@ -1248,22 +1274,22 @@ msgid "Create Paper Type" msgstr "Vytvoriť typ papiera" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Názov papiera" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Šírka papiera" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Výška papiera" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1271,18 +1297,18 @@ msgstr "" "Vaša práca sa nedala uložiť. Pamätajte, že nemôže mať rovnaký názov ako " "existujúce typy prác." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Pred tlačou musíš k štítku priradiť typ papiera" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "Musíš vytvoriť štítok a nastaviť ho na tlač." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1290,31 +1316,31 @@ msgstr "" "Niečo sa pokazilo! Štítok nebolo možné vygenerovať. Skontroluj veľkosť " "štítka a veľkosť písma." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "Neboli nájdené žiadne QSO na tlač!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Upraviť štítok" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Štítok bol uložený." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Štítok bol odstránený." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Upraviť papier" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Papier bol uložený." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Papier bol vymazaný." @@ -1338,55 +1364,55 @@ msgstr "Staničné denníky" msgid "Logbook" msgstr "Logbook" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1394,93 +1420,96 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "" +"Všetky vyhľadávania v callbooku zlyhali alebo neposkytli žiadne výsledky." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1488,7 +1517,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1505,13 +1534,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1550,15 +1579,15 @@ msgstr "" msgid "Mode" msgstr "Mód" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1579,15 +1608,15 @@ msgstr "Mód" msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1609,7 +1638,7 @@ msgstr "RST (S)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1618,29 +1647,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Krajina" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1653,7 +1682,7 @@ msgstr "Krajina" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1661,7 +1690,7 @@ msgstr "Krajina" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1670,12 +1699,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1684,7 +1713,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1692,7 +1721,7 @@ msgstr "IOTA" msgid "State" msgstr "Štát" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1701,19 +1730,19 @@ msgstr "Štát" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1729,20 +1758,20 @@ msgstr "Štát" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Lokátor" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1752,9 +1781,9 @@ msgstr "Lokátor" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1772,18 +1801,18 @@ msgstr "Lokátor" msgid "Distance" msgstr "Vzdialenosť" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1791,25 +1820,26 @@ msgstr "Vzdialenosť" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1820,13 +1850,13 @@ msgstr "Vzdialenosť" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1865,13 +1895,14 @@ msgstr "Vzdialenosť" msgid "Band" msgstr "Pásmo" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1892,13 +1923,13 @@ msgstr "Pásmo" msgid "Frequency" msgstr "Frekvencia" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1911,21 +1942,21 @@ msgstr "Frekvencia" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operátor" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1934,14 +1965,14 @@ msgstr "Operátor" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "Zrušené DXCC" @@ -1949,12 +1980,12 @@ msgstr "Zrušené DXCC" msgid "Advanced logbook" msgstr "Pokročilý denník" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC aktualizované pre %d spojenie/í." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Mapa pre DXCC %s a lokátor %s." @@ -1969,7 +2000,7 @@ msgstr "Rýchly náhľad" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1981,11 +2012,11 @@ msgstr "Certifikát importovaný." msgid "Certificate Updated." msgstr "Certifikát aktualizovaný." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certifikát bol zmazaný." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -1997,7 +2028,7 @@ msgstr "" "%sUistite sa, že exportujete LoTW certifikát z tqsl aplikácie bez hesla!%s " "Pre ďalšie informácie navštívte %sLoTW FAQ stránku%s vo Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2008,51 +2039,51 @@ msgstr "" "názov súboru obsahuje 'key-only', ide zvyčajne o žiadosť o certifikát, ktorá " "ešte nebola spracovaná službou LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Všeobecná chyba pri spracovaní certifikátu v súbore %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Všeobecná chyba pri extrahovaní súkromného kľúča z certifikátu v súbore %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF Informácie" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Pripojenie k LoTW zlyhalo." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "Prihlásenie do LoTW zlyhalo pre používateľa %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Nesprávne používateľské meno/heslo" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW momentálne nie je dostupný. Skús to znova neskôr." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "Prihlásenie na LoTW OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Nie sú zadané žiadne údaje pre LoTW." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW ADIF Import" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Nezadali ste svoje údaje pre ARRL LoTW!" @@ -2077,7 +2108,7 @@ msgstr "Režim úprav" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Poznámky" @@ -2398,19 +2429,19 @@ msgstr "Nahrať QSL karty" msgid "Print Requested QSLs" msgstr "Požadované QSL vytlačiť" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Pridať QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Na prístup k tejto URL adrese sa musíte prihlásiť." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Prenos volacej značky" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Nebola uvedená žiadna volacia značka." @@ -2419,18 +2450,18 @@ msgstr "Nebola uvedená žiadna volacia značka." msgid "Hardware Interfaces" msgstr "Hardvérové rozhrania" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Rádio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Časová značka" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2438,61 +2469,65 @@ msgstr "Časová značka" msgid "Options" msgstr "Možnosti" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Nastavenia" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Predvolené (kliknutím zrušíte)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Nastaviť ako predvolenú rádiostanicu" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "NEZNÁME" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "naposledy aktualizované" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Nastaviť ako predvolenú rádiostanicu" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Predvolené (kliknutím zrušíte)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Upraviť" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2501,22 +2536,38 @@ msgstr "Upraviť" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Vymazať" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket je momentálne predvolený (kliknutím uvoľniť)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Nastav WebSocket ako predvolené rádio" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Nenašlo sa žiadne rádio s CAT rozhraním." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "WebSocket môžete stále nastaviť ako svoje predvolené rádio." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Upraviť nastavenia CAT" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Rádio bolo úspešne odstránené" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "EDI export" @@ -2584,7 +2635,7 @@ msgstr "Nemáš žiadne stanice. Choď %s a vytvor ich!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2595,13 +2646,13 @@ msgstr "tu" msgid "Satellite Timers" msgstr "Satelitné časovače" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2656,7 +2707,8 @@ msgstr "Upraviť polohu stanice " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2664,7 +2716,7 @@ msgstr "Upraviť polohu stanice " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2677,7 +2729,7 @@ msgid "Duplicate Station Location:" msgstr "Duplicitná poloha stanice:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Skontroluj hodnotu pre lokátor (%s)" @@ -2740,7 +2792,8 @@ msgstr "Chyba. Odkaz sa už používa!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2748,19 +2801,19 @@ msgid "Disabled" msgstr "Vypnuté" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Nastaviť ako aktívny denník" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Aktívny denník" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2770,7 +2823,7 @@ msgstr "" "polohy pripojené sem k inému denníku." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Zobraziť verejnú stránku pre denník: " @@ -2779,19 +2832,19 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Si naozaj istý, že chceš zmazať verejný slug?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "Si si istý, že chceš nastaviť profil stanice %s ako aktívnu stanicu?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Aktivovať" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Aktívna stanica" @@ -2799,32 +2852,32 @@ msgstr "Aktívna stanica" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" "Ste si istí, že chcete odstrániť všetky QSO v rámci tohto profilu stanice?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Prázdny denník" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Kopírovať" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2837,7 +2890,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Prosím vyberte jeden" @@ -2917,103 +2970,103 @@ msgstr "Príprava výnimiek DXCC: " msgid "Preparing DXCC Prefixes: " msgstr "Príprava DXCC prefixov: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "HOTOVO" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Aktualizácia..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC entity:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Výnimky DXCC:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "DXCC prefixy:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "Aktualizácia SCP kompletná. Výsledok: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "Aktualizácia SCP zlyhala. Výsledok: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "Aktualizácia používateľov LoTW je dokončená. Výsledok: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "Aktualizácia používateľov LoTW zlyhala. Výsledok: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "Aktualizácia DOK dokončená. Výsledok: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "Aktualizácia DOK zlyhala. Výsledok: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "Aktualizácia SOTA dokončená. Výsledok: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "Aktualizácia SOTA zlyhala. Výsledok: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "Aktualizácia WWFF dokončená. Výsledok: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "Aktualizácia WWFF zlyhala. Výsledok: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "Aktualizácia HAMqsl dokončená. Výsledok: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "Aktualizácia HAMqsl zlyhala. Výsledok: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "Aktualizácia POTA dokončená. Výsledok: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "Aktualizácia POTA zlyhala. Výsledok: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "Aktualizácia TLE dokončená. Výsledok: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "Aktualizácia TLE zlyhala. Výsledok: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT aktualizácia" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Update Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "Aktualizácia súboru VUCC lokátorov dokončená. Výsledok: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "Aktualizácia súboru VUCC lokátorov zlyhala. Výsledok: " @@ -3047,61 +3100,61 @@ msgstr "Neplatný parameter!" msgid "Add User" msgstr "Pridať používateľa" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Používateľské meno %s je už obsadené!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-mail %s sa už používa!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Neplatné heslo!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Používateľ %s pridaný!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Používatelia" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Upraviť používateľa" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Používateľ %s upravený" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profil" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Vymazať používateľa" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Používateľ bol odstránený" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Používateľa sa nepodarilo vymazať!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Chyba databázy:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3109,29 +3162,29 @@ msgstr "" "Gratulujeme! Wavelog bol úspešne nainštalovaný. Teraz sa môžete prihlásiť " "prvýkrát." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "To nie je povolené!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Prihlásenie zlyhalo. Skúste to znova." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Prihlásiť sa" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Nemôžeš sa priamo prihlásiť do klubovej stanice. Použi radšej svoj osobný " "účet." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3139,7 +3192,7 @@ msgstr "" "Váš účet je zablokovaný kvôli príliš veľa neúspešným pokusom o prihlásenie. " "Prosím, obnovte svoje heslo." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3149,52 +3202,52 @@ msgstr "" "správa objaví neočakávane alebo sa stále zobrazuje, kontaktujte správcu. Len " "administrátori sa môžu momentálne prihlásiť." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Nesprávne používateľské meno alebo heslo!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Používateľ %s sa odhlásil." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Názov stanice" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Značka stanice" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "DXCC stanice" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "CQ zóna stanice" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "ITU zóna stanice" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Lokátor stanice" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3203,48 +3256,48 @@ msgstr "" "Stanica bola úspešne vytvorená! Vitajte vo Wavelog! Na dokončenie nastavenia " "stanice kliknite %ssem%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "Stanica nebola nastavená! Nastav svoju stanicu manuálne." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "Obnovenie hesla je v demo režime zakázané!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Zabudnuté heslo" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "Nastavenia e-mailu sú nesprávne." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Proces resetovania hesla bol spracovaný." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Obnoviť heslo" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "" "Nepodarilo sa nastaviť účet na toto používateľské meno. Skúste iné ako „%s“." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "Nedá sa nastaviť účet na tento email. Skúste inú adresu ako \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3253,7 +3306,7 @@ msgstr "" "Momentálne nemôžete predstierať, že ste iný používateľ. Musíte nastaviť %s " "na %s vo vašom config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3262,15 +3315,15 @@ msgstr "" "Momentálne nemôžete predstierať, že ste iný používateľ. Najprv zmeňte " "encryption_key vo svojom súbore config.php!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Neplatný hash" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "Impersonizačný hash je príliš starý. Skúste to znova." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3278,15 +3331,15 @@ msgstr "" "Nemôžeš sa vydávať za iného používateľa, keď nie si prihlásený ako zdrojový " "používateľ" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Vyskytol sa problém s vašou reláciou. Skúste to znova." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "Požadovaný používateľ na zosobnenie neexistuje" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3294,13 +3347,13 @@ msgstr "" "Nemožno určiť správnu úroveň povolení pre klubovú stanicu. Skúste to znova " "po opätovnom prihlásení." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Ups.. Niečo sa pokazilo. Skús sa znovu prihlásiť." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3308,7 +3361,7 @@ msgstr "" "Možnosť rýchlo sa vrátiť bola deaktivovaná po vypršaní bezpečnostného hashu. " "Prosím, prihláste sa znova." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3321,7 +3374,7 @@ msgid "Satellite Gridsquare Map" msgstr "Satelitná lokátorová mapa" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Verejné vyhľadávanie" @@ -3372,14 +3425,19 @@ msgstr "Viacero používateľov nájdených podľa slugu" msgid "Gridsquare Zone finder" msgstr "Vyhľadávač lokátorových zón" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Náhľad nie je nakonfigurovaný. Skontroluj konfiguráciu." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "Chyba pri získavaní kľúča relácie pre callbook. Chyba: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "Chyba QRZCQ" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Chyba pri získavaní kľúča relácie pre dotaz HamQTH" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3528,28 +3586,28 @@ msgstr "" #: application/models/Logbook_model.php:311 msgid "Station not accessible" -msgstr "" +msgstr "Stanica nie je prístupná" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "ID stanice nie je povolené" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Nezadaný volací znak" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC musí byť číselné" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Nesprávna volacia značka stanice %s pri importe QSO s %s pre %s: PRESKOČENÉ" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3557,11 +3615,11 @@ msgstr "" "Pokúsil si sa importovať QSO bez platného dátumu. Toto QSO nebolo " "importované. Je neplatné" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO o" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3569,7 +3627,7 @@ msgstr "" "Pokúsil si sa importovať QSO bez uvedenej značky. Toto QSO nebolo " "importované. Je neplatné." -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3578,64 +3636,64 @@ msgstr "" "QSO na %s: Pokúsil si sa importovať QSO bez uvedeného pásma. Toto QSO nebolo " "importované. Je neplatné." -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate je neplatné (YYYYMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate je neplatné (RRRRMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date je neplatné (YYYYMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Duplicita pre" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSO nebolo možné spárovať" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "potvrdené cez LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "potvrdené diplomovým manažérom" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "potvrdené krížovou kontrolou údajov DCL" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "potvrdenie čaká" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "nepotvrdené" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "neznáme" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "POTA referencia už v logu" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO aktualizované" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3649,7 +3707,7 @@ msgstr "QSO aktualizované" msgid "Bearing" msgstr "Smerovanie" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "" "Tabuľka VuccGrids je prázdna. Najprv importujte údaje o VUCC lokátoroch." @@ -3788,42 +3846,40 @@ msgstr "Rozdiel" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3852,33 +3908,33 @@ msgstr "Rozdiel" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3899,7 +3955,7 @@ msgstr "Rozdiel" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Všetko" @@ -3943,12 +3999,12 @@ msgstr "Obdobie" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Šírenie" @@ -3964,7 +4020,7 @@ msgstr "Všetko okrem SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Žiadne/prázdne" @@ -3974,11 +4030,11 @@ msgstr "Žiadne/prázdne" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Aircraft Scatter" @@ -3988,11 +4044,11 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4002,11 +4058,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4016,11 +4072,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -4030,11 +4086,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4044,11 +4100,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Earth-Moon-Earth" @@ -4058,11 +4114,11 @@ msgstr "Earth-Moon-Earth" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadická E vrstva" @@ -4072,11 +4128,11 @@ msgstr "Sporadická E vrstva" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Field Aligned Irregularities" @@ -4086,11 +4142,11 @@ msgstr "Field Aligned Irregularities" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2 odraz" @@ -4100,11 +4156,11 @@ msgstr "F2 odraz" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Internetovo asistované" @@ -4114,11 +4170,11 @@ msgstr "Internetovo asistované" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4128,11 +4184,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4142,11 +4198,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor scatter" @@ -4156,11 +4212,11 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Pozemský alebo atmosférický opakovač alebo transpondér" @@ -4170,11 +4226,11 @@ msgstr "Pozemský alebo atmosférický opakovač alebo transpondér" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Rain scatter" @@ -4184,11 +4240,11 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satelit" @@ -4198,11 +4254,11 @@ msgstr "Satelit" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-ekvatoriálny" @@ -4212,11 +4268,11 @@ msgstr "Trans-ekvatoriálny" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Tropo ducting" @@ -4225,18 +4281,18 @@ msgstr "Tropo ducting" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4248,21 +4304,21 @@ msgstr "Tropo ducting" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Ukáž" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4273,7 +4329,7 @@ msgstr "Ukáž" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4282,19 +4338,25 @@ msgstr "Ukáž" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satelit" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4314,22 +4376,22 @@ msgstr "Potvrdenie" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4375,11 +4437,11 @@ msgstr "Minimálny počet" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4388,11 +4450,10 @@ msgstr "Minimálny počet" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4412,7 +4473,8 @@ msgstr "Nič sa nenašlo!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4428,12 +4490,13 @@ msgstr "Nič sa nenašlo!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4457,7 +4520,7 @@ msgstr "Nič sa nenašlo!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Volacia značka" @@ -4468,12 +4531,12 @@ msgstr "Počet" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Ukáž QSOs" @@ -4539,7 +4602,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4563,11 +4626,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4581,12 +4644,12 @@ msgstr "Dátum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4601,7 +4664,7 @@ msgstr "Dátum" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4614,7 +4677,7 @@ msgstr "Čas" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4669,20 +4732,20 @@ msgstr "Dôležité" msgid "Log Files must have the file type *.adi" msgstr "Súbory denníkov musia mať typ súboru *.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Maximálna veľkosť nahrávaného súboru je " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4742,8 +4805,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "NEBEZPEČENSTVO" @@ -5124,8 +5187,8 @@ msgstr "POTA REF v ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Stav" @@ -5144,7 +5207,7 @@ msgstr "Jednoduché pomenovanie významu tohto API." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5210,7 +5273,7 @@ msgstr "URL API pre túto instanciu Wavelogu je" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5262,7 +5325,7 @@ msgstr "Povolenia" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5307,7 +5370,7 @@ msgstr "Vytvoriť kľúč iba na čítanie" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5316,8 +5379,8 @@ msgstr "Vytvoriť kľúč iba na čítanie" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5334,14 +5397,14 @@ msgstr "Vytvoriť kľúč iba na čítanie" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5397,9 +5460,9 @@ msgid "Filtering on" msgstr "Filtrovanie zapnuté" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Okres" @@ -5453,19 +5516,14 @@ msgid "Counties Confirmed" msgstr "Potvrdené okresy" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5487,22 +5545,23 @@ msgid "Total" msgstr "Celkovo" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5555,10 +5614,12 @@ msgid "Awards - CQ WAZ" msgstr "Diplomy - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filtre" @@ -5568,92 +5629,114 @@ msgid "Show CQ Zone Map" msgstr "Zobraziť mapu CQ zón" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Predvolené dátumy" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Dnes" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Včera" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Posledných 7 dní" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Posledných 30 dní" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Tento mesiac" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Minulý mesiac" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Tento rok" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "Minulý rok" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Vyčistiť" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5661,7 +5744,9 @@ msgid "Date from" msgstr "Dátum od" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5669,11 +5754,10 @@ msgid "Date to" msgstr "Dátum do" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5683,9 +5767,8 @@ msgid "Confirmed" msgstr "Potvrdené" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5695,67 +5778,64 @@ msgstr "Urobené" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Ukáž urobené" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Zobraziť potvrdené" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Zobraziť neurobené" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5763,95 +5843,161 @@ msgstr "Zobraziť spojenie s typom QSL" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL karta" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabuľka" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Mapa" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legenda:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL-papierová-karta" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-\"potvrdené\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) urobené" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Zhrnutie" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Spolu (bez SAT)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Spolu urobené" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5916,15 +6062,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Urobené / Potvrdené" @@ -5933,11 +6079,9 @@ msgstr "Urobené / Potvrdené" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Každé pásmo" @@ -5945,23 +6089,20 @@ msgstr "Každé pásmo" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Resetovať" @@ -6018,161 +6159,127 @@ msgstr "" "Pre tento diplom sa používajú oblasti: DXCC (musí byť platné z DXCC-ADIF-" "Spec-Listu" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Zobraziť mapu DXCC" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Zahrnúť zmazané" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antarktída" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Afrika" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Ázia" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Európa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Severná Amerika" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Južná Amerika" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oceánia" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Každé pásmo (bez SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legenda:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL-papierová-karta" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-\"potvrdené\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) urobené" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "DXCC názov" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefix" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" "Podľa vašich vyhľadávacích kritérií neboli nájdené žiadne výsledky. Skúste " @@ -6442,23 +6549,23 @@ msgstr "Zobraziť IOTA mapu" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Meno" @@ -6467,14 +6574,14 @@ msgid "Deleted" msgstr "Zrušené" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6484,7 +6591,7 @@ msgstr "Zrušené" msgid "ITU Zone" msgstr "ITU zóna" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6496,21 +6603,21 @@ msgstr "" "minimálne 70 z 75 vysielacích zón definovaných Medzinárodnou " "telekomunikačnou úniou (ITU)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Viac informácií nájdete na webovej stránke %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Pre tento diplom sa používajú oblasti: ITU-Zóna (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Awards - ITU Zones" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Zobraziť mapu zón ITU" @@ -6566,7 +6673,7 @@ msgstr "Výsledky" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Mesto" @@ -6575,8 +6682,10 @@ msgstr "Mesto" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6711,7 +6820,7 @@ msgstr "Vojvodstvo" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Kód" @@ -6727,7 +6836,7 @@ msgstr "PHONE" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6765,8 +6874,8 @@ msgid "Band Categories" msgstr "Kategórie pásiem" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Opraviť štát" @@ -6839,8 +6948,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "POTA referencia(e)" @@ -6851,6 +6960,7 @@ msgstr "Provincia" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Umiestni kurzor na provinciu" @@ -6917,7 +7027,7 @@ msgid "Reference" msgstr "Referencie" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6984,7 +7094,7 @@ msgstr "" "potvrdených lokátorových štvorcov na požadovanej pásme." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "Oficiálne informácie a pravidlá nájdete v tomto dokumente: %s." @@ -7068,25 +7178,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Awards - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Kontinent" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "WAE Award" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7096,7 +7211,7 @@ msgstr "" "amatérskymi rádiostanicami v európskych krajinách a na ostrovoch uvedených v " "zozname krajín WAE na rôznych pásmach." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7106,11 +7221,11 @@ msgstr "" "a Mixed Modes. Vydáva sa v piatich triedach: WAE III, WAE II, WAE I, WAE TOP " "a WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Pre tento diplom sa používajú oblasti: Región, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "WAE názov" @@ -7161,7 +7276,7 @@ msgid "Show WAJA Map" msgstr "Zobraziť WAJA mapu" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefektúra" @@ -7225,15 +7340,20 @@ msgid "Show WAP Map" msgstr "Zobraziť WAP mapu" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Provincia" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Provincia" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Worked All Provinces of China" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7245,7 +7365,7 @@ msgstr "" "autonómnych oblastiach a osobitných administratívnych oblastiach Číny, čím " "podporuje lepšie porozumenie Číne." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7253,7 +7373,7 @@ msgstr "" "Diplom možno získať dlhodobým zhromažďovaním spojení alebo dosiahnuť " "jednorazovým úsilím počas každoročného WAPC contest-u." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7263,6 +7383,10 @@ msgstr "" "HongKong/321, Macao/152, Taiwan/386, Pratas Isl./505 alebo Scarborough " "Reef/506) a platný štát (ADIF: DXCC a STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Zobraziť mapu WAPC" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7375,8 +7499,8 @@ msgstr "Pre tento diplom sa používajú oblasti: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "WWFF referencie" @@ -7426,219 +7550,219 @@ msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "Záloha vašich poznámok bola úspešne dokončená. Výstup nájdete na" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klikni na začatie logovania." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "na naladenie frekvencie" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Vyskakovacie okno zablokované" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" "Vyskakovacie okno bolo zablokované! Prosím, povoľte vyskakovacie okná pre " "túto stránku natrvalo." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "Je potrebné pripojenie CAT" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Povoľte pripojenie CAT na ladenie rádia" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Vymazať filtre" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Pásmový filter zachovaný (pásmový zámok je aktívny)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Rádio nastavené na Žiadne - CAT pripojenie deaktivované" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Rádio naladené" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Naladené na" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Ladenie zlyhalo" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Nepodarilo sa naladiť rádio na frekvenciu" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO pripravené" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "odoslané do formulára denníka" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT pripojenie" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Kliknutím povolíte pripojenie CAT" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT sleduje rádio - kliknutím vypnete" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klikni na povolenie pásmového zámku (vyžaduje pripojenie CAT)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Pásmový zámok je aktívny - kliknutím deaktivujete" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Pásmový zámok" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Pásmový zámok povolený - pásmový filter bude sledovať rádiové pásmo" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Pásmový filter zmenený na" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "cez transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Nastavený frekvenčný filter na" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frekvencia mimo známych pásiem - zobraziť všetky pásma" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Čakanie na dáta z rádia..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Moje obľúbené" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Nepodarilo sa načítať obľúbené položky" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" "Módy boli použité. Pásmový filter zachovaný (pripojenie CAT je aktívne)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Použité tvoje obľúbené pásma a módy" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Moje podmódy" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Podmódový filter povolený" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Podmódový filter vypnutý - zobrazenie všetkého" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "Vyžadované podmódy" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Nastavte v používateľských nastaveniach - Módy" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Nie sú nakonfigurované žiadne podmódy - nakonfigurujte v nastaveniach " "používateľa - Módy" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" "Žiadne podmódy nie sú v nastaveniach povolené - zobrazujú sa všetky spoty" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Vypnuté - žiadne podmódy nie sú pre tento mód povolené v nastaveniach " "používateľa" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Prepnúť filter módu CW" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Prepnúť filter digitálnych módov" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Prepnúť filter fónických módov" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Obľúbené" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Uložiť aktuálne filtre..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Zadajte názov pre tento filter:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Prednastavenie filtra uložené" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Prednastavenie filtra bolo načítané" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Prednastavenie filtra odstránené" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Naozaj chceš odstrániť toto prednastavenie filtra?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Žiadne uložené prednastavenia filtrov" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." @@ -7646,64 +7770,64 @@ msgstr "" "Dosiahli ste maximálny počet 20 filtrových prednastavení. Pred pridaním " "nových odstráňte niektoré." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Načítanie údajov z DX clustra" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Naposledy načítané pre" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Max trvanlivosť" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Načítané o" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Ďalšia aktualizácia za" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minút" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "sekúnd" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spoty načítané" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "zobrazujem" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "zobrazujem všetky" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktívne filtre" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Načítavam..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Neurobené" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Urobené, nepotvrdené" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7711,267 +7835,270 @@ msgstr "Urobené, nepotvrdené" msgid "LoTW User" msgstr "LoTW používateľ" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Nová značka" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Nový kontinent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nová krajina" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Urobené predtým" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Pracoval na %s s %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "spotovaný" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Čerstvý spot (< 5 minút staré)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Contest" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klikni pre zobrazenie" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "na QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klikni pre zobrazenie %s na QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Zobraziť podrobnosti pre" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Urobené na" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Neurobené na tomto pásme" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW používateľ. Posledné nahratie bolo pred %d dňami" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klikni pre zobrazenie na POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Kliknite pre zobrazenie na SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Kliknite pre zobrazenie na cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klikni na zobrazenie na IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Pozrite si podrobnosti pre kontinent" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Pozrite si podrobnosti pre kontinent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Zobraziť podrobnosti o CQ zóne" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Zobraziť podrobnosti o CQ zóne %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "v" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Ukončiť režim celej obrazovky" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Prepnúť na celú obrazovku" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" "Pásmové filtrovanie je riadené vaším rádiom, keď je aktivované CAT pripojenie" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klikni na začatie logovania" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(potrebné CAT pripojenie)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Komentár" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Trvanlivosť" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Prichádzajúce" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Odchádzajúce" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spoty" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spotteri" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Prosím počkajte" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Počkajte %s sekúnd pred odoslaním ďalšej volacej značky do formulára QSO" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Načítavam spoty..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Žiadne spoty neboli nájdené" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Nie sú k dispozícii žiadne údaje" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Pre vybrané filtre sa nenašli žiadne spoty" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Chyba pri načítaní spotov. Skúste to znova." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Zobraziť všetky módy" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Zobraziť všetky spoty" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Zakresli spotterov" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Rozšír mapu" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Zobraziť deň/noc" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Vaše QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Návrat domov" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "Pomoc pre DX cluster" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Kompaktný režim - Skryť/Zobraziť menu" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7979,314 +8106,281 @@ msgstr "TRX:" msgid "None" msgstr "Žiadny." -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" -msgstr "" +msgstr "Naživo - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Dopytovanie - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Vyber všetky kontinenty" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Svet" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Prepnúť filter kontinentu Afrika" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Prepnúť filter kontinentu Antarktída" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Prepnúť filter kontinentu Ázia" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Prepnúť filter kontinentu Európa" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Prepni filter kontinentu Severná Amerika" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Prepnúť filter kontinentu Oceánia" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Prepnúť filter kontinentu Južná Amerika" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Pokročilé filtre" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Podržte" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "a klikni pre výber viacerých možností" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Fónia" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Požadované príznaky" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Urobená volacia značka" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Ďalšie značky" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Čerstvý (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spoty z kontinentu" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Kontinent zaspotovanej stanice" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Použiť filtre" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Obľúbené filtre" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Odstráň všetky filtre okrem spotov z kontinentu" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Prepnúť filter pásma 160m" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Prepnúť filter pásma 80 m" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Prepni 60m pásmový filter" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Prepnúť filter pásma 40m" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Prepnúť filter pásma 30m" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Prepnúť filter pásma 20m" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Prepnúť filter pásma 17m" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Prepnúť filter pásma 15m" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Prepnúť filter pásma 12m" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Prepnúť filter pásma 10m" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Prepnúť filter pásma 6m" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Prepnúť filter pásiem VHF" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Prepnúť filter UHF pásiem" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Prepnúť filter pásiem SHF" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Načítavam podmódy..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Prepnúť filter používateľa LoTW" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW používatelia" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Prepnúť filter DX spot-u (označený kontinent ≠ kontinent spottera)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Prepnúť filter Nových kontinentov" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nové kontinenty" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Prepnúť filter Nových entít" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nové entity" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Prepnúť filter nových volacích znakov" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nové volacie značky" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Prepínač filtra čerstvých spotov (nie starších ako 5 minút)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Čerstvé" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Prepnúť filter contestov" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Prepnúť Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Uvedené" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Otvoriť mapu DX" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX mapa" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Vyhľadať spoty..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Vyhľadávací stĺpec" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "Poznámka: mapa zobrazuje polohy DXCC entít, nie skutočné lokácie miest" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Všetky stĺpce" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Doba v minútach" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot Info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Frekv." - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Submód" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Zachytená volačka" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX stanica" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Príznak" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC entita" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entita" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Značka spottera" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Kontinent spottera" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotterova CQ zóna" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Dátum posledného QSO" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Špeciálny" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Špeciálne príznaky" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8294,6 +8388,60 @@ msgstr "Špeciálne príznaky" msgid "Message" msgstr "Správa" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Kontinent spottera" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotterova CQ zóna" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Vyhľadať spoty..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "Poznámka: mapa zobrazuje polohy DXCC entít, nie skutočné lokácie miest" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Doba v minútach" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Frekv." + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Zachytená volačka" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Príznak" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC entita" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Značka spottera" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Dátum posledného QSO" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Špeciálny" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Špeciálne príznaky" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Zadaj platné čísla pre frekvenciu" @@ -8570,7 +8718,7 @@ msgstr "" "kód IOTA)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8688,19 +8836,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8734,15 +8882,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Áno" @@ -8757,19 +8907,19 @@ msgstr "Áno" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8803,16 +8953,17 @@ msgstr "Áno" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Nie" @@ -8843,7 +8994,7 @@ msgid "First QSO" msgstr "Prvé QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Posledné QSO" @@ -8952,8 +9103,8 @@ msgid "Callsign DXCC identification" msgstr "Identifikácia DXCC volacieho znaku" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Volacia značka: " @@ -9241,8 +9392,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9555,7 +9706,7 @@ msgstr "ADIF názov" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9625,7 +9776,7 @@ msgstr "Vytvoriť" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Názov contestu" @@ -9702,8 +9853,8 @@ msgid "Locator" msgstr "Lokátor" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9818,11 +9969,11 @@ msgstr "Identifikátor" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Povolené" @@ -9917,7 +10068,8 @@ msgid "Cron List" msgstr "Zoznam cronov" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10116,9 +10268,9 @@ msgstr "Chýbajúce" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10140,10 +10292,10 @@ msgstr "Chýbajúce" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Odoslané" @@ -10153,9 +10305,9 @@ msgstr "Odoslané" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10176,10 +10328,10 @@ msgstr "Odoslané" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Došlé" @@ -10187,17 +10339,17 @@ msgstr "Došlé" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10220,11 +10372,11 @@ msgstr "Došlé" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Požadované" @@ -10250,6 +10402,38 @@ msgstr "Posledná aktualizácia o %s." msgid "Data provided by HAMqsl." msgstr "Údaje poskytuje HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "K-index: Planetárna geomagnetická aktivita (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "Index A: Denný index geomagnetickej aktivity" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Index slnečného toku" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Rýchlosť slnečného vetra (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Pomer signálu k šumu" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Úroveň toku röntgenového slnečného žiarenia" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Počet slnečných škvŕn" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Úroveň aktivity polárnej žiary (Kp borealis)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Počet QSOs pre tento deň v týždni" @@ -10329,7 +10513,7 @@ msgstr "Dátum začatia" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Dátum ukončenia" @@ -10514,29 +10698,29 @@ msgstr "Nahraj súbor" #: application/views/debug/index.php:2 msgid "Are you sure you want to clear the cache?" -msgstr "" +msgstr "Ste si istý, že chcete vymazať vyrovnávaciu pamäť?" #: application/views/debug/index.php:3 msgid "Failed to clear cache!" -msgstr "" +msgstr "Nepodarilo sa vymazať cache!" #: application/views/debug/index.php:4 #, php-format msgid "Last version check: %s" -msgstr "" +msgstr "Posledná kontrola verzie: %s" #: application/views/debug/index.php:5 msgid "Wavelog is up to date!" -msgstr "" +msgstr "Wavelog je aktuálny!" #: application/views/debug/index.php:6 #, php-format msgid "There is a newer version available: %s" -msgstr "" +msgstr "Je k dispozícii novšia verzia: %s" #: application/views/debug/index.php:7 msgid "The Remote Repository doesn't know your branch." -msgstr "" +msgstr "Vzdialený repozitár nepozná tvoju vetvu." #: application/views/debug/index.php:32 msgid "Wavelog Information" @@ -10670,7 +10854,8 @@ msgstr "Úspech" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Zlyhanie" @@ -10748,107 +10933,128 @@ msgstr "Moduly" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Nainštalované" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Nenainštalované" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" -msgstr "" +msgstr "Informácie o vyrovnávacej pamäti" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" -msgstr "" +msgstr "Aktuálna konfigurácia" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" -msgstr "" +msgstr "Primárny adaptér" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" -msgstr "" +msgstr "Záložný adaptér" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" -msgstr "" +msgstr "Cesta pre adaptér %s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "Prefix kľúča" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" -msgstr "" +msgstr "Podrobnosti o vyrovnávacej pamäti" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" -msgstr "" +msgstr "Celková veľkosť" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" -msgstr "" +msgstr "Počet kľúčov" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "Vyrovnávacia pamäť funguje správne. Všetko v poriadku!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"Cache momentálne používa záložný adaptér, pretože primárny nie je dostupný. " +"Skontrolujte oprávnenia súborov, PHP rozšírenia a/alebo vaše sieťové " +"pripojenie k službám (ak používate redis/memcached)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"Cache nefunguje! Systém momentálne používa adaptér %s. Skontroluj si " +"oprávnenia k súborom, PHP rozšírenia a/alebo tvoje sieťové pripojenie k " +"službám (ak používaš redis/memcached). Môžeš pokračovať v používaní Wavelog, " +"ale žiadne hodnoty nebudú uložené do cache (čo je zlé)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" -msgstr "" - -#: application/views/debug/index.php:496 -msgid "Clear Cache" -msgstr "" +msgstr "Dostupné adaptéry" #: application/views/debug/index.php:543 +msgid "Clear Cache" +msgstr "Vymazať vyrovnávaciu pamäť" + +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Git informácie" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Pobočka" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Potvrdiť" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Značka" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Posledné načítanie" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Skontrolovať novú verziu" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10856,77 +11062,77 @@ msgstr "Skontrolovať novú verziu" msgid "Update now" msgstr "Aktualizuj teraz" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Dátum stiahnutia súboru" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Súbor" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Posledná aktualizácia" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "Aktualizácia DXCC z Club Log" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Aktualizovať" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "Stiahnutie súboru DOK" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "Stiahnutie zoznamu LoTW používateľov" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "Stiahnutie súboru POTA" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "Stiahnuť súbor SCP" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "Stiahnutie súboru SOTA" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "Stiahnutie súboru WWFF" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "Aktualizácia TLE" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Aktualizácia Hams Of Note" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCC Grids" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Údržba QSO-DB" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -10935,141 +11141,141 @@ msgstr[0] "Databáza obsahuje %d spojenie bez profilu stanice (lokácie)" msgstr[1] "Databáza obsahuje %d spojenia bez profilu stanice (lokácie)" msgstr[2] "Databáza obsahuje %d spojení bez profilu stanice (lokácie)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Prosím označ spojenia a priraď ich k existujúcej polohe stanice:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Cieľové miesto" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Zmeniť priradenie" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Každé spojenie vo vašej databáze je priradené k profilu stanice (miestu)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Všetko v poriadku" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albánčina" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Arménčina" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bosniančina" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Bulharčina" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Čínština (zjednodušená)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Chorvátčina" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Čeština" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Holandčina" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Angličtina" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estónčina" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Fínčina" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Francúzština" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Nemčina" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Gréčtina" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Maďarčina" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Taliančina" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japončina" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Lotyščina" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Litovčina" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Čiernohorčina" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polština" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portugalčina" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Ruština" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Srbčina" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Slovenčina" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Slovinčina" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Španielčina" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Švédčina" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turečtina" @@ -11131,7 +11337,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Exportované budú iba spojenia so zadefinovaným lokátorom!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL informácie" @@ -11377,7 +11583,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "QSL správa" @@ -11509,31 +11715,32 @@ msgid "QSL Date" msgstr "Dátum QSL" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Zobraziť" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Prázdny" @@ -11619,7 +11826,7 @@ msgstr "Spojenia sú označené ako exportované do HRDLog Logbooku." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Upraviť QSO" @@ -12010,76 +12217,76 @@ msgstr "Informácie o verzii" msgid "Failed to load the modal. Please try again." msgstr "Nepodarilo sa načítať modálne okno. Skúste to znova." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Popis:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Opis dopytu" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Váš dopyt bol uložený!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Upraviť dotazy" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Uložené dotazy:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Spustiť dotaz" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Uložené dotazy" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Je potrebné vytvoriť dotaz, skôr než začneš hľadať!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Exportovať do ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Otvoriť v rozšírenom denníku" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Varovanie! Ste si istí, že chcete vymazať tento uložený dopyt?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "Uložený dotaz bol vymazaný!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "Uložený dotaz sa nepodarilo odstrániť. Skúste to znova!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "Popis dotazu byl aktualizovaný!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Pri ukladaní sa niečo pokazilo. Skúste to znova!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12089,15 +12296,15 @@ msgstr "" "Skontroluj, ktorý DXCC je pre toto konkrétne miesto správny. Ak si si istý, " "ignoruj toto varovanie." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Počet: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Lokátory: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12105,57 +12312,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokátorové štvorce" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "Vyhľadávanie polohy zlyhalo. Skontrolujte konzolu prehliadača." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "lokátorový štvorec" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Celkový počet" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSL karta pre " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Varovanie! Ste si istí, že chcete túto QSL kartu vymazať?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL karta" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL karta pre " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "QSL obrazový súbor" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Predná strana QSL karty:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Zadná strana QSL karty:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Pridať ďalšie spojenie na QSL kartu" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Niečo sa pokazilo. Skúste to znova!" @@ -12309,7 +12520,7 @@ msgid "Satellite Pass" msgstr "Satelitný prelet" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Admin" @@ -12334,7 +12545,7 @@ msgid "Log" msgstr "Denník" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12431,7 +12642,7 @@ msgid "Gridsquare Zone checker" msgstr "Overovač lokátorových zón" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Pomoc" @@ -12566,7 +12777,7 @@ msgid "Total height of one label" msgstr "Celková výška jedného štítku" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Veľkosť písma" @@ -12625,14 +12836,14 @@ msgstr "Orientácia papiera" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Na šírku" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Na výšku" @@ -12651,47 +12862,52 @@ msgstr "" "zmysluplné, napríklad štýl štítku." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Označiť QSL ako vytlačené" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Tlačiť" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Možnosti tlače štítkov" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Vytvoriť nový typ štítku" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Vytvoriť nový druh papiera" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Druhy papiera" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Šírka" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Výška" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Používané štítkami" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Orientácia" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Typy štítkov" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12699,55 +12915,65 @@ msgstr "Typy štítkov" msgid "QSOs" msgstr "Spojenia" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Použiť na tlač" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Žiadny papier nepriradený" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "Štítky QSL kariet čakajúce na vybavenie" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "Čakajúce spojenia" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Zobraziť spojenia" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Zahrnúť môj volací znak?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Lokátor zahrnúť?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Zahrnúť referenciu? (SIG, SOTA, POTA, IOTA, WWFF; ak je dostupná pre miesto)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Zahrnúť via (ak je vyplnené)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Zahrnúť QSLMSG (ak je vyplnené)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Zahrnúť TNX správu?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Začať tlačiť v?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Zadaj počiatočnú pozíciu pre tlač štítkov" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12907,21 +13133,21 @@ msgstr "DXCC zóna CQ" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Stanica" @@ -13004,88 +13230,92 @@ msgstr "" "Upozornenie. Tento nástroj môže byť nebezpečný pre vaše dáta a mal by sa " "používať len v prípade, že viete, čo robíte." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Všetky miesta staníc" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "Skontroluj všetky spojenia v logbooku na nesprávne CQ zóny" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Pomocou Wavelog zisti CQ zónu pre všetky spojenia." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Skontroluj" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "Skontroluj všetky spojenia v denníku pre nesprávne ITU zóny" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Použi Wavelog na určenie ITU zóny pre všetky spojenia." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Skontroluj lokátorové štvorce" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Skontroluj lokátory, ktoré nezodpovedajú DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Oprav kontinent" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Aktualizovať chýbajúce alebo nesprávne informácie o kontinente" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Aktualizovať chýbajúce informácie o štáte/provincii" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Aktualizuj vzdialeností" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Vypočítaj a aktualizuj informácie o vzdialenosti pre spojenia" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "Skontroluj všetky spojenia v denníku na nesprávne DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Použi Wavelog na určenie DXCC pre všetky spojenia." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Náhľad spojení s chýbajúcim lokátorom v callbooku" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Použi callbook na určenie lokátora" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Toto je obmedzené na 150 volacích znakov pre každé spustenie!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Skontrolovať IOTA voči DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Použi Wavelog na kontrolu IOTA voči DXCC" @@ -13130,10 +13360,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Región" @@ -13202,9 +13432,9 @@ msgid "QSL Sent Method" msgstr "Metóda odoslania QSL" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL cez" @@ -13228,84 +13458,84 @@ msgstr "Pásmo RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Neplatné" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Overené" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Direkt" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Bureau" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Elektronicky" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13662,26 +13892,26 @@ msgstr "Lokátorové štvorce pre" msgid "Non DXCC matching gridsquare" msgstr "Nesúladný lokátor mimo DXCC" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Od" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "do" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "DX" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Žiadne/prázdne" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13689,51 +13919,69 @@ msgstr "" "Vzdialenosť v kilometroch. Vyhľadá sa vzdialenosť väčšiu alebo rovná tejto " "hodnote." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Trvanie" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Trvanie v minútach. Vyhľadávanie bude hľadať trvania väčšie alebo rovné " +"tejto hodnote." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Zoradiť stĺpec" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "Čas QSO" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "Spojenie upravené" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Smer radenia" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Klesajúci" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Stúpajúci" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Použiť filtre" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "QSL filtre" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL odoslané" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13750,32 +13998,32 @@ msgstr "QSL odoslané" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "V poradí" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13804,279 +14052,279 @@ msgstr "V poradí" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Neplatné (Ignorovať)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL prijaté" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "Spôsob odoslania QSL" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "Spôsob prijatia QSL" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW odoslané" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW prijaté" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog odoslané" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog prijaté" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL odoslané" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL prijaté" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL odoslané" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL prijaté" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "QSL obrázky" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ odoslané" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ prijaté" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Rýchle filtre" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Rýchle vyhľadávanie s vybraným: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Dátum vyhľadávania" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Vyhľadať DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Hľadaj štát" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Vyhľadať lokátorový štvorec" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Hľadať CQ zónu" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Vyhľadaj zónu ITU" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Režim vyhľadávania" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Hľadaj pásmo" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Vyhľadať IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Hľadať SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Vyhľadať POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Hľadať WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Vyhľadať operátora" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Varovanie! Ste si istý, že chcete vymazať označené QSO?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO bude vymazané" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "So zvolenými: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Aktualizácia z Callbooku" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "Fronta bureau" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "Fronta direkt" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "Fronta elektronické" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Odoslané (Bureau)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Odoslané (Direkt)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Odoslané (Elektronicky)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Neposlané" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL nie je potrebné" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Nedoručené" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Prijaté (Bureau)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Prijaté (Direkt)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Prijaté (elektronicky)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Vytvor ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Vytlačiť štítok" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "QSL slideshow" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# výsledkov" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Duplicity" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Mapa sveta" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Databázové nástroje" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Naposledy upravené" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "de" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL správa (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL správa (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Moje refrencie" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Ant az" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Azimut antény" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Ant el" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Elevácia antény" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Výkon stanice" @@ -14157,15 +14405,15 @@ msgstr "Výsledky pre aktualizáciu lokátorových štvorcov:" msgid "The number of QSOs updated for gridsquare is" msgstr "Počet aktualizovaných spojení pre lokátorové štvorce je" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Zahrnúť via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Zahrnúť QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Zahrnúť správu TNX" @@ -14231,42 +14479,42 @@ msgstr "Aktuálne podporované krajiny" msgid "Basic QSO Information" msgstr "Základné informácie o spojení" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Detaily stanice" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Potvrdzovacie služby" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Geografické informácie" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Diplomové programy" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Ďalšie informácie" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Technické detaily" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Len na ladenie" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" msgstr "" "Je určené iba na účely ladenia a nie je určené na zobrazenie ako predvolené" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Mapové vrstvy" @@ -14396,7 +14644,7 @@ msgid "Date Expires" msgstr "Dátum vypršania platnosti" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Posledné nahratie" @@ -15058,7 +15306,7 @@ msgstr "Potrebujeme vedieť o niečom ďalšom?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "E-mail" @@ -15075,11 +15323,11 @@ msgstr "Odoslať žiadosť not in log" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Prostredníctvom." @@ -15090,7 +15338,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Pridať do fronty tlače" @@ -15501,7 +15749,7 @@ msgstr "Označ QSL ako odoslané" msgid "No QSLs to print were found!" msgstr "Neboli nájdené žiadne QSL na tlač!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15645,7 +15893,7 @@ msgstr "Uveď výkonovú hodnotu vo wattoch." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Vysielací výkon (W)" @@ -15707,9 +15955,9 @@ msgid "Station County" msgstr "Okres stanice" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "SIG Info" @@ -15757,7 +16005,7 @@ msgstr "Poznámka: Nie je možné upravovať. Iba na zobrazenie tu." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Upravené" @@ -15842,10 +16090,12 @@ msgid "" "You have already filled in a callsign. First finish this QSO before filling " "the last spot from DXcluster." msgstr "" +"Už si vyplnil značku. Najskôr dokonči toto QSO, než prejdeš na spot z DX " +"clustera." #: application/views/qso/index.php:47 msgid "No spots found in this frequency." -msgstr "" +msgstr "Na tejto frekvencii sa nenašli žiadne spoty." #: application/views/qso/index.php:93 msgid "LIVE" @@ -15880,16 +16130,16 @@ msgstr "Prehľadaj DXCluster pre najnovší spot" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "IOTA referencia" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "SOTA referencia" @@ -15929,11 +16179,11 @@ msgstr "Napríklad: Q03" msgid "E-mail address of QSO-partner" msgstr "E-mailová adresa QSO-partnera" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Názov satelitu" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Satelitný mód" @@ -16038,7 +16288,7 @@ msgstr "Aktívne rádiá" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "Nižšie je zoznam aktívnych rádií, ktoré sú pripojené k Wavelogu." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16046,16 +16296,33 @@ msgstr "" "Ak si ešte nepripojil žiadne rádiá, pozri si stránku s API na generovanie " "API kľúčov." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Ako operátor klubovej stanice si môžeš nastaviť predvolenú vysielačku, ktorá " +"platí len pre teba. To ti umožňuje mať predvolenú vysielačku, ktorá sa " +"automaticky vyberie pri prihlásení, ale stále môžeš používať aj iné " +"vysielačky, ak chceš." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Ako bežný používateľ si môžeš nastaviť východiskové rádio pre seba. To ti " +"umožní mať automaticky vybrané východiskové rádio pri prihlásení, pričom " +"stále môžeš používať aj iné rádiá, ak chceš." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Cez wiki sa môžeš dozvedieť, ako používať %s." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Na wiki si môžete zistiť, ako používať funkcie %srádia%s." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "rádiové funkcie" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Prosím, počkajte..." @@ -16397,13 +16664,6 @@ msgstr "Čas AOS" msgid "LOS Time" msgstr "LOS čas" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Trvanie" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Cesta" @@ -16519,6 +16779,11 @@ msgstr "Uložiť dotaz" msgid "Stored queries" msgstr "Uložené dotazy" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Cez wiki sa môžeš dozvedieť, ako používať %s." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "vyhľadávacie funkcie filtrovania" @@ -16595,35 +16860,35 @@ msgstr "Označ QSL odoslané (direkt)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Označ QSL prijaté (cez bureau)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Označ QSL prijate (direkt)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Označ QSL požadované (bureau)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Označ QSL požadované (direkt)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Označ ako nepožadované QSL" @@ -17154,7 +17419,7 @@ msgstr "Informácie o skupine osobitného záujmu stanice (napr. DA/NW-357)." #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problémy? Mrkni na %swiki%s." @@ -17369,7 +17634,7 @@ msgid "Link Location" msgstr "Prepojiť umiestnenie" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Názov profilu" @@ -17388,19 +17653,19 @@ msgstr "" "všetky miesta v jednej relácii od logu po analytiku. Skvelé, keď pracujete " "na viacerých miestach, ale sú súčasťou toho istého DXCC alebo VUCC okruhu." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Upraviť prepojené umiestnenia" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Sídlo návštevníka" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Umiestnenia stanice" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17408,11 +17673,11 @@ msgstr "" "Umiestnenia stanice definujú prevádzkové miesta, ako napríklad vaše QTH, QTH " "priateľa alebo portablovú stanicu." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "Podobne ako denníky, profil stanice udržuje sadu QSO pokope." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17420,7 +17685,7 @@ msgstr "" "V jednom okamihu môže byť aktívna iba jedna stanica. V tabuľke nižšie je to " "označené odznakom -Aktívna stanica-." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17428,23 +17693,23 @@ msgstr "" "Stĺpec 'Prepojené' ukazuje, či je umiestnenie stanice prepojené s aktívnym " "denníkom vybraným vyššie." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Vytvoriť umiestnenie stanice" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Zobraz len umiestnenia z aktívneho denníka" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Zobraziť všetky umiestnenia" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Zobraziť zoznam umiestnení" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17452,7 +17717,7 @@ msgstr "" "Pozor: musíš nastaviť aktívnu lokalitu stanice. Prejdi na Volací znak-" ">Umiestnenie stanice a vyber si jednu." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17460,23 +17725,23 @@ msgstr "" "Vzhľadom na nedávne zmeny v rámci Wavelog musíte priradiť QSOs k vašim " "profilom staníc." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Údržba" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Prosím, priraď ich do " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Prepojené" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Obľúbené" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "označiť/odznačiť ako obľúbené" @@ -18220,40 +18485,44 @@ msgstr "Toto prepína zobrazenie údajov o slnečnej aktivite a šírení na pan msgid "Show Fields on QSO Tab" msgstr "Zobraziť lokátor na karte QSO" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Zobraz mapu v okne QSO" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "Povolené položky sa zobrazia na karte QSO namiesto karty Všeobecné." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Nastavenia online žiadosti o QSL (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Globálny text" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Tento text je voliteľný text, ktorý možno zobraziť na vrchole stránky OQRS." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Zoskupené vyhľadávanie" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Vypnuté" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Zapnuté" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18261,12 +18530,12 @@ msgstr "" "Keď je to zapnuté, všetky umiestnenia staníc s aktívnym OQRS budú prehľadané " "naraz." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" "Zobraziť názov umiestnenia stanice v zoskupených výsledkoch vyhľadávania" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18274,11 +18543,11 @@ msgstr "" "Ak je zapnuté zoskupené vyhľadávanie, môžete sa rozhodnúť, či sa názov " "miesta stanice zobrazí v tabuľke výsledkov." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Automatické párovanie OQRS" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18286,69 +18555,69 @@ msgstr "" "Ak je to zapnuté, automatické párovanie OQRS sa uskutoční a systém sa pokúsi " "automaticky spárovať prichádzajúce požiadavky s existujúcimi záznamami." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Automatické zodpovedanie priamych žiadostí prostredníctvom OQRS" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Ak je to zapnuté, automatické OQRS spárovanie pre priamu požiadavku sa " "uskutoční." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Predvolené hodnoty" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Nastavenia pre predvolené pásmo a potvrdenie" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Predvolené pásmo" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Predvolené QSL spôsoby" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Služby tretích strán" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Používateľské meno Logbook of The World (LoTW)" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Heslo Logbook of The World (LoTW)" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Otestovať prihlásenie" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc používateľské meno" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc heslo" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "ClubLog" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "ClubLog email" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "ClubLog heslo" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18358,15 +18627,15 @@ msgstr "" "používanie Clublogu vo Wavelog. Navštív %sstránku nastavení Clublog%s, aby " "si to urobil." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgety" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "Widgety živého vysielania" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18374,16 +18643,16 @@ msgstr "" "Všimnite si, že na používanie tohto widgetu musíte mať nakonfigurované a " "funkčné aspoň jedno CAT rádio." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Keď je povolený, widget bude dostupný na %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Zobraziť čas \"naposledy online\"" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18391,15 +18660,15 @@ msgstr "" "Toto nastavenie určuje, či sa čas 'Naposledy videné' zobrazuje vo widgete " "alebo nie." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Zobraziť iba naposledy aktualizované rádio" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Nie, ukáž všetky rádiá" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18411,15 +18680,15 @@ msgstr "" "iba tú, ktorá bola najnovšie aktualizovaná. Ak máš len jedno rádio, toto " "nastavenie nemá žiadny vplyv." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSO widget" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Zobraziť presný čas QSO" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18427,40 +18696,40 @@ msgstr "" "Toto nastavenie kontroluje, či sa má vo widgete QSO zobraziť presný čas QSO " "alebo nie." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Rôzne" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Upload AMSAT statusu" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Nahratie stavu SAT QSOs na" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodon server" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL servera Mastodon" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Hlavná URL adresa vášho Mastodon servera, napr. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Povolené funkcie Winkeyer" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18469,25 +18738,25 @@ msgstr "" "Podpora Winkeyer vo Wavelog je veľmi experimentálna. Najprv si prečítaj wiki " "na %s, než to povolíš." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Súkromný kľúč kanála" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Pozri si svoj profil na %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Zobraz iba použiteľné oblety" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18496,7 +18765,7 @@ msgstr "" "lokátora vo vašom účte na hams.at. Vyžaduje nastavenie privátneho kľúča " "kanála." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Uložiť účet" @@ -18916,7 +19185,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "posledný odoslaný" @@ -18944,119 +19213,125 @@ msgstr "Celková vzdialenosť" msgid "Other Path" msgstr "Iná cesta" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Azimut antény" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Elevácia antény" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL karta bola poslaná cez bureau" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL karta bola odoslaná direkt" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "Elektronická QSL karta bola odoslaná" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL karta bola poslaná cez manažéra" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL karta bola odoslaná" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL karta bola prijatá cez QSL službu" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL karta bola prijatá direktne" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSL karta bola prijatá elektronicky" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL karta bola doručená cez manažéra" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL karta bola prijatá" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Táto stanica používa LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Toto QSO bolo potvrdené dňa" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Toto QSO je potvrdené na LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Toto QSO je potvrdené na eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Toto QSO je potvrdené na QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Toto QSO je potvrdené na Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Toto QSO je potvrdené na DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Viac spojení" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Zdieľať" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Podrobnosti" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Nahraný obrázok prednej strany QSL karty" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Nahrať obrázok QSL karty" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Nahraný obrázok zadnej strany QSL lístka" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Označ QSL prijaté (elektronicky)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL obrázok" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO nebolo nájdené" @@ -19249,6 +19524,19 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Vyrovnávacia pamäť momentálne používa záložný adaptér, pretože primárny " +#~ "nie je dostupný." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Chyba pri získavaní kľúča relácie pre dotaz HamQTH" + +#~ msgid "radio functions" +#~ msgstr "rádiové funkcie" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Nesprávne zaznamenané CQ zóny" diff --git a/application/locale/sl/LC_MESSAGES/messages.po b/application/locale/sl/LC_MESSAGES/messages.po index 664f89ad6..04d5acd78 100644 --- a/application/locale/sl/LC_MESSAGES/messages.po +++ b/application/locale/sl/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -68,8 +68,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -80,11 +80,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -115,11 +115,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -140,8 +140,8 @@ msgid "Activated Gridsquare Map" msgstr "" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -303,51 +303,51 @@ msgstr "" msgid "Awards" msgstr "" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -356,13 +356,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -374,29 +374,29 @@ msgstr "" msgid "DXCC" msgstr "" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -409,43 +409,58 @@ msgstr "" msgid "Log View" msgstr "" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " +#: application/controllers/Awards.php:575 +msgid "and" msgstr "" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr "" -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr "" -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr "" -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr "" -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr "" -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -466,14 +481,14 @@ msgstr "" msgid "SOTA" msgstr "" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -488,16 +503,16 @@ msgstr "" msgid "WWFF" msgstr "" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -511,111 +526,111 @@ msgstr "" msgid "POTA" msgstr "" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "" -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "" -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -646,8 +661,7 @@ msgstr "" msgid "Edit Band" msgstr "" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -678,15 +692,24 @@ msgstr "" msgid "Callsign statistics" msgstr "" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr "" + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr "" -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "" @@ -769,28 +792,31 @@ msgid "No user has configured Clublog." msgstr "" #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "" @@ -822,7 +848,7 @@ msgid "Update Contest" msgstr "" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -840,12 +866,12 @@ msgstr "" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "" @@ -916,14 +942,14 @@ msgstr "" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "" @@ -1166,7 +1192,7 @@ msgstr "" msgid "KML Export" msgstr "" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "" @@ -1174,59 +1200,59 @@ msgstr "" msgid "Create Label Type" msgstr "" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "" @@ -1235,69 +1261,69 @@ msgid "Create Paper Type" msgstr "" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." msgstr "" -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "" -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." msgstr "" -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "" -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "" -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "" -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "" @@ -1319,55 +1345,55 @@ msgstr "" msgid "Logbook" msgstr "" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1375,93 +1401,95 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "" -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1469,7 +1497,7 @@ msgstr "" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1486,13 +1514,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1531,15 +1559,15 @@ msgstr "" msgid "Mode" msgstr "" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1560,15 +1588,15 @@ msgstr "" msgid "RST (S)" msgstr "" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1590,7 +1618,7 @@ msgstr "" msgid "RST (R)" msgstr "" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1599,29 +1627,29 @@ msgstr "" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1634,7 +1662,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1642,7 +1670,7 @@ msgstr "" msgid "IOTA" msgstr "" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1651,12 +1679,12 @@ msgstr "" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1665,7 +1693,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1673,7 +1701,7 @@ msgstr "" msgid "State" msgstr "" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1682,19 +1710,19 @@ msgstr "" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1710,20 +1738,20 @@ msgstr "" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1733,9 +1761,9 @@ msgstr "" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1753,18 +1781,18 @@ msgstr "" msgid "Distance" msgstr "" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1772,25 +1800,26 @@ msgstr "" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1801,13 +1830,13 @@ msgstr "" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1846,13 +1875,14 @@ msgstr "" msgid "Band" msgstr "" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1873,13 +1903,13 @@ msgstr "" msgid "Frequency" msgstr "" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1892,21 +1922,21 @@ msgstr "" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1915,14 +1945,14 @@ msgstr "" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "" @@ -1930,12 +1960,12 @@ msgstr "" msgid "Advanced logbook" msgstr "" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "" -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "" @@ -1950,7 +1980,7 @@ msgstr "" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "" @@ -1962,11 +1992,11 @@ msgstr "" msgid "Certificate Updated." msgstr "" -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "" -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -1975,7 +2005,7 @@ msgid "" "%sLoTW FAQ page%s in the Wavelog Wiki." msgstr "" -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -1983,50 +2013,50 @@ msgid "" "been processed by LoTW yet." msgstr "" -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "" -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "" -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "" -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "" @@ -2051,7 +2081,7 @@ msgstr "" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "" @@ -2360,19 +2390,19 @@ msgstr "" msgid "Print Requested QSLs" msgstr "" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "" -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "" @@ -2381,18 +2411,18 @@ msgstr "" msgid "Hardware Interfaces" msgstr "" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2400,61 +2430,65 @@ msgstr "" msgid "Options" msgstr "" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2463,22 +2497,38 @@ msgstr "" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "" -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "" @@ -2546,7 +2596,7 @@ msgstr "" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2557,13 +2607,13 @@ msgstr "" msgid "Satellite Timers" msgstr "" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2616,7 +2666,8 @@ msgstr "" #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2624,7 +2675,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2637,7 +2688,7 @@ msgid "Duplicate Station Location:" msgstr "" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "" @@ -2700,7 +2751,8 @@ msgstr "" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2708,19 +2760,19 @@ msgid "Disabled" msgstr "" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2728,7 +2780,7 @@ msgid "" msgstr "" #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "" @@ -2737,19 +2789,19 @@ msgid "Are you sure you want to delete the public slug?" msgstr "" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "" @@ -2757,31 +2809,31 @@ msgstr "" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2792,7 +2844,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "" @@ -2872,103 +2924,103 @@ msgstr "" msgid "Preparing DXCC Prefixes: " msgstr "" -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "" -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "" -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "" -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "" -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "" -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "" -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "" -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "" -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "" -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "" -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "" -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "" -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "" -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "" -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "" -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "" -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "" -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "" -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "" @@ -3002,246 +3054,246 @@ msgstr "" msgid "Add User" msgstr "" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "" -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "" -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "" -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " "setup, click %shere%s." msgstr "" -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "" -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "" -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "" -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "" -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " "your config.php!" msgstr "" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "" -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" msgstr "" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "" -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "" -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "" -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "" -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3253,7 +3305,7 @@ msgid "Satellite Gridsquare Map" msgstr "" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "" @@ -3302,12 +3354,17 @@ msgstr "" msgid "Gridsquare Zone finder" msgstr "" -#: application/libraries/Callbook.php:139 -msgid "QRZCQ Error" +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." msgstr "" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "" + +#: application/libraries/Callbook.php:200 +msgid "QRZCQ Error" msgstr "" #: application/libraries/Cbr_parser.php:111 @@ -3458,105 +3515,105 @@ msgstr "" msgid "Station not accessible" msgstr "" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" msgstr "" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " "imported. It's invalid" msgstr "" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3570,7 +3627,7 @@ msgstr "" msgid "Bearing" msgstr "" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "" @@ -3709,42 +3766,40 @@ msgstr "" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3773,33 +3828,33 @@ msgstr "" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3820,7 +3875,7 @@ msgstr "" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "" @@ -3864,12 +3919,12 @@ msgstr "" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "" @@ -3885,7 +3940,7 @@ msgstr "" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "" @@ -3895,11 +3950,11 @@ msgstr "" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "" @@ -3909,11 +3964,11 @@ msgstr "" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "" @@ -3923,11 +3978,11 @@ msgstr "" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "" @@ -3937,11 +3992,11 @@ msgstr "" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "" @@ -3951,11 +4006,11 @@ msgstr "" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "" @@ -3965,11 +4020,11 @@ msgstr "" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "" @@ -3979,11 +4034,11 @@ msgstr "" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "" @@ -3993,11 +4048,11 @@ msgstr "" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "" @@ -4007,11 +4062,11 @@ msgstr "" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "" @@ -4021,11 +4076,11 @@ msgstr "" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "" @@ -4035,11 +4090,11 @@ msgstr "" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "" @@ -4049,11 +4104,11 @@ msgstr "" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "" @@ -4063,11 +4118,11 @@ msgstr "" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "" @@ -4077,11 +4132,11 @@ msgstr "" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "" @@ -4091,11 +4146,11 @@ msgstr "" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "" @@ -4105,11 +4160,11 @@ msgstr "" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "" @@ -4119,11 +4174,11 @@ msgstr "" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "" @@ -4133,11 +4188,11 @@ msgstr "" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "" @@ -4146,18 +4201,18 @@ msgstr "" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4169,21 +4224,21 @@ msgstr "" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4194,7 +4249,7 @@ msgstr "" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4203,19 +4258,25 @@ msgstr "" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4235,22 +4296,22 @@ msgstr "" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "" @@ -4296,11 +4357,11 @@ msgstr "" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4309,11 +4370,10 @@ msgstr "" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4333,7 +4393,8 @@ msgstr "" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4349,12 +4410,13 @@ msgstr "" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4378,7 +4440,7 @@ msgstr "" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "" @@ -4389,12 +4451,12 @@ msgstr "" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "" @@ -4458,7 +4520,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4482,11 +4544,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4500,12 +4562,12 @@ msgstr "" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4520,7 +4582,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4533,7 +4595,7 @@ msgstr "" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4588,20 +4650,20 @@ msgstr "" msgid "Log Files must have the file type *.adi" msgstr "" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4658,8 +4720,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "" @@ -4995,8 +5057,8 @@ msgstr "" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "" @@ -5015,7 +5077,7 @@ msgstr "" #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5074,7 +5136,7 @@ msgstr "" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5124,7 +5186,7 @@ msgstr "" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5169,7 +5231,7 @@ msgstr "" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5178,8 +5240,8 @@ msgstr "" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5196,14 +5258,14 @@ msgstr "" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5255,9 +5317,9 @@ msgid "Filtering on" msgstr "" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "" @@ -5300,19 +5362,14 @@ msgid "Counties Confirmed" msgstr "" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5334,22 +5391,23 @@ msgid "Total" msgstr "" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5395,10 +5453,12 @@ msgid "Awards - CQ WAZ" msgstr "" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "" @@ -5408,92 +5468,114 @@ msgid "Show CQ Zone Map" msgstr "" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5501,7 +5583,9 @@ msgid "Date from" msgstr "" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5509,11 +5593,10 @@ msgid "Date to" msgstr "" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5523,9 +5606,8 @@ msgid "Confirmed" msgstr "" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5535,67 +5617,64 @@ msgstr "" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5603,95 +5682,161 @@ msgstr "" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5744,15 +5889,15 @@ msgid "DOK + SDOK" msgstr "" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "" @@ -5761,11 +5906,9 @@ msgstr "" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "" @@ -5773,23 +5916,20 @@ msgstr "" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "" @@ -5835,161 +5975,127 @@ msgid "" "ADIF-Spec-List" msgstr "" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "" @@ -6198,23 +6304,23 @@ msgstr "" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "" @@ -6223,14 +6329,14 @@ msgid "Deleted" msgstr "" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6240,7 +6346,7 @@ msgstr "" msgid "ITU Zone" msgstr "" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6248,21 +6354,21 @@ msgid "" "(ITU)." msgstr "" -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "" -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "" @@ -6310,7 +6416,7 @@ msgstr "" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "" @@ -6319,8 +6425,10 @@ msgstr "" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "" @@ -6441,7 +6549,7 @@ msgstr "" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "" @@ -6457,7 +6565,7 @@ msgstr "" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "" @@ -6495,8 +6603,8 @@ msgid "Band Categories" msgstr "" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "" @@ -6556,8 +6664,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "" @@ -6568,6 +6676,7 @@ msgstr "" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "" @@ -6624,7 +6733,7 @@ msgid "Reference" msgstr "" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6681,7 +6790,7 @@ msgid "" msgstr "" #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "" @@ -6751,43 +6860,48 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " "listed in the WAE country list on different bands." msgstr "" -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " "I, WAE TOP and the WAE Trophy." msgstr "" -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "" @@ -6829,7 +6943,7 @@ msgid "Show WAJA Map" msgstr "" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "" @@ -6879,15 +6993,20 @@ msgid "Show WAP Map" msgstr "" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -6895,19 +7014,23 @@ msgid "" "China, fostering a deeper understanding of China." msgstr "" -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." msgstr "" -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " "State (ADIF: DXCC and STATE)" msgstr "" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7003,8 +7126,8 @@ msgstr "" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "" @@ -7049,274 +7172,274 @@ msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "" -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "" -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "" -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "" -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "" -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7324,265 +7447,268 @@ msgstr "" msgid "LoTW User" msgstr "" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "" -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "" -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7590,314 +7716,281 @@ msgstr "" msgid "None" msgstr "" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "" -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "" -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" msgstr "" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" +#: application/views/bandmap/list.php:546 +msgid "All Columns" msgstr "" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" msgstr "" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" +#: application/views/bandmap/list.php:554 +msgid "DX Station" msgstr "" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -7905,6 +7998,60 @@ msgstr "" msgid "Message" msgstr "" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "" + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "" @@ -8167,7 +8314,7 @@ msgid "" msgstr "" #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8282,19 +8429,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8328,15 +8475,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "" @@ -8351,19 +8500,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8397,16 +8546,17 @@ msgstr "" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "" @@ -8437,7 +8587,7 @@ msgid "First QSO" msgstr "" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "" @@ -8544,8 +8694,8 @@ msgid "Callsign DXCC identification" msgstr "" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "" @@ -8821,8 +8971,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9125,7 +9275,7 @@ msgstr "" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9195,7 +9345,7 @@ msgstr "" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "" @@ -9271,8 +9421,8 @@ msgid "Locator" msgstr "" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "" @@ -9385,11 +9535,11 @@ msgstr "" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "" @@ -9480,7 +9630,8 @@ msgid "Cron List" msgstr "" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "" @@ -9663,9 +9814,9 @@ msgstr "" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -9687,10 +9838,10 @@ msgstr "" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "" @@ -9700,9 +9851,9 @@ msgstr "" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -9723,10 +9874,10 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "" @@ -9734,17 +9885,17 @@ msgstr "" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -9767,11 +9918,11 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "" @@ -9797,6 +9948,38 @@ msgstr "" msgid "Data provided by HAMqsl." msgstr "" +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "" @@ -9876,7 +10059,7 @@ msgstr "" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "" @@ -10200,7 +10383,8 @@ msgstr "" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "" @@ -10272,107 +10456,121 @@ msgstr "" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10380,77 +10578,77 @@ msgstr "" msgid "Update now" msgstr "" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -10458,140 +10656,140 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "" @@ -10649,7 +10847,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "" @@ -10849,7 +11047,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "" @@ -10964,31 +11162,32 @@ msgid "QSL Date" msgstr "" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "" @@ -11065,7 +11264,7 @@ msgstr "" #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "" @@ -11447,91 +11646,91 @@ msgstr "" msgid "Failed to load the modal. Please try again." msgstr "" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "" -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "" -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -11539,57 +11738,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "" + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "" -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "" @@ -11743,7 +11946,7 @@ msgid "Satellite Pass" msgstr "" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "" @@ -11768,7 +11971,7 @@ msgid "Log" msgstr "" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -11865,7 +12068,7 @@ msgid "Gridsquare Zone checker" msgstr "" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "" @@ -11996,7 +12199,7 @@ msgid "Total height of one label" msgstr "" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "" @@ -12054,14 +12257,14 @@ msgstr "" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "" @@ -12078,47 +12281,52 @@ msgid "" msgstr "" #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "" -#: application/views/labels/index.php:33 -msgid "Create New Label Type" +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" msgstr "" #: application/views/labels/index.php:34 +msgid "Create New Label Type" +msgstr "" + +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12126,54 +12334,64 @@ msgstr "" msgid "QSOs" msgstr "" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12312,21 +12530,21 @@ msgstr "" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "" @@ -12398,88 +12616,92 @@ msgid "" "you know what you are doing." msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "" @@ -12524,10 +12746,10 @@ msgid "DARC DOK" msgstr "" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "" @@ -12596,9 +12818,9 @@ msgid "QSL Sent Method" msgstr "" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "" @@ -12622,84 +12844,84 @@ msgstr "" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13036,76 +13258,92 @@ msgstr "" msgid "Non DXCC matching gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "" -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13122,32 +13360,32 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13176,279 +13414,279 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "" -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr "" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "" -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "" @@ -13528,15 +13766,15 @@ msgstr "" msgid "The number of QSOs updated for gridsquare is" msgstr "" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "" @@ -13595,41 +13833,41 @@ msgstr "" msgid "Basic QSO Information" msgstr "" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" msgstr "" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "" @@ -13748,7 +13986,7 @@ msgid "Date Expires" msgstr "" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "" @@ -14358,7 +14596,7 @@ msgstr "" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "" @@ -14375,11 +14613,11 @@ msgstr "" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "" @@ -14389,7 +14627,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "" @@ -14783,7 +15021,7 @@ msgstr "" msgid "No QSLs to print were found!" msgstr "" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -14925,7 +15163,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "" @@ -14987,9 +15225,9 @@ msgid "Station County" msgstr "" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "" @@ -15037,7 +15275,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "" @@ -15160,16 +15398,16 @@ msgstr "" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "" @@ -15209,11 +15447,11 @@ msgstr "" msgid "E-mail address of QSO-partner" msgstr "" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "" @@ -15312,22 +15550,32 @@ msgstr "" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." msgstr "" -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." +msgid "You can find out how to use the %sradio functions%s in the wiki." msgstr "" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "" @@ -15654,13 +15902,6 @@ msgstr "" msgid "LOS Time" msgstr "" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "" @@ -15773,6 +16014,11 @@ msgstr "" msgid "Stored queries" msgstr "" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "" + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "" @@ -15846,35 +16092,35 @@ msgstr "" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "" @@ -16353,7 +16599,7 @@ msgstr "" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "" @@ -16560,7 +16806,7 @@ msgid "Link Location" msgstr "" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "" @@ -16576,85 +16822,85 @@ msgid "" "are part of the same DXCC or VUCC Circle." msgstr "" -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." msgstr "" -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." msgstr "" -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17354,169 +17600,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17524,85 +17774,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17986,7 +18236,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18014,119 +18264,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po index 0bb5ac166..a1134cb7f 100644 --- a/application/locale/sq/LC_MESSAGES/messages.po +++ b/application/locale/sq/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-08-17 10:49+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Albanian Station Location to select one." msgstr "" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "" -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "" @@ -17351,169 +17597,173 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " "use Clublog in Wavelog. Visit %syour clublog settings page%s to do so." msgstr "" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17521,85 +17771,85 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." msgstr "" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "" @@ -17983,7 +18233,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "" @@ -18011,119 +18261,125 @@ msgstr "" msgid "Other Path" msgstr "" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" diff --git a/application/locale/sr/LC_MESSAGES/messages.mo b/application/locale/sr/LC_MESSAGES/messages.mo index f0f364ba5..2e638469b 100644 Binary files a/application/locale/sr/LC_MESSAGES/messages.mo and b/application/locale/sr/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sr/LC_MESSAGES/messages.po b/application/locale/sr/LC_MESSAGES/messages.po index 578da877f..d08d45149 100644 --- a/application/locale/sr/LC_MESSAGES/messages.po +++ b/application/locale/sr/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2024-12-10 11:09+0000\n" "Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n" "Language-Team: Serbian Station Location to select one." @@ -17112,7 +17358,7 @@ msgstr "" "Pažnja: morate postaviti aktivnu staničnu lokaciju. Idite na Pozivni znak -> " "Stanična lokacija kako biste izabrali lokaciju." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17120,23 +17366,23 @@ msgstr "" "Zbog nedavnih izmena u Wavelogu, morate doznačiti veze vašim staničnim " "profilima." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Održavanje" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Molimo doznačite ih na " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Povezano" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Omiljeno" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "označite/odznačite kao omiljeno" @@ -17880,41 +18126,45 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Omogućene stavke će biti prikazane na kartici QSO a ne na kartici Opšte." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Globalni tekst" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Ovaj tekst je opcioni tekst koji će biti prikazan na vrhu OQRS stranice." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Grupisana pretraga" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Isključeno" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Uključeno" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -17922,11 +18172,11 @@ msgstr "" "Kada je ovo uključeno, sve stanične lokacije sa aktivnim OQRS će odjednom " "biti uključene u pretragu." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Prikaži ime stanične lokacije u grunim rezultatima pretrage" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -17934,77 +18184,77 @@ msgstr "" "Ako je grupna pretraga uključena, možete odlučiti da li će naziv stanične " "lokacije biti prikazan u tabeli sa rezultatima." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." msgstr "" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Podrazumevane vrednosti" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Podešavanja za podrazumevani opseg i potvrde" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Podrazumevani opseg" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Podrazumevani metod potvrde veza" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Usluge treće strane" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Korisničko ime Loogbook of The World (LoTW)" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Lozinka Loogbook of The World (LoTW)" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "Korisničko ime eQSL.cc" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "Lozinka eQSL.cc" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Lozinka za Club Log" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18014,44 +18264,44 @@ msgstr "" "korišćenje Clubloga u Wavelogu. Posjetite %svaša Clublog podešavanja%s da to " "uradite." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18059,54 +18309,54 @@ msgid "" "effect." msgstr "" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Razno" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "Učitavanje na AMSAT Status" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Učitajte status SAT veza na" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL Mastodonservera" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Glavni URL vašeg Mastodon servera. npr. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Omogućene karakteristike Winkeyera" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18115,25 +18365,25 @@ msgstr "" "Winkeyer podrška u Wavelug je veoma eksperimentalna. Prvo pročitajte Wiki na " "%s prije nego omogućite ovu funkciju." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Privatni ključ za dobavu" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Pogledajte vaš profil na %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Prikaži samo prelete koje je moguće raditi" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18142,7 +18392,7 @@ msgstr "" "osnovu polja koje ste uneli u vaš hams.at nalog. Zahteva se unos privatnog " "ključa." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Sačuvajte nalog" @@ -18538,7 +18788,7 @@ msgstr "Prikaz svih QSO staničnih lokacija koje su povezane u ovom dnevniku" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "poslednje poslato" @@ -18566,119 +18816,125 @@ msgstr "Ukupno rastojanje" msgid "Other Path" msgstr "Ostale putanje" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Azimut antene" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Elevacija antene" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL karta je poslata preko biroa" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL karta je poslata direktno" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSL karta je poslata elektronski" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL karta je poslata preko menadžera" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL karta je poslata" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL karta je primljena preko biroa" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL karta je primljena direktno" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSL karta je primljena elektronski" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL karta je primljena preko menadžera" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL karta je primljena" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Ova stanica koristi LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Ovaj QSO je potvrđen" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Još QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Detalji" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Učitana slika prednje strane QSL karte" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Učitavanje slike QSL karte" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Učitana slike zadnje strane QSL karte" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Označi QSL primljenom (elektronski)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "Slika eQSL" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "" @@ -18869,6 +19125,9 @@ msgstr "" msgid "CQz geojson" msgstr "" +#~ msgid "radio functions" +#~ msgstr "funkcije radija" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Netačno upisane CQ zone" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.mo b/application/locale/sv_SE/LC_MESSAGES/messages.mo index 60915d153..6c9ab7f31 100644 Binary files a/application/locale/sv_SE/LC_MESSAGES/messages.mo and b/application/locale/sv_SE/LC_MESSAGES/messages.mo differ diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index f934167d5..6687d26e3 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-05 14:02+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-12 17:48+0000\n" "Last-Translator: \"Jorgen Dahl, NU1T\" \n" "Language-Team: Swedish \n" @@ -19,7 +19,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -72,8 +72,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -84,11 +84,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -119,11 +119,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -144,8 +144,8 @@ msgid "Activated Gridsquare Map" msgstr "Karta Aktiverade Lokatorrutor" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -199,7 +199,7 @@ msgstr "Totalt antal fält kontaktade" #: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:164 msgid "Gridsquare Activators" -msgstr "Lokatorruts aktiverare" +msgstr "Aktivörer av lokatorrutor" #: application/controllers/Activatorsmap.php:17 #: application/views/activators/index.php:2 @@ -307,51 +307,51 @@ msgstr "API-nyckel %s har tagits bort" msgid "Awards" msgstr "Diplom" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "Diplom - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -360,13 +360,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -378,29 +378,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "Diplom - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "Diplom - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "Loggvy - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -413,43 +413,58 @@ msgstr "Loggvy - VUCC" msgid "Log View" msgstr "Loggvy" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " och band " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "och" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "Varje band (utan SAT)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "band" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " och satellit " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " msgstr " och omloppstyp " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " msgstr " och utbredning " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " msgstr " och trafiksätt " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " msgstr " och " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -470,14 +485,14 @@ msgstr " och " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -492,16 +507,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -515,111 +530,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" msgstr "CQ WAZ (Worked All Zones)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "Worked All States (WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA (Island On The Air)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "USA:s län" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "Loggvy - Län" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "Diplom - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "Lokatorrutor kontaktade" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "Lokatorrutor bekräftade på LoTW" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "Lokatorrutor bekräftade av pappers-QSL" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "Totalt antal Lokatorrutor kontaktade" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "Fred Fish Memorial Award (FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "Diplom - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "ITU-zoner" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "Worked All Continents (WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -650,8 +665,7 @@ msgstr "Skapa trafiksätt" msgid "Edit Band" msgstr "Redigera band" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -684,15 +698,24 @@ msgstr "CBR-data importerad" msgid "Callsign statistics" msgstr "Anropssignalstatistik" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " och band " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " och sat " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "Anropssignals testare" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "CSV-anropssignalstestare" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "Anropssignals Testare" @@ -775,28 +798,31 @@ msgid "No user has configured Clublog." msgstr "Ingen användare har konfigurerat Clublog." #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -828,7 +854,7 @@ msgid "Update Contest" msgstr "Uppdatera tävling" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -846,12 +872,12 @@ msgstr "Redigera Cronjob" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "aldrig" @@ -926,14 +952,14 @@ msgstr "DCL-nyckelimport" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1179,7 +1205,7 @@ msgstr "Inga QSOs hittades för att ladda upp." msgid "KML Export" msgstr "KML-export" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "QSL-kortetiketter" @@ -1187,59 +1213,59 @@ msgstr "QSL-kortetiketter" msgid "Create Label Type" msgstr "Skapa etikett typ" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "Etikett Namn" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "Papperstyp" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "Mått" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "Övre marginal" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "Vänster marginal" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSL-kort horisontellt" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSL-kort vertikalt" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "Horisontellt utrymme" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "Vertikalt utrymme" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "Etikettbredd" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "Etiketthöjd" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "Teckenstorlek" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "Antal QSOs på etiketten" @@ -1248,22 +1274,22 @@ msgid "Create Paper Type" msgstr "Skapa papperstyp" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "Pappersnamn" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "Pappersbredd" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "Pappershöjd" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1271,18 +1297,18 @@ msgstr "" "Din papperstyp kunde inte sparas. Kom ihåg att den inte kan ha samma namn " "som en befintlig papperstyp." -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "Du måste tilldela en papperstyp till etiketten innan du skriver ut" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "Du måste skapa en etikett och välja den för utskrift." -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1290,31 +1316,31 @@ msgstr "" "Något gick fel! Etiketten kunde inte genereras. Kontrollera etikettstorlek " "och teckenstorlek." -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "0 QSOs hittades för utskrift!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "Redigera etikett" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "Etiketten sparades." -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "Etiketten raderades." -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "Redigera papper" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "Pappret sparades." -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "Papperet raderades." @@ -1338,55 +1364,55 @@ msgstr "Stationsloggböcker" msgid "Logbook" msgstr "Loggbok" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1394,93 +1420,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "Alla callbook-sökningar misslyckades eller gav inga resultat." -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1488,7 +1516,7 @@ msgstr "Alla callbook-sökningar misslyckades eller gav inga resultat." #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1505,13 +1533,13 @@ msgstr "Alla callbook-sökningar misslyckades eller gav inga resultat." #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1550,15 +1578,15 @@ msgstr "Alla callbook-sökningar misslyckades eller gav inga resultat." msgid "Mode" msgstr "Trafiksätt" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1579,15 +1607,15 @@ msgstr "Trafiksätt" msgid "RST (S)" msgstr "RST (S)" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1609,7 +1637,7 @@ msgstr "RST (S)" msgid "RST (R)" msgstr "RST (R)" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1618,29 +1646,29 @@ msgstr "RST (R)" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "Land" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1653,7 +1681,7 @@ msgstr "Land" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1661,7 +1689,7 @@ msgstr "Land" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1670,12 +1698,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1684,7 +1712,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1692,7 +1720,7 @@ msgstr "IOTA" msgid "State" msgstr "Delstat" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1701,19 +1729,19 @@ msgstr "Delstat" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1729,20 +1757,20 @@ msgstr "Delstat" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "Lokatorruta" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1752,9 +1780,9 @@ msgstr "Lokatorruta" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1772,18 +1800,18 @@ msgstr "Lokatorruta" msgid "Distance" msgstr "Avstånd" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1791,25 +1819,26 @@ msgstr "Avstånd" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1820,13 +1849,13 @@ msgstr "Avstånd" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1865,13 +1894,14 @@ msgstr "Avstånd" msgid "Band" msgstr "Band" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1892,13 +1922,13 @@ msgstr "Band" msgid "Frequency" msgstr "Frekvens" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1911,21 +1941,21 @@ msgstr "Frekvens" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "Operatör" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1934,14 +1964,14 @@ msgstr "Operatör" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "Struket DXCC" @@ -1949,12 +1979,12 @@ msgstr "Struket DXCC" msgid "Advanced logbook" msgstr "Avancerad loggbok" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "DXCC uppdaterad för %d QSO(s)." -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "Karta för DXCC %s och lokatorruta %s." @@ -1969,7 +1999,7 @@ msgstr "Snabb uppslagning" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World" @@ -1981,11 +2011,11 @@ msgstr "Certifikat importerat." msgid "Certificate Updated." msgstr "Certifikat uppdaterat." -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "Certifikat raderat." -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -1998,7 +2028,7 @@ msgstr "" "tqsl-applikationen utan lösenord!%s För mer information, vänligen besök " "%sLoTW FAQ-sidan%s i Wavelog Wiki." -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2009,52 +2039,52 @@ msgstr "" "innehåller 'key-only' är det vanligtvis en certifikatbegäran som ännu inte " "har behandlats av LoTW." -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "Generiskt fel vid bearbetning av certifikatet i filen %s." -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "" "Generiskt fel vid extrahering av den privata nyckeln från certifikatet i " "filen %s." -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF-information" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "Anslutning till LoTW misslyckades." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW-inloggning misslyckades för användare %s: %s." -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "Användarnamn/lösenord felaktigt" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW är för närvarande inte tillgänglig. Försök igen senare." -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "LoTW-inloggning OK!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "Inga LoTW detaljer angivna." -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW ADIF-import" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "Du har inte angivit dina ARRL LoTW-uppgifter!" @@ -2079,7 +2109,7 @@ msgstr "Redigera Trafiksätt" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "Anteckningar" @@ -2397,19 +2427,19 @@ msgstr "Ladda upp QSL-kort" msgid "Print Requested QSLs" msgstr "Skriv ut begärda QSL" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "Lägg till QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "Du måste vara inloggad för att komma åt den här URL:en." -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "Överför Anropssignal" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "Ingen anropssignal angiven." @@ -2418,18 +2448,18 @@ msgstr "Ingen anropssignal angiven." msgid "Hardware Interfaces" msgstr "Hårdvarugränssnitt" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "Radio" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "Tidsstämpel" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2437,61 +2467,65 @@ msgstr "Tidsstämpel" msgid "Options" msgstr "Alternativ" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "Inställningar" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "Standard (klicka för att släppa)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "Ställ in som standardradio" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "OKÄND" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "senast uppdaterad" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "Ställ in som standardradio" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "Standard (klicka för att släppa)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "Redigera" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2500,22 +2534,39 @@ msgstr "Redigera" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "Radera" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket är för närvarande standard (klicka för att släppa)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "Ange WebSocket som standardradio" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "Inga CAT-anslutna radioapparater hittades." -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "" +"Du kan fortfarande ställa in WebSocket-alternativet som din standardradio." + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "Redigera CAT-inställningar" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "Radio borttagen framgångsrikt" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "Exportera EDI" @@ -2583,7 +2634,7 @@ msgstr "Du har inga stationplatser. Gå %s för att skapa en stationsplats!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2594,13 +2645,13 @@ msgstr "här" msgid "Satellite Timers" msgstr "Satellittimers" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2655,7 +2706,8 @@ msgstr "Redigera stationsplats: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2663,7 +2715,7 @@ msgstr "Redigera stationsplats: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2676,7 +2728,7 @@ msgid "Duplicate Station Location:" msgstr "Duplicera stationsplats:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "Kontrollera värdet för Lokatorrutan (%s)" @@ -2739,7 +2791,8 @@ msgstr "Fel. Länken används redan!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2747,19 +2800,19 @@ msgid "Disabled" msgstr "Inaktiverad" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "Ange som aktiv loggbok" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "Aktiv loggbok" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2769,7 +2822,7 @@ msgstr "" "länka om alla platser som är länkade här till en annan loggbok." #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "Visa offentlig sida för loggbok: " @@ -2778,7 +2831,7 @@ msgid "Are you sure you want to delete the public slug?" msgstr "Är du säker på att du vill ta bort den offentliga sluggen?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" @@ -2787,12 +2840,12 @@ msgstr "" "stationen?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "Aktivera" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "Aktiv station" @@ -2800,31 +2853,31 @@ msgstr "Aktiv station" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "Är du säker på att du vill radera alla QSOs inom denna stationsprofil?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "Tom logg" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "Kopiera" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2837,7 +2890,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "Välj ett alternativ" @@ -2917,103 +2970,103 @@ msgstr "Förbereder DXCC-undantag: " msgid "Preparing DXCC Prefixes: " msgstr "Förbereder DXCC-prefix: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "KLAR" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "Uppdaterar..." -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC-entiteter:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "Dxcc-undantag:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "Dxcc-prefix:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW-användaruppdatering slutförd. Resultat: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW-användaruppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl-uppdatering klar. Resultat: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE-uppdatering slutförd. Resultat: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE-uppdatering misslyckades. Resultat: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW SAT-uppdatering" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Uppdatering av Hams of Note" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC-locatorfiluppdatering slutförd. Resultat: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC-lokatorfiluppdatering misslyckades. Resultat: " @@ -3047,61 +3100,61 @@ msgstr "Ogiltig parameter!" msgid "Add User" msgstr "Lägg till användare" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "Användarnamnet %s är redan upptaget!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-post %s används redan!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "Ogiltigt lösenord!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "Användare %s tillagd!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "Användare" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "Redigera användare" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "Användare %s redigerad" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "Profil" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "Radera användare" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "Användaren raderad" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "Kunde inte ta bort användare!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "Databasfel:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." @@ -3109,29 +3162,29 @@ msgstr "" "Grattis! Wavelog installerades framgångsrikt. Du kan nu logga in för första " "gången." -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "Det här är inte tillåtet!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "Inloggning misslyckades. Försök igen." -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "Logga in" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "" "Du kan inte logga in på en klubbstation direkt. Använd istället ditt " "personliga konto." -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." @@ -3139,7 +3192,7 @@ msgstr "" "Ditt konto är låst på grund av för många misslyckade inloggningsförsök. " "Vänligen återställ ditt lösenord." -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3149,52 +3202,52 @@ msgstr "" "meddelande visas oväntat eller fortsätter att visas, vänligen kontakta en " "administratör. Endast administratörer får för närvarande logga in." -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "Fel användarnamn eller lösenord!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "Användare %s loggade ut." -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "Stationsnamn" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "Stationsanropssignal" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "Station DXCC" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "Station CQ-zon" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "Station ITU-zon" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "Stationens Lokatorsruta" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3203,36 +3256,36 @@ msgstr "" "Station framgångsrikt skapad! Välkommen till Wavelog! För att slutföra dina " "stationsinställningar, klicka %shär%s." -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "" "Stationsinställningar misslyckades! Vänligen ställ in din station manuellt." -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "Återställning av lösenord är inaktiverad i demomod!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "Glömt lösenord" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "E-postinställningarna är felaktiga." -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "Lösenordsåterställning utförd." -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "Återställ lösenord" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." @@ -3240,13 +3293,13 @@ msgstr "" "Kunde inte använda detta användarnamn. Vänligen försök med ett annat än " "\"%s\"." -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "Kunde inte använda denna e-post. Försök med en annan adress än \"%s\"." -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3255,7 +3308,7 @@ msgstr "" "Du kan för närvarande inte utge dig för att vara en annan användare. Du " "behöver ändra %s till %s i din config.php!" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " @@ -3264,15 +3317,15 @@ msgstr "" "Du kan för närvarande inte utge dig för att vara en annan användare. Ändra " "först encryption_key i din config.php-fil!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Ogiltig hash" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "Imitationshashen är för gammal. Försök igen." -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" @@ -3280,15 +3333,15 @@ msgstr "" "Du kan inte utge dig för att vara en annan användare när du inte är inloggad " "som källanvändaren" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "Det uppstod ett problem med din session. Försök igen." -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "Den begärda användaren att utge dig för existerar inte" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." @@ -3296,13 +3349,13 @@ msgstr "" "Kunde inte fastställa rätt behörighetsnivå för klubbstationen. Försök igen " "efter att ha loggat in på nytt." -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "Oj.. Något gick fel. Försök logga in igen." -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." @@ -3310,7 +3363,7 @@ msgstr "" "Möjligheten att återvända snabbt har inaktiverats efter att säkerhetshashen " "har gått ut. Logga in igen." -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3324,7 +3377,7 @@ msgid "Satellite Gridsquare Map" msgstr "Satellit lokator-karta" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "Offentlig sökning" @@ -3376,14 +3429,19 @@ msgstr "Flera användare hittades med slug" msgid "Gridsquare Zone finder" msgstr "Locator Zon sökare" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "Uppslagning inte konfigurerad. Vänligen granska konfigurationen." + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "Fel vid erhållande av sessionsnyckel för callbook. Fel: %s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "QRZCQ-fel" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "Fel vid erhållande av en sessionsnyckel för HamQTH-fråga" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3535,25 +3593,25 @@ msgstr "HRDlog: Inga stationsprofiler med HRDlog-uppgifter hittades." msgid "Station not accessible" msgstr "Stationen är inte tillgänglig" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "Stations-ID inte tillåtet" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "Ingen anropssignal angiven" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC måste vara numerisk" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "Fel anropssignal %s vid import av QSO med %s för %s: HOPPADES ÖVER" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" @@ -3561,11 +3619,11 @@ msgstr "" "Du försökte importera ett QSO utan giltigt datum. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO kl" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3573,7 +3631,7 @@ msgstr "" "Du försökte importera ett QSO utan angivet CALL. Detta QSO importerades " "inte. Det är ogiltigt" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3582,64 +3640,64 @@ msgstr "" "QSO på %s: Du försökte importera ett QSO utan angivet band. Detta QSO " "importerades inte. Det är ogiltigt" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date är ogiltigt (ÅÅÅÅMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "Dubblett för" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSO kunde inte matchas" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bekräftad av LoTW/Clublog/eQSL/Tävling" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "bekräftad av diplomansvarig" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "bekräftat genom korskontroll av DCL-data" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "bekräftelse väntar" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "obekräftad" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "Okänd" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "POTA-referens redan i loggen" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO uppdaterad" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3653,7 +3711,7 @@ msgstr "QSO uppdaterad" msgid "Bearing" msgstr "Bäring" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "VuccLokator-tabellen är tom. Importera VUCC-lokatordata först." @@ -3790,42 +3848,40 @@ msgstr "Skillnad" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3854,33 +3910,33 @@ msgstr "Skillnad" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3901,7 +3957,7 @@ msgstr "Skillnad" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "Alla" @@ -3945,12 +4001,12 @@ msgstr "Period" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "Utbredning" @@ -3966,7 +4022,7 @@ msgstr "Alla utom SAT" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "Inget" @@ -3976,11 +4032,11 @@ msgstr "Inget" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Flygplans Scatter" @@ -3990,11 +4046,11 @@ msgstr "Flygplans Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -4004,11 +4060,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -4018,11 +4074,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -4032,11 +4088,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -4046,11 +4102,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "Earth-Moon-Earth" @@ -4060,11 +4116,11 @@ msgstr "Earth-Moon-Earth" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadisk E" @@ -4074,11 +4130,11 @@ msgstr "Sporadisk E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Fältjusterade oregelbundenheter" @@ -4088,11 +4144,11 @@ msgstr "Fältjusterade oregelbundenheter" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2-reflektion" @@ -4102,11 +4158,11 @@ msgstr "F2-reflektion" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Internet-assisterad" @@ -4116,11 +4172,11 @@ msgstr "Internet-assisterad" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4130,11 +4186,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4144,11 +4200,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor scatter" @@ -4158,11 +4214,11 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Markbunden eller atmosfärisk repeater eller transponder" @@ -4172,11 +4228,11 @@ msgstr "Markbunden eller atmosfärisk repeater eller transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Regnscatter" @@ -4186,11 +4242,11 @@ msgstr "Regnscatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satellit" @@ -4200,11 +4256,11 @@ msgstr "Satellit" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-ekvatoriell" @@ -4214,11 +4270,11 @@ msgstr "Trans-ekvatoriell" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Troposfärisk ducting" @@ -4227,18 +4283,18 @@ msgstr "Troposfärisk ducting" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4250,21 +4306,21 @@ msgstr "Troposfärisk ducting" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "Visa" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4275,7 +4331,7 @@ msgstr "Visa" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4284,19 +4340,25 @@ msgstr "Visa" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "Satellit" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4316,22 +4378,22 @@ msgstr "Bekräftelse" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4377,11 +4439,11 @@ msgstr "Minsta antal" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4390,11 +4452,10 @@ msgstr "Minsta antal" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4414,7 +4475,8 @@ msgstr "Inget hittades!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4430,12 +4492,13 @@ msgstr "Inget hittades!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4459,7 +4522,7 @@ msgstr "Inget hittades!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "Anropssignal" @@ -4470,12 +4533,12 @@ msgstr "Antal" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "Visa QSOs" @@ -4541,7 +4604,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4565,11 +4628,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4583,12 +4646,12 @@ msgstr "Datum" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4603,7 +4666,7 @@ msgstr "Datum" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4616,7 +4679,7 @@ msgstr "Tid" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4671,20 +4734,20 @@ msgstr "Viktigt" msgid "Log Files must have the file type *.adi" msgstr "Loggfil måste vara av format *.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "Maximal filuppladdningsstorlek är " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4744,8 +4807,8 @@ msgstr "" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "FARA" @@ -5130,8 +5193,8 @@ msgstr "POTA REF i ADIF" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "Status" @@ -5150,7 +5213,7 @@ msgstr "Enkelt namn för att beskriva vad du använder detta API till." #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5216,7 +5279,7 @@ msgstr "API-URL:en för denna Wavelog-instans är" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5270,7 +5333,7 @@ msgstr "Behörighet" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5315,7 +5378,7 @@ msgstr "Skapa en skrivskyddad nyckel" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5324,8 +5387,8 @@ msgstr "Skapa en skrivskyddad nyckel" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5342,14 +5405,14 @@ msgstr "Skapa en skrivskyddad nyckel" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5405,9 +5468,9 @@ msgid "Filtering on" msgstr "Filtrering på" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "Län" @@ -5459,19 +5522,14 @@ msgid "Counties Confirmed" msgstr "Län bekräftade" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5493,22 +5551,23 @@ msgid "Total" msgstr "Totalt" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5561,10 +5620,12 @@ msgid "Awards - CQ WAZ" msgstr "Diplom - CQ WAZ" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "Filter" @@ -5574,92 +5635,114 @@ msgid "Show CQ Zone Map" msgstr "Visa CQ-zonkarta" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "Datum presets" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "Idag" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "Igår" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "Senaste 7 dagarna" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "Senaste 30 dagarna" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "Den här månaden" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "Förra månaden" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "Det här året" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "Förra året" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "Rensa" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5667,7 +5750,9 @@ msgid "Date from" msgstr "Datum från" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5675,11 +5760,10 @@ msgid "Date to" msgstr "Datum till" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5689,9 +5773,8 @@ msgid "Confirmed" msgstr "Bekräftade" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5701,67 +5784,64 @@ msgstr "Kontaktade" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "Visa kontaktade" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "Visa bekräftade" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "Visa ej kontaktade" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5769,95 +5849,161 @@ msgstr "Visa QSO med QSL-typ" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL-kort" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "Tabell" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "Karta" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "Legend:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "(Q)SL-papperskort" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "(L)oTW" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "(e)QSL" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QR(Z)-\"bekräftelse\"" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "(C)lublog" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "(W) Kontaktad" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "Sammanfattning" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "Totalt (exkl. SAT)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "Totalt kontaktade" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5922,15 +6068,15 @@ msgid "DOK + SDOK" msgstr "DOK / SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "Kontaktad / Bekräftad" @@ -5939,11 +6085,9 @@ msgstr "Kontaktad / Bekräftad" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "Alla band" @@ -5951,23 +6095,20 @@ msgstr "Alla band" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "Återställ" @@ -6023,161 +6164,127 @@ msgstr "" "Fält som använts för detta diplom: DXCC (Måste vara ett giltigt från DXCC-" "ADIF-Spec-List" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "Visa DXCC-karta" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "Inkludera strukna" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "Antarktis" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "Afrika" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "Asien" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "Europa" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "Nordamerika" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "Sydamerika" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "Oceanien" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "Varje band (utan SAT)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "Legend:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "(Q)SL-papperskort" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "(L)oTW" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "(e)QSL" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QR(Z)-\"bekräftelse\"" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "(C)lublog" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "(W) Kontaktad" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "DXCC-namn" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "Prefix" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "Inga resultat hittades för dina sökkriterier. Försök igen." @@ -6442,23 +6549,23 @@ msgstr "Visa IOTA-karta" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "Namn" @@ -6467,14 +6574,14 @@ msgid "Deleted" msgstr "Raderad" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6484,7 +6591,7 @@ msgstr "Raderad" msgid "ITU Zone" msgstr "ITU-zon" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6495,21 +6602,21 @@ msgstr "" "att ha kontaktat landbaserade amatörradiostationer i minst 70 av de 75 " "sändningszoner som definieras av Internationella teleunionen (ITU)." -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "Du kan hitta mer information på webbplatsen för %s." -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "Fält som använts för detta diplom: ITU-Zon (ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "Diplom - ITU-zoner" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "Visa ITU-zonkarta" @@ -6566,7 +6673,7 @@ msgstr "Resultat" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "Stad" @@ -6575,8 +6682,10 @@ msgstr "Stad" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "SAT" @@ -6710,7 +6819,7 @@ msgstr "Vojvodskaskap" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "Kod" @@ -6726,7 +6835,7 @@ msgstr "FONI" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6764,8 +6873,8 @@ msgid "Band Categories" msgstr "Bandkategorier" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "Åtgärda Delstat" @@ -6836,8 +6945,8 @@ msgstr "" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "POTA-referens(er)" @@ -6848,6 +6957,7 @@ msgstr "Provins" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "Hovra över en provins" @@ -6914,7 +7024,7 @@ msgid "Reference" msgstr "Referens" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6981,7 +7091,7 @@ msgstr "" "bekräftade lokatorrutor på ett önskat band." #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "Officiell information och regler finns i det här dokumentet: %s." @@ -7065,25 +7175,30 @@ msgstr "" msgid "Awards - Worked All Continents (WAC)" msgstr "Diplom - Worked All Continents (WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "Kontinent" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "Inga QSOS hittades som matchar kriterierna för detta diplom!" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "WAE Award" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -7093,7 +7208,7 @@ msgstr "" "amatörradiostationer i europeiska länder och öar som finns med på WAE-" "landlistan på olika band." -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -7103,11 +7218,11 @@ msgstr "" "FT8, Digital och Mixade trafiksätt. Det utfärdas i fem klasser: WAE III, WAE " "II, WAE I, WAE TOP och WAE Trophy." -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "Fält som använts för detta diplom: Region, DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "WAE Namn" @@ -7157,7 +7272,7 @@ msgid "Show WAJA Map" msgstr "Visa WAJA-karta" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "Prefektur" @@ -7223,15 +7338,20 @@ msgid "Show WAP Map" msgstr "Visa WAP-karta" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "Provins" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "Provins" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - Worked All Provinces of China" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7243,7 +7363,7 @@ msgstr "" "provinser, kommuner, autonoma regioner och särskilda administrativa regioner " "i Kina, för att främja en djupare förståelse för Kina." -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." @@ -7251,7 +7371,7 @@ msgstr "" "Diplomet kan uppnås genom långsiktig ackumulering av kontakter eller uppnås " "i en enda insats under den årliga WAPC-tävlingen." -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7261,6 +7381,10 @@ msgstr "" "HongKong/321, Macao/152, Taiwan/386, Pratas Isl./505 eller Scarborough " "Reef/506) och giltig stat (ADIF: DXCC och STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "Visa WAPC-karta" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7373,8 +7497,8 @@ msgstr "Fält som använts för detta diplom: WWFF (ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "WWFF-referens" @@ -7429,279 +7553,279 @@ msgstr "" "Säkerhetskopieringen av dina anteckningar slutfördes framgångsrikt. Kopian " "finns på" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "Klicka för att förbereda loggning." -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "ställa in frekvens" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "Pop-up Blockerad" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "Popup blockerades! Tillåt pop-ups för den här webbplatsen permanent." -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "CAT-anslutning krävs" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "Aktivera CAT-anslutning för att kontrollera radion" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "Rensa filter" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "Bandfilter bevarat (bandlås är aktivt)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "Radio inställd på Ingen - CAT-anslutning inaktiverad" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "Radio inställd" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "Inställd på" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "Inställning misslyckades" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "Misslyckades med att ställa in frekvensen på radion" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO Förberedd" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "skickat till loggningsformulär" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT-anslutning" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "Klicka för att aktivera CAT-anslutning" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT följer radio - Klicka för att inaktivera" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "Klicka för att aktivera bandlås (kräver CAT-anslutning)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "Bandlås aktivt - Klicka för att inaktivera" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "Bandlås" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "Bandlås aktiverat - bandfiltret följer radions band" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "Bandfilter ändrat till" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "från transceiver" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "Frekvensfiltret inställt på" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "Frekvens utanför kända band - visar alla band" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "Väntar på radiodata..." -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "Mina favoriter" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "Det gick inte att läsa in favoriterna" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "Trafiksätt tillämpat. Bandfiltret bevarat (CAT-anslutningen är aktiv)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "Tillämpar dina favorit band och trafiksätt" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "Mina Subtrafiksätt" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "Filter för Subtrafiksätt aktiverat" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "Filtret för Subtrafiksätt avaktiverat - visar alla" -#: application/views/bandmap/list.php:50 -msgid "Required submodes" -msgstr "Krävda subtrafiksätt" - #: application/views/bandmap/list.php:51 +msgid "Required submodes" +msgstr "Valda subtrafiksätt" + +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "Konfigurera under Användarinställningar - Trafiksätt" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "" "Inga subtrafiksätt tillagda - konfigurera i Användarinställningar - " "Trafiksätt" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "Inga subtrafiksätt aktiverade i inställningarna - visar alla spots" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "" "Inaktiverad - inga subtrafiksätt i användarinställningarna har aktiverats " "för detta trafiksätt" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "Växla filter för CW trafiksätt" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "Växla filter för digitala trafiksätt" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "Växla filter för Foni trafiksätt" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "Favoriter" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "Spara nuvarande filter..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "Ange ett namn för det här filterförvalet:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "Filterförval sparad" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "Filterförval laddat" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "Filterförval borttaget" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "Är du säker på att du vill ta bort detta filterförval?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "Inga sparade filterförval" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "" "Maximala 20 filterförval har nåtts. Ta bort några innan du lägger till nya." -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "Laddar data från DX-kluster" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "Senast hämtad för" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "Max-ålder" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "Hämtad kl" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "Nästa uppdatering om" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "minuter" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "sekunder" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spots hämtade" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "visar" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "visar alla" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "Aktiva filter" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "Hämtar..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "Ej kontaktade" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "Kontaktade, ej Bekräftade" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7709,267 +7833,270 @@ msgstr "Kontaktade, ej Bekräftade" msgid "LoTW User" msgstr "LoTW-användare" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "Ny anropssignal" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "Ny kontinent" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "Nytt land" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "Kontaktad tidigare" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "Kontaktade %s med %s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "spottad" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "Färsk spot (< 5 minuter gammal)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "Tävling" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "Klicka för att visa" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "på QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "Klicka för att se %s på QRZ.com" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "Se detaljer för" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "Kontaktad" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "Ej kontaktad på det här bandet" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LoTW-användare. Senaste uppladdningen var för %d dagar sedan" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "Klicka för att visa på POTA.app" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "Klicka för att visa på SOTL.as" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "Klicka för att visa på cqgma.org" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "Klicka för att visa på IOTA-World.org" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "Se detaljer för kontinenten" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "Se detaljer för kontinent %s" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "Se detaljer för CQ-zonen" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "Se detaljer för CQ-zon %s" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "i" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "Avsluta helskärmsläge" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "Växla till helskärm" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "Band filtreringen styrs av din radio när CAT-anslutningen är aktiverad" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "Klicka för att förbereda loggning" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(kräver CAT-anslutning)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "Notering" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "Ålder" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "Inkommande" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "Utgående" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spottar" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spottare" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "Vänligen vänta" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "" "Vänligen vänta %s sekunder innan du skickar en annan anropssignal till QSO-" "formuläret" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "Laddar spots..." -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "Inga spottar hittades" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "Ingen data tillgänglig" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "Inga spottar hittades för valda filter" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "Fel vid inläsning av spots. Försök igen." -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "Visa alla trafiksätt" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "Visa alla spottar" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "Visa Spottare" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "Utöka karta" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "Visa dag/natt" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "Ditt QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "Återvänd hem" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX-kluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX-kluster hjälp" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "Kompakt Läge - Dölj/Visa meny" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7977,316 +8104,281 @@ msgstr "TRX:" msgid "None" msgstr "Ingen" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "Live - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "Polling - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "de:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "Välj alla kontinenter" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "Värld" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "Växla filter för den Afrikanska kontinenten" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "Växla filter för den Antarktiska kontinenten" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "Växla filter för den Asiatiska kontinenten" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "Växla filter för den Europeiska kontinenten" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "Växla filter för den Nordamerikanska kontinenten" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "Växla filter för den Oceaniska kontinenten" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "Växla filter för den Sydamerikanska kontinenten" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "Avancerade filter" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "Håll" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "och klicka för att välja flera alternativ" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC-status" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Foni" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "Nödvändiga flaggor" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "Kontaktad anropssignal" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "Ytterligare flaggor" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "Färsk (< 5 min)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "Spottar de Kontinent" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "Spottad stations kontinent" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "Tillämpa filter" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "Filtrera favoriter" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "Rensa alla filter förutom De Kontinent" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "Växla 160m bandfilter" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "Växla 80m bandfilter" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "Växla 60m bandfilter" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "Växla 40m bandfilter" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "Växla 30m bandfilter" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "Växla 20m bandfilter" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "Växla 17m bandfilter" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "Växla 15m bandfilter" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "Växla 12m bandfilter" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "Växla 10m bandfilter" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "Växla 6m-bandfilter" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "Växla VHF-bandfilter" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "Växla UHF-bandfilter" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "Växla SHF-bandfilter" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "Laddar subtrafiksätt..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "Växla LoTW-användarfilter" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW-användare" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "Växla DX Spot-filter (spotted kontinent ≠ spotter kontinent)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "Växla Nya kontinenter-filter" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "Nya kontinenter" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "Växla filtret för nya Entiteter" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "Nya Entiteter" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "Växla filter för nya anropssignaler" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "Nya anropssignaler" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "Växla filter för nya spots (< 5 minuter gamla)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "Färsk" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "Växla tävlingsfilter" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "Växla Geo Hunter (POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "Refererad" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "Öppna DX-kartvy" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX-karta" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "Sök spottar..." +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "Sök kolumn" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "" -"Observera: Kartan visar DXCC-entitet positioner, inte faktiska spot " -"positioner" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "Alla kolumner" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "Ålder i minuter" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot Info" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "Frek" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "Subtrafiksätt" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "Spottad Anropssignal" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX-station" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "Flagga" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "DXCC-entitet" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "Entitet" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "Spotter Anropssignal" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "Spotter Kontinent" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "Spotter CQ-zon" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "Senaste QSO-datum" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "Speciell" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "Speciella flaggor" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8294,6 +8386,62 @@ msgstr "Speciella flaggor" msgid "Message" msgstr "Meddelande" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "Spotter Kontinent" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "Spotter CQ-zon" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "Sök spottar..." + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "" +"Observera: Kartan visar DXCC-entitet positioner, inte faktiska spot " +"positioner" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "Ålder i minuter" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "Frek" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "Spottad Anropssignal" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "Flagga" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "DXCC-entitet" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "Spotter Anropssignal" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "Senaste QSO-datum" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "Speciell" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "Speciella flaggor" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "Vänligen ange giltiga nummer för frekvens" @@ -8569,7 +8717,7 @@ msgstr "" "referenskoden)." #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8687,19 +8835,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8733,15 +8881,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "Ja" @@ -8756,19 +8906,19 @@ msgstr "Ja" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8802,16 +8952,17 @@ msgstr "Ja" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "Nej" @@ -8842,7 +8993,7 @@ msgid "First QSO" msgstr "Första QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "Senaste QSO" @@ -8951,8 +9102,8 @@ msgid "Callsign DXCC identification" msgstr "Anropssignal DXCC-identifiering" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "Anropssignal: " @@ -9240,8 +9391,8 @@ msgstr "" #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9552,7 +9703,7 @@ msgstr "ADIF-namn" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9622,7 +9773,7 @@ msgstr "Skapa" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "Contest-namn" @@ -9698,8 +9849,8 @@ msgid "Locator" msgstr "Lokator" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9814,11 +9965,11 @@ msgstr "Identifierare" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "Aktiverad" @@ -9913,7 +10064,8 @@ msgid "Cron List" msgstr "Cronlista" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -10053,7 +10205,7 @@ msgstr "Inga QSOs idag - dags att slå på radion!" #: application/views/dashboard/index.php:193 msgid "Attention: you need to set an active station location." -msgstr "OBS! Du behöver ange en aktiv station location." +msgstr "OBS! Du behöver ange en aktiv stationsplats." #: application/views/dashboard/index.php:200 msgid "" @@ -10110,9 +10262,9 @@ msgstr "Behövs" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -10134,10 +10286,10 @@ msgstr "Behövs" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "Skickad" @@ -10147,9 +10299,9 @@ msgstr "Skickad" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -10170,10 +10322,10 @@ msgstr "Skickad" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "Mottagen" @@ -10181,17 +10333,17 @@ msgstr "Mottagen" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -10214,11 +10366,11 @@ msgstr "Mottagen" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "Begärt" @@ -10244,6 +10396,38 @@ msgstr "Senaste uppdateringen kl. %s." msgid "Data provided by HAMqsl." msgstr "Data tillhandahålls av HAMqsl." +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "K-index: Planetär geomagnetisk aktivitet (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "A-index: Dagligt geomagnetiskt aktivitetsindex" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "Solflödesindex" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "Solvindens hastighet (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "Signal-brusförhållande" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "Solröntgenflödenivå" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "Solfläcksnummer" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "Aurora-aktivitetens nivå (Kp borealis)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "Antal QSOs för denna veckodag" @@ -10323,7 +10507,7 @@ msgstr "Startdatum" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "Slutdatum" @@ -10662,7 +10846,8 @@ msgstr "Godkänt" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "Ej Godkänt" @@ -10741,109 +10926,128 @@ msgstr "Moduler" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "Installerad" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "Ej installerad" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "Cache-information" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "Nuvarande konfiguration" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "Primär cache-adapter" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "Backup adapter" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "Sökväg till cache för %s-adaptern" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" msgstr "Nyckelprefix" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "" -"Cache använder reservadapter (fallback) eftersom primär adapter inte är " -"tillgänglig." - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "Cachen fungerar korrekt. Allt är i ordning!" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "Cache-detaljer" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "Totalstorlek" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" msgstr "Antal cache-nycklar" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "Cachen fungerar korrekt. Allt är i ordning!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"Cachen använder för närvarande reservadaptern eftersom primäradaptern är " +"otillgänglig. Kontrollera dina filrättigheter, PHP-tillägg och/eller din " +"nätverksanslutning till tjänsterna (om du använder redis/memcached)." + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"Cachen fungerar inte! Just nu använder systemet en %s adapter. Kontrollera " +"dina filbehörigheter, PHP-tillägg och/eller din nätverksanslutning till " +"tjänsterna (om du använder redis/memcached). Du kan fortsätta använda " +"Wavelog, men inga värden kommer att cachelagras (vilket är dåligt)." + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "Tillgängliga adaptrar" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "Rensa cache" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Git-information" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "Gren" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "ET" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Begå" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "Märke" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "Sista hämtning" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "Kontrollera om det finns en ny version" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10851,77 +11055,77 @@ msgstr "Kontrollera om det finns en ny version" msgid "Update now" msgstr "Uppdatera nu" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "Filnedladdningsdatum" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "Fil" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "Senaste uppdatering" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "DXCC-uppdatering från Club Log" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "Uppdatera" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "DOK-filnedladdning" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "LoTW-användare filnedladdning" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "POTA filnedladdning" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "SCP-filnedladdning" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "SOTA-filnedladdning" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "WWFF-filnedladdning" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "TLE-uppdatering" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "Hams Of Note uppdatering" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCC Lokatorrutor" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "Underhåll av QSO-DB" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -10929,140 +11133,140 @@ msgid_plural "" msgstr[0] "Databasen innehåller %d QSO utan en stationsprofil (plats)" msgstr[1] "Databasen innehåller %d QSOs utan en stationsprofil (plats)" -#: application/views/debug/index.php:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Markera QSOs och tilldela dem till en befintlig stationsplats:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "Målplats" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "Tilldela på nytt" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "Varje QSO i din databas är tilldelad en stationsprofil (plats)" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "Allt okej" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "Albanska" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "Armeniska" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "Bosniska" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "Bulgariska" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "Kinesiska (förenklad)" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "Kroatisk" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "Tjeckiska" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "Nederländska" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "Engelska" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "Estniska" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "Finska" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "Franska" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "Tysk" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "Grekiska" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "Ungerska" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "Italienska" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "Japanska" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "Lettiska" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "Litauiska" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "Montenegrin" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "Polera" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "Portugisiska" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "Ryska" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "Serbiska" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "Slovakiska" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "Slovenska" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "Spanska" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "Svenska" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "Turkiska" @@ -11123,7 +11327,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "Endast QSOs med en definierad lokatorruta kommer att exporteras!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL-info" @@ -11372,7 +11576,7 @@ msgstr "" #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "QSL-meddelande" @@ -11508,31 +11712,32 @@ msgid "QSL Date" msgstr "QSL-datum" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "Visa" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "Tom" @@ -11618,7 +11823,7 @@ msgstr "QSOs är markerade som exporterade till HRDLog Logbook." #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "Redigera QSO" @@ -12013,76 +12218,76 @@ msgstr "Versionsinformation" msgid "Failed to load the modal. Please try again." msgstr "Det gick inte att ladda modalen. Försök igen." -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "Beskrivning:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "Frågebeskrivning" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "Din förfrågan har sparats!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "Redigera frågor" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "Lagrade frågor:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "Kör fråga" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "Lagrade frågor" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "Du måste göra en förfrågan innan du söker!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "Exportera till ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "Öppna i den avancerade loggboken" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "Varning! Är du säker på att du vill ta bort denna sparade fråga?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "Den sparade frågan har raderats!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "Den sparade frågan kunde inte raderas. Försök igen!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "Frågebeskrivningen har uppdaterats!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "Något gick fel med sparandet. Försök igen!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -12092,15 +12297,15 @@ msgstr "" "vilken DXCC som är korrekt för denna specifika plats. Om du är säker, " "ignorera denna varning." -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "Antal: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "Lokatorrutor: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -12108,57 +12313,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "Lokatorrutor" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "Platssökning misslyckades. Vänligen kontrollera webbläsarkonsolen." + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "lokatorruta" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "Totalt antal" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSL-kort för " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "Varning! Är du säker på att du vill ta bort detta QSL-kort?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "eQSL-kort" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL-kort för " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "QSL-bildfil" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "Framsida QSL-kort:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "Baksida QSL-kort:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "Lägg till ytterligare QSOs på ett QSL-kort" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "Något gick fel. Försök igen!" @@ -12312,7 +12521,7 @@ msgid "Satellite Pass" msgstr "Satellitpassage" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "Administratör" @@ -12337,7 +12546,7 @@ msgid "Log" msgstr "Logg" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12434,7 +12643,7 @@ msgid "Gridsquare Zone checker" msgstr "Locator Zon kontrollerare" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "Hjälp" @@ -12569,7 +12778,7 @@ msgid "Total height of one label" msgstr "Total höjd på en etikett" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "Teckenstorlek" @@ -12627,14 +12836,14 @@ msgstr "Orientering av papper" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "Landskap" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "Porträtt" @@ -12653,47 +12862,52 @@ msgstr "" "etikettstilen." #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "Markera QSL som utskrivet" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "Skriv ut" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "Etikettutskriftsalternativ" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "Skapa ny etikettstyp" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "Skapa ny papperstyp" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "Papperstyper" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "Bredd" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "Höjd" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "Används av etiketter" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "Orientering" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "Etikettyper" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12701,56 +12915,66 @@ msgstr "Etikettyper" msgid "QSOs" msgstr "QSOs" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "Använd för utskrift" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "Inget papper tilldelat" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "QSL-kort etiketter ej utskrivna" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSOs" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "Visa QSOs" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "Inkludera min anropssignal?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "Inkludera Lokatorruta?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "" "Inkludera referenser? (SIG, SOTA, POTA, IOTA, WWFF; Om de är definierade i " "stationsplatsen)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "Inkludera Via (om ifyllt)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "Inkludera QSLMSG (om ifylld)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "Inkludera TNX-meddelande?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "Börja skriva ut vid?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "Ange startposition för etikett utskrift" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12911,21 +13135,21 @@ msgstr "DXCC CQ-zon" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "Station" @@ -13008,88 +13232,92 @@ msgstr "" "Varning. Detta verktyg kan förstöra dina data och bör endast användas om du " "vet vad du gör." -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "Alla stationsplatser" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "Kontrollera alla QSOs i loggboken för felaktiga CQ-zoner" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "Använd Wavelog för att fastställa CQ-zonen för alla QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "Kontrollera" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "Kontrollera alla QSOs i loggboken för felaktiga ITU-zoner" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "Använd Wavelog för att bestämma ITU-zonen för alla QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "Kontrollera Laktorrutor" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "Kontrollera Lokatorrutor som inte matchar DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "Åtgärda Kontinent" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "Uppdatera saknad eller felaktig kontinentinformation" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "Uppdatera saknad information om stat/provins" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "Uppdatera avstånd" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "Beräkna och uppdatera avståndsinformation för QSOs" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "Kontrollera alla QSOs i loggboken för felaktig DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "Använd Wavelog för att bestämma DXCC för alla QSOs." -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "Leta efter QSOs med saknad locator i callboken" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "Använd callbook-sökning för att justera lokatorruta" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "Detta är begränsat till 150 anropssignaler per körning!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "Kontrollera IOTA mot DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "Använd Wavelog för att kontrollera IOTA mot DXCC" @@ -13134,10 +13362,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "Region" @@ -13206,9 +13434,9 @@ msgid "QSL Sent Method" msgstr "QSL Skickat Via" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL via" @@ -13232,84 +13460,84 @@ msgstr "Band RX" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "Ogiltig" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "Verifierad" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "Direkt" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "Byrå" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "Elektroniskt" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13664,26 +13892,26 @@ msgstr "Lokatorrutor för" msgid "Non DXCC matching gridsquare" msgstr "Icke DXCC-matchande lokatorruta" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "Från" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "to" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "Dx" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "Inget" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." @@ -13691,51 +13919,69 @@ msgstr "" "Avstånd i kilometer. Sökningen kommer att leta efter avstånd som är större " "än eller lika med detta värde." -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "Varaktighet" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "" +"Varaktighet i minuter. Sökningen kommer att leta efter varaktigheter som är " +"större än eller lika med detta värde." + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "Sortera kolumn" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "QSO-tid" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO Modifierad" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "Sorteringsriktning" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "Nedstigande" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "Stigande" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "Tillämpa filter" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "QSL-filter" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL skickat" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13752,32 +13998,32 @@ msgstr "QSL skickat" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "Köad" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13806,279 +14052,279 @@ msgstr "Köad" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "Ogiltig (Ignorera)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL mottaget" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "QSL skickat via" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "QSL mottaget via" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW skickat" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW mottaget" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog skickat" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog mottaget" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL skickat" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL mottaget" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL skickat" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL mottaget" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "QSL-bilder" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ skickat" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ mottaget" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "Snabbfilter" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "Snabbsökning med vald: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "Sökdatum" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "Sök DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "Sök Delstat" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "Sök Lokatorruta" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "Sök CQ-zon" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "Sök ITU-zon" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "Sök Trafiksätt" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "Sök Band" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "Sök IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "Sök SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "Sök POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "Sök WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "Sök Operatör" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "Varning! Är du säker på att du vill ta bort de markerade QSO:erna?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " QSO(n) kommer att raderas" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "Med vald: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "Uppdatera från Callbook" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "Kö-byrå" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "Kö-direkt" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "Kö-elektroniskt" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "Skickat (Byrå)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "Skickat (Direkt)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "Skickat (Elektroniskt)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "Ej skickat" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "QSL Ej Nödvändigt" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "Ej mottaget" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "Mottaget (Byrå)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "Mottaget (Direkt)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "Mottaget (Elektroniskt)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "Skapa ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "Skriv ut etikett" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "QSL-bildspel" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "# Resultat" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "Dubbletter" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "Världskarta" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "Databasverktyg" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "Senast ändrad" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "De" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL Meddelande (S)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL Meddelande (R)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "Mina referenser" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "Ant az" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "Antenn azimuth" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "Ant el" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "Antenn elevation" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "Stationens uteffekt" @@ -14158,15 +14404,15 @@ msgstr "Resultat för lokatoruppdatering:" msgid "The number of QSOs updated for gridsquare is" msgstr "Antalet QSOs uppdaterade för lokator är" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "Inkludera Via" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "Inkludera QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "Inkludera TNX-meddelande" @@ -14231,35 +14477,35 @@ msgstr "För närvarande stödjade länder" msgid "Basic QSO Information" msgstr "Grundläggande QSO-information" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "Stationsdetaljer" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "Bekräftelsetjänster" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "Geografisk information" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "Diplom program" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "Ytterligare information" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "Tekniska detaljer" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "Endast för felsökning" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" @@ -14267,7 +14513,7 @@ msgstr "" "Detta är endast avsett för felsökningsändamål och inte designat för att " "visas som standard" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "Kartlager" @@ -14393,7 +14639,7 @@ msgid "Date Expires" msgstr "Utgår datum" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "Last upload" @@ -15054,7 +15300,7 @@ msgstr "Finns det någon extra information vi behöver känna till?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "E-post" @@ -15071,11 +15317,11 @@ msgstr "Skicka inte in loggförfrågan" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "Via" @@ -15086,7 +15332,7 @@ msgstr "" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "Lägg till i utskriftskön" @@ -15502,7 +15748,7 @@ msgstr "Markera begärda QSL som skickade" msgid "No QSLs to print were found!" msgstr "Inga QSL att skriva ut hittades!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15646,7 +15892,7 @@ msgstr "Ange effekt i watt, enbart med siffror." #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "Effekt (W)" @@ -15708,9 +15954,9 @@ msgid "Station County" msgstr "Station County" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "SIG Info" @@ -15758,7 +16004,7 @@ msgstr "Obs: Ej redigerbar. Endast visad här." #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "Modifierad" @@ -15883,16 +16129,16 @@ msgstr "Sök DXCluster efter senaste Spot" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "IOTA-referens" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "SOTA-referens" @@ -15932,11 +16178,11 @@ msgstr "Exempel: Q03" msgid "E-mail address of QSO-partner" msgstr "E-postadress till QSO-partner" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "Satellitnamn" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "Satellite-mode" @@ -16042,7 +16288,7 @@ msgid "Below is a list of active radios that are connected to Wavelog." msgstr "" "Nedan är en lista över aktiva radioapparater som är anslutna till Wavelog." -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." @@ -16050,16 +16296,33 @@ msgstr "" "Om du inte har anslutit några radioapparater än, se API-sidan för att " "generera API-nycklar." -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"Som klubbstationsoperatör kan du ställa in en standardradio som bara gäller " +"för dig. Detta gör att du kan ha en standardradio som automatiskt väljs när " +"du loggar in, samtidigt som du fortfarande kan använda andra radioapparater " +"om du vill." + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"Som vanlig användare kan du ställa in en standardradio för dig själv. Detta " +"gör att du har en standardradio som automatiskt väljs när du loggar in, " +"samtidigt som du fortfarande kan använda andra radioapparater om du vill." + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "Du kan ta reda på hur du använder %s i wikin." +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "Du kan ta reda på hur du använder %sradiofunktionerna%s på wikin." -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "radiofunktioner" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "Vänta lite..." @@ -16400,13 +16663,6 @@ msgstr "AOS-tid" msgid "LOS Time" msgstr "LOS-tid" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "Varaktighet" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "Väg" @@ -16521,6 +16777,11 @@ msgstr "Spara fråga" msgid "Stored queries" msgstr "Lagrade frågor" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "Du kan ta reda på hur du använder %s i wikin." + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "sökfilterfunktioner" @@ -16596,35 +16857,35 @@ msgstr "Markera QSL skickat (Direkt)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "Markera QSL mottaget (Byrå)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "Markera QSL mottaget (Direkt)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "Markera QSL kort Begärt (Byrå)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "Markera QSL kort Begärt (Direkt)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "Markera QSL kort Ej Nödvändigt" @@ -17163,7 +17424,7 @@ msgstr "Stationens specialintressegruppinfo (t.ex. DA/NW-357)." #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "Problem? Kolla %swiki%s." @@ -17378,7 +17639,7 @@ msgid "Link Location" msgstr "Länka stationsplats" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "Profilnamn" @@ -17397,19 +17658,19 @@ msgstr "" "alla platser under en session när stations loggen analyseras. Perfekt när du " "opererar på flera platser som är en del av samma DXCC- eller VUCC-cirkel." -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "Redigera länkade platser" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "Besökarwebbplats" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "Stationsplatser" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." @@ -17417,13 +17678,13 @@ msgstr "" "Stationsplatser definierar operativa platser, som ditt QTH, en väns QTH " "eller en portabel station." -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "" "Precis som loggböcker håller en stationsprofil en uppsättning QSOs " "tillsammans." -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." @@ -17431,7 +17692,7 @@ msgstr "" "Endast en station kan vara aktiv åt gången. I tabellen nedan visas detta med " "-Aktiv Station- märket." -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." @@ -17439,23 +17700,23 @@ msgstr "" "Kolumnen 'Länkad' visar om stationens plats är länkad med den aktiva " "loggboken som valts ovan." -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "Skapa en stationsplats" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "Visa endast platser från den aktiva loggboken" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "Visa alla platser" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "Visa en platslista" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -17463,7 +17724,7 @@ msgstr "" "OBS: Du behöver ställa in en aktiv stationsplats. Gå till Anropssignal-" ">Stationsplats för att välja en." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17471,23 +17732,23 @@ msgstr "" "På grund av ändringar i Wavelog så behöver du tilldela alla QSO en stations " "profil." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Underhåll" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Var snäll och tilldela dem vid " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Länkad" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Favorit" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "markera/avmarkera som favorit" @@ -18234,41 +18495,45 @@ msgstr "" msgid "Show Fields on QSO Tab" msgstr "Visa fält på QSO-fliken" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "Visa karta vid QSO-fönster" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "De aktiverade objekten kommer att visas på QSO-fliken istället för på den " "allmänna fliken." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Inställningar för online QSL-förfrågan (OQRS)" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Global text" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "Denna text är en valfri text som kan visas överst på OQRS-sidan." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Grupperad sökning" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Av" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "På" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18276,11 +18541,11 @@ msgstr "" "När detta är på kommer alla stationsplatser med OQRS aktiv att sökas på en " "gång." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Visa stationsplatsens namn i grupperade sökresultat" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18288,11 +18553,11 @@ msgstr "" "Om grupperad sökning är PÅ kan du bestämma om namnet på stationens plats ska " "visas i resultatlistan." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Automatisk OQRS-matchning" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18301,68 +18566,68 @@ msgstr "" "kommer att försöka matcha inkommande förfrågningar med befintliga loggar " "automatiskt." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Automatisk OQRS-matchning för direkta förfrågningar" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Om detta är på, kommer automatisk OQRS-matchning för direktförfrågan att ske." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Standardvärden" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Inställningar för standardband och bekräftelse" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Standard Band" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Standard-QSL-metoder" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Tredjepartstjänster" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Användarnamn" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Lösenord" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Testa inloggning" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc Användarnamn" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc Lösenord" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log E-post" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Club Log Lösenord" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18372,15 +18637,15 @@ msgstr "" "att använda Clublog i Wavelog. Besök %sdin Clublog-inställningssida%s för " "att göra det." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widgets" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "On-Air widget" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18388,16 +18653,16 @@ msgstr "" "Observera: För att använda denna widget måste du ha minst en CAT-radio " "konfigurerad och fungerande." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "När den är aktiverad kommer widgeten att vara tillgänglig på %s." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "Visa \"Senast sedd\" tid" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18405,15 +18670,15 @@ msgstr "" "Denna inställning styr om tiden för 'Senast sedd' visas i widgeten eller " "inte." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Visa endast den senast uppdaterade radion" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Nej, visa alla radioapparater" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18425,55 +18690,55 @@ msgstr "" "uppdaterade. Om du bara har en radio så har den här inställningen ingen " "effekt." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSO-widget" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Visa exakt QSO-tid" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "" "Denna inställning styr om exakt QSO-tid ska visas i QSO-widgeten eller inte." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Diverse" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "AMSAT Statusuppladdning" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Ladda upp status för SAT QSOs till" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodonserver" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "URL till Mastodonserver" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Huvud-URL för din Mastodon-server, t.ex. %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Winkeyer-funktioner aktiverade" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18482,25 +18747,25 @@ msgstr "" "Winkeyer-stöd i Wavelog är mycket experimentellt. Läs först wikin på %s " "innan du aktiverar." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Privat nyckel" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Se din profil på %s." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Visa endast användbara passeringar" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18508,7 +18773,7 @@ msgstr "" "Om aktiverad visar endast användbara pass baserat på lokatorrutan som anges " "i ditt hams.at-konto. Kräver att privat nyckel är konfigurerad." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Spara kontoändringar" @@ -18930,7 +19195,7 @@ msgstr "Visar alla QSOs för stationsplatser som är länkade till denna loggbok #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "senast skickat" @@ -18958,119 +19223,127 @@ msgstr "Totalt avstånd" msgid "Other Path" msgstr "Annan väg" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" +"En enda lokator ruta angavs i VUCC-lokator fältet som borde innehålla två " +"eller fyra lokator rutor istället för en enda lokator ruta." + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Antenn azimuth" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Antenn elevation" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL-kort har skickats via byrå" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL-kort har skickats direkt" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSL-kort har skickats elektroniskt" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL-kort har skickats via manager" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL-kort har skickats" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL-kort har mottagits via byrå" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL-kort har mottagits direkt" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSL-kort har tagits emot elektroniskt" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL-kort har tagits emot via manager" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL-kort har mottagits" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Denna station använder LoTW." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Detta QSO blev konfirmerat" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Detta QSO är bekräftad på LoTW." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Detta QSO är bekräftad på eQSL." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Detta QSO är bekräftad på QRZ.com." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Detta QSO är bekräftad på Clublog." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Detta QSO är bekräftad på DCL." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Fler QSOs" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Dela" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Detaljer" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Uppladdat QSL-kort bild framsida" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "Uppladdat QSL-kort bild" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Uppladdat QSL-kort bild baksida" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "Ange QSL mottagen (Elektroniskt)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL-bild" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO hittades inte" @@ -19263,6 +19536,19 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "" +#~ "Cache använder reservadapter (fallback) eftersom primär adapter inte är " +#~ "tillgänglig." + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "Fel vid erhållande av en sessionsnyckel för HamQTH-fråga" + +#~ msgid "radio functions" +#~ msgstr "radiofunktioner" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Felaktigt loggade CQ-zoner" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.mo b/application/locale/tr_TR/LC_MESSAGES/messages.mo index 4fd42285a..cffb57988 100644 Binary files a/application/locale/tr_TR/LC_MESSAGES/messages.mo and b/application/locale/tr_TR/LC_MESSAGES/messages.mo differ diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index 155203c6c..9d8ad9df5 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" "PO-Revision-Date: 2026-01-05 10:37+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish Station Location to select one." @@ -17471,7 +17717,7 @@ msgstr "" "Dikkat: Aktif bir istasyon konumu belirlemeniz gerekmektedir. Birini seçmek " "için Çağrı İşareti->İstasyon Konumu bölümüne gidin." -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." @@ -17479,23 +17725,23 @@ msgstr "" "Wavelog'daki son değişiklikler nedeniyle, QSOs'ları istasyon profillerinize " "yeniden atamanız gerekmektedir." -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "Bakım" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "Lütfen bunları yeniden atayın. " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "Bağlı" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "Favori" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "Favori olarak işaretle / Favori olmaktan çıkar" @@ -18241,43 +18487,47 @@ msgstr "Bu ayar, güneş ve yayılım verilerinin görüntülenmesini değiştir msgid "Show Fields on QSO Tab" msgstr "QSO sekmesinde alanları göster" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "" "Etkinleştirilen referanslar, Genel sekmesi yerine QSO sekmesinde " "gösterilecektir." -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "Çevrimiçi QSL talep (OQRS) ayarları" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "Global metin" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "" "Bu metin, OQRS sayfasının üst kısmında görüntülenebilecek isteğe bağlı bir " "metindir." -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "Gruplandırılmış arama" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "Kapalı" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "Açık" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." @@ -18285,11 +18535,11 @@ msgstr "" "Bu özellik açık olduğunda, OQRS aktif olan tüm istasyon konumları aynı anda " "aranacaktır." -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "Gruplandırılmış arama sonuçlarında istasyon konumu adını göster" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." @@ -18297,11 +18547,11 @@ msgstr "" "Gruplandırılmış arama açık olduğunda, istasyon konumu adının sonuçlar " "tablosunda gösterilip gösterilmeyeceğine karar verebilirsiniz." -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "Otomatik OQRS eşleştirmesi" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -18309,69 +18559,69 @@ msgstr "" "Bu açık olduğunda, otomatik OQRS eşleştirmesi yapılacak ve sistem, gelen " "talepleri mevcut loglarla otomatik olarak eşleştirmeye çalışacaktır." -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "Gönderim (Direkt) talepler için otomatik OQRS eşleştirmesi" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "" "Bu açık olduğunda, direkt gönderim metodu ile gelen talepler için otomatik " "OQRS eşleştirmesi yapılacaktır." -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "Varsayılan Değerler" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "Varsayılan Bant ve Onay Ayarları" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "Varsayılan Bant" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "Varsayılan QSL Yöntemleri" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "Üçüncü Taraf Hizmetler" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) Kullanıcı Adı" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) Şifresi" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "Bağlantıyı Test Et" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc Kullanıcı Adı" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc Şifre" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Club Log" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log E-Posta" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Club Log Şifre" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -18381,15 +18631,15 @@ msgstr "" "Clublog'u kullanabilmek için bir Uygulama Şifresi oluşturmanız gerekir. Bunu " "yapmak için %sclublog ayarları sayfanızı%s ziyaret edin." -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "Widget'lar" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "On-Air widget" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." @@ -18397,16 +18647,16 @@ msgstr "" "Not: Bu widget'ı kullanabilmek için en az bir (CAT) telsiz yapılandırılmış " "ve çalışıyor olmalıdır." -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "Etkinleştirildiğinde, widget %s adresinde kullanılabilir olacaktır." -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "\"Son görülme\" zamanını göster" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." @@ -18414,15 +18664,15 @@ msgstr "" "Bu ayar, \"Son Görülme\" zamanının widget'ta görüntülenip " "görüntülenmeyeceğini kontrol eder." -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "Sadece en son güncellenen telsizi görüntüle" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "Hayır, tüm telsizleri göster" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -18434,15 +18684,15 @@ msgstr "" "telsizi mi görüntüleyeceğini kontrol eder. Eğer yalnızca bir telsiziniz " "varsa, bu ayarın bir etkisi olmaz." -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSO'lar Widget'ı" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "Tam QSO zamanını göster" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." @@ -18450,40 +18700,40 @@ msgstr "" "Bu ayar, tam QSO zamanının QSO widget'ında görüntülenip görüntülenmeyeceğini " "kontrol eder." -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "Çeşitli Özellikler" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "AMSAT Durum Yükleme" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "Uydu QSO'larının durumunu şuraya yükle" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodon Sunucusu" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "Mastodon sunucusunun URL'si" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "Mastodon sunucunuzun ana URL'si, örneğin %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "Winkeyer Özellikleri Etkinleştirildi" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " @@ -18492,25 +18742,25 @@ msgstr "" "Wavelog'da Winkeyer desteği oldukça deneyseldir. Etkinleştirmeden önce %s " "adresindeki wiki'yi okuyun." -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Özel Feed Anahtarı" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "Profilini %s'de gör." -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "Yalnızca Çalışabilir Geçişleri Göster" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -18518,7 +18768,7 @@ msgstr "" "Etkilendiğinde, hams.at hesabınızdaki grid'e göre yalnızca yapılabilir " "geçişleri gösterir. Özel feed anahtarının ayarlanması gerekmektedir." -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "Hesabı Kaydet" @@ -18940,7 +19190,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "son gönderilen" @@ -18968,119 +19218,125 @@ msgstr "Topam mesafe" msgid "Other Path" msgstr "Diğer Yol (Other Path)" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "Anten Yönü (Azimut)" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "Anten Yüksekliği" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL kartı büro üzerinden gönderildi" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL kartı direkt gönderildi" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSL kart elektronik olarak gönderildi" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL kart yönetici aracılığıyla gönderildi" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL kart gönderildi" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL kartı büro üzerinden alındı" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL kartı direkt alındı" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "QSL kart elektronik olarak alindi" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL kartı yönetici aracılığıyla alındı" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL kart alındı" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "Bu istasyon LoTW kullanıyor." -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "Bu QSO'nun onaylandığı tarih" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "Bu QSO LoTW üzerinde onaylanmıştır." -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "Bu QSO eQSL'de onaylandı." -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "Bu QSO, QRZ.com'da onaylandı." -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "Bu QSO Clublog'da onaylandı." -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "Bu QSO DCL üzerinde onaylandı." -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "Daha Fazla QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "Paylaş" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "Detaylar" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "Yüklenen QSL kartının ön resmi" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "QSL kardını yükle" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "Yüklenen QSL kartının arka resmi" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "QSL'i alındı Olarak İşaretle (Elektronik)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL Kartı (eQSL.cc)" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO bulunamadı" @@ -19273,6 +19529,12 @@ msgstr "" msgid "CQz geojson" msgstr "" +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "HamQTH sorgusu için oturum anahtarı alınırken hata oluştu" + +#~ msgid "radio functions" +#~ msgstr "Telsiz bağlantısının" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "Yanlış kaydedilen CQ bölgeleri" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 2116a2a6b..4d880e31e 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 e4785e77a..708e68239 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ # YuanRetro , 2025, 2026. # 李宇翔 , 2025. # Tao Xu , 2025. -# BH3HNI , 2025. +# BH3HNI , 2025, 2026. # Lu Chang , 2025, 2026. # BG8LNG , 2025. # FengziLeo , 2025. @@ -23,12 +23,14 @@ # Jerry , 2025, 2026. # MCyiqiehuanying , 2025. # FATDEER , 2025. +# 范明明 , 2026. +# "Xu, Zefan (BI1GHZ)" , 2026. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2026-02-08 18:45+0000\n" -"PO-Revision-Date: 2026-02-09 22:54+0000\n" -"Last-Translator: Jerry \n" +"POT-Creation-Date: 2026-03-13 15:53+0000\n" +"PO-Revision-Date: 2026-03-09 02:52+0000\n" +"Last-Translator: BH3HNI \n" "Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" @@ -36,7 +38,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.15.2\n" +"X-Generator: Weblate 5.16\n" #: application/controllers/Accumulated.php:12 #: application/controllers/Activators.php:13 @@ -89,8 +91,8 @@ msgstr "" #: application/controllers/Logbookadvanced.php:16 #: application/controllers/Lookup.php:17 application/controllers/Lotw.php:44 #: application/controllers/Lotw.php:90 application/controllers/Lotw.php:116 -#: application/controllers/Lotw.php:414 application/controllers/Lotw.php:437 -#: application/controllers/Lotw.php:801 application/controllers/Lotw.php:888 +#: application/controllers/Lotw.php:410 application/controllers/Lotw.php:433 +#: application/controllers/Lotw.php:920 application/controllers/Lotw.php:1007 #: application/controllers/Map.php:12 application/controllers/Map.php:27 #: application/controllers/Mode.php:15 application/controllers/Notes.php:10 #: application/controllers/Operator.php:13 @@ -101,11 +103,11 @@ msgstr "" #: application/controllers/Qsl.php:49 application/controllers/Qsl.php:57 #: application/controllers/Qslprint.php:24 #: application/controllers/Qslprint.php:159 application/controllers/Qso.php:8 -#: application/controllers/Qso.php:22 application/controllers/Qso.php:288 -#: application/controllers/Qso.php:419 application/controllers/Qso.php:440 -#: application/controllers/Qso.php:463 application/controllers/Qso.php:763 -#: application/controllers/Radio.php:32 application/controllers/Radio.php:297 -#: application/controllers/Radio.php:323 application/controllers/Radio.php:339 +#: application/controllers/Qso.php:22 application/controllers/Qso.php:295 +#: application/controllers/Qso.php:426 application/controllers/Qso.php:447 +#: application/controllers/Qso.php:470 application/controllers/Qso.php:770 +#: application/controllers/Radio.php:32 application/controllers/Radio.php:322 +#: application/controllers/Radio.php:348 application/controllers/Radio.php:364 #: application/controllers/Reg1test.php:17 #: application/controllers/Reg1test.php:60 #: application/controllers/Reg1test.php:99 @@ -136,11 +138,11 @@ msgstr "" #: application/controllers/Update.php:22 application/controllers/User.php:14 #: application/controllers/User.php:61 application/controllers/User.php:103 #: application/controllers/User.php:121 application/controllers/User.php:145 -#: application/controllers/User.php:384 application/controllers/User.php:385 -#: application/controllers/User.php:1047 application/controllers/User.php:1066 -#: application/controllers/User.php:1298 application/controllers/User.php:1438 -#: application/controllers/User.php:1656 application/controllers/User.php:1672 -#: application/controllers/User.php:1698 +#: application/controllers/User.php:386 application/controllers/User.php:387 +#: application/controllers/User.php:1060 application/controllers/User.php:1079 +#: application/controllers/User.php:1311 application/controllers/User.php:1451 +#: application/controllers/User.php:1669 application/controllers/User.php:1685 +#: application/controllers/User.php:1711 #: application/controllers/User_options.php:9 #: application/controllers/Usermode.php:15 #: application/controllers/Webadif.php:11 @@ -161,8 +163,8 @@ msgid "Activated Gridsquare Map" msgstr "已激活网格地图" #: application/controllers/Activated_gridmap.php:31 -#: application/controllers/Awards.php:1045 -#: application/controllers/Awards.php:1081 +#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1102 #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:385 #: application/views/activators/index.php:100 @@ -324,51 +326,51 @@ msgstr "已删除 API Key %s" msgid "Awards" msgstr "奖项" -#: application/controllers/Awards.php:102 -#: application/controllers/Awards.php:194 -#: application/controllers/Awards.php:428 -#: application/controllers/Awards.php:478 -#: application/controllers/Awards.php:595 -#: application/controllers/Awards.php:613 -#: application/controllers/Awards.php:631 -#: application/controllers/Awards.php:707 -#: application/controllers/Awards.php:769 -#: application/controllers/Awards.php:831 -#: application/controllers/Awards.php:893 -#: application/controllers/Awards.php:978 -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1066 -#: application/controllers/Awards.php:1272 -#: application/controllers/Awards.php:1423 -#: application/controllers/Awards.php:1902 -#: application/controllers/Awards.php:2043 -#: application/controllers/Awards.php:2173 -#: application/controllers/Awards.php:2252 -#: application/controllers/Awards.php:2265 -#: application/controllers/Awards.php:2340 -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:101 +#: application/controllers/Awards.php:205 +#: application/controllers/Awards.php:443 +#: application/controllers/Awards.php:493 +#: application/controllers/Awards.php:610 +#: application/controllers/Awards.php:628 +#: application/controllers/Awards.php:646 +#: application/controllers/Awards.php:728 +#: application/controllers/Awards.php:790 +#: application/controllers/Awards.php:852 +#: application/controllers/Awards.php:914 +#: application/controllers/Awards.php:999 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1087 +#: application/controllers/Awards.php:1293 +#: application/controllers/Awards.php:1444 +#: application/controllers/Awards.php:1980 +#: application/controllers/Awards.php:2129 +#: application/controllers/Awards.php:2259 +#: application/controllers/Awards.php:2333 +#: application/controllers/Awards.php:2346 +#: application/controllers/Awards.php:2421 +#: application/controllers/Awards.php:2563 #, php-format msgid "Awards - %s" msgstr "奖项 - %s" -#: application/controllers/Awards.php:102 +#: application/controllers/Awards.php:101 #: application/views/awards/dok/index.php:150 #: application/views/bands/index.php:49 #: application/views/contesting/index.php:63 #: application/views/interface_assets/header.php:240 -#: application/views/logbookadvanced/index.php:448 -#: application/views/logbookadvanced/index.php:981 -#: application/views/logbookadvanced/useroptions.php:232 +#: application/views/logbookadvanced/index.php:454 +#: application/views/logbookadvanced/index.php:994 +#: application/views/logbookadvanced/useroptions.php:238 #: application/views/lookup/index.php:14 #: application/views/qso/award_tabs.php:41 #: application/views/qso/edit_ajax.php:402 application/views/qso/index.php:361 -#: application/views/qso/index.php:656 application/views/user/edit.php:716 -#: application/views/view_log/qso.php:466 +#: application/views/qso/index.php:656 application/views/user/edit.php:724 +#: application/views/view_log/qso.php:478 msgid "DOK" msgstr "DOK" -#: application/controllers/Awards.php:194 application/views/awards/index.php:7 -#: application/views/bandmap/list.php:97 application/views/bands/index.php:50 +#: application/controllers/Awards.php:205 application/views/awards/index.php:7 +#: application/views/bandmap/list.php:98 application/views/bands/index.php:50 #: application/views/csv/index.php:58 application/views/dxatlas/index.php:58 #: application/views/dxcalendar/index.php:11 #: application/views/interface_assets/header.php:192 @@ -377,13 +379,13 @@ msgstr "DOK" #: application/views/logbookadvanced/checkresult.php:248 #: application/views/logbookadvanced/checkresult.php:324 #: application/views/logbookadvanced/edit.php:26 -#: application/views/logbookadvanced/index.php:322 -#: application/views/logbookadvanced/index.php:957 +#: application/views/logbookadvanced/index.php:328 +#: application/views/logbookadvanced/index.php:970 #: application/views/logbookadvanced/qslcarousel.php:35 #: application/views/logbookadvanced/showMissingDxccQsos.php:25 #: application/views/logbookadvanced/showStateQsos.php:27 #: application/views/logbookadvanced/statecheckresult.php:11 -#: application/views/logbookadvanced/useroptions.php:169 +#: application/views/logbookadvanced/useroptions.php:175 #: application/views/lookup/index.php:5 #: application/views/lotw_views/index.php:33 #: application/views/qso/award_tabs.php:29 @@ -395,29 +397,29 @@ msgstr "DOK" msgid "DXCC" msgstr "DXCC" -#: application/controllers/Awards.php:271 +#: application/controllers/Awards.php:286 msgid "Awards - WAPC" msgstr "奖项 - WAPC" -#: application/controllers/Awards.php:351 +#: application/controllers/Awards.php:366 msgid "Awards - WAJA" msgstr "奖项 - WAJA" -#: application/controllers/Awards.php:428 application/views/bands/index.php:53 +#: application/controllers/Awards.php:443 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:256 msgid "JCC" msgstr "JCC" -#: application/controllers/Awards.php:478 application/views/bands/index.php:59 +#: application/controllers/Awards.php:493 application/views/bands/index.php:59 #: application/views/interface_assets/header.php:198 msgid "VUCC" msgstr "VUCC" -#: application/controllers/Awards.php:510 +#: application/controllers/Awards.php:524 msgid "Log View - VUCC" msgstr "日志视图 - VUCC" -#: application/controllers/Awards.php:560 +#: application/controllers/Awards.php:574 #: application/controllers/Callstats.php:100 #: application/controllers/Distancerecords.php:87 #: application/controllers/Statistics.php:372 @@ -430,43 +432,58 @@ msgstr "日志视图 - VUCC" msgid "Log View" msgstr "日志视图" -#: application/controllers/Awards.php:561 -#: application/controllers/Callstats.php:101 -msgid " and band " -msgstr " 并且频段为 " +#: application/controllers/Awards.php:575 +msgid "and" +msgstr "和" -#: application/controllers/Awards.php:564 +#: application/controllers/Awards.php:576 +#: application/views/awards/cq/index.php:135 +#: application/views/awards/dxcc/index.php:32 +#: application/views/awards/dxcc/index.php:176 +#: application/views/awards/iota/index.php:123 +#: application/views/awards/itu/index.php:137 +#: application/views/awards/wac/index.php:51 +#: application/views/awards/wae/index.php:119 +#: application/views/awards/wpx/index.php:81 +msgid "Every band (w/o SAT)" +msgstr "所有频段 (不含卫星)" + +#: application/controllers/Awards.php:576 +msgid "band" +msgstr "频段" + +#: application/controllers/Awards.php:579 msgid " and satellite " msgstr " 和卫星 " -#: application/controllers/Awards.php:567 +#: application/controllers/Awards.php:582 #: application/controllers/Callstats.php:107 msgid " and orbit type " -msgstr " 并且轨道类型 " +msgstr " 和轨道类型 " -#: application/controllers/Awards.php:571 +#: application/controllers/Awards.php:586 #: application/controllers/Callstats.php:111 msgid " and propagation " -msgstr " 并且传播方式 " +msgstr " 和传播方式 " -#: application/controllers/Awards.php:574 +#: application/controllers/Awards.php:589 #: application/controllers/Callstats.php:114 msgid " and mode " -msgstr " 并且模式 " +msgstr " 和模式 " -#: application/controllers/Awards.php:577 +#: application/controllers/Awards.php:592 #: application/controllers/Callstats.php:117 msgid " and " -msgstr " 并且 " +msgstr " 和 " -#: application/controllers/Awards.php:595 -#: application/controllers/Logbook.php:1459 -#: application/views/awards/index.php:8 application/views/bandmap/list.php:326 +#: application/controllers/Awards.php:610 +#: application/controllers/Logbook.php:1463 +#: application/views/awards/index.php:8 application/views/bandmap/list.php:327 #: application/views/bands/index.php:57 application/views/dashboard/index.php:9 #: application/views/interface_assets/header.php:218 #: application/views/logbookadvanced/edit.php:32 -#: application/views/logbookadvanced/index.php:452 -#: application/views/logbookadvanced/useroptions.php:226 +#: application/views/logbookadvanced/index.php:458 +#: application/views/logbookadvanced/useroptions.php:232 #: application/views/lookup/index.php:10 #: application/views/qslcard/searchresult.php:17 #: application/views/qslcard/searchresult.php:33 @@ -487,14 +504,14 @@ msgstr " 并且 " msgid "SOTA" msgstr "SOTA" -#: application/controllers/Awards.php:613 -#: application/controllers/Logbook.php:1460 -#: application/views/bandmap/list.php:328 application/views/bands/index.php:64 +#: application/controllers/Awards.php:628 +#: application/controllers/Logbook.php:1464 +#: application/views/bandmap/list.php:329 application/views/bands/index.php:64 #: application/views/dashboard/index.php:10 #: application/views/interface_assets/header.php:206 #: application/views/logbookadvanced/edit.php:34 -#: application/views/logbookadvanced/index.php:474 -#: application/views/logbookadvanced/useroptions.php:238 +#: application/views/logbookadvanced/index.php:480 +#: application/views/logbookadvanced/useroptions.php:244 #: application/views/lookup/index.php:12 #: application/views/qso/award_tabs.php:65 #: application/views/qso/components/previous_contacts.php:83 @@ -509,16 +526,16 @@ msgstr "SOTA" msgid "WWFF" msgstr "WWFF" -#: application/controllers/Awards.php:631 -#: application/controllers/Logbook.php:1461 -#: application/views/adif/import.php:60 application/views/bandmap/list.php:327 +#: application/controllers/Awards.php:646 +#: application/controllers/Logbook.php:1465 +#: application/views/adif/import.php:60 application/views/bandmap/list.php:328 #: application/views/bands/index.php:54 #: application/views/dashboard/index.php:11 #: application/views/interface_assets/header.php:222 #: application/views/logbookadvanced/edit.php:30 -#: application/views/logbookadvanced/index.php:456 -#: application/views/logbookadvanced/index.php:975 -#: application/views/logbookadvanced/useroptions.php:220 +#: application/views/logbookadvanced/index.php:462 +#: application/views/logbookadvanced/index.php:988 +#: application/views/logbookadvanced/useroptions.php:226 #: application/views/lookup/index.php:9 application/views/qso/award_tabs.php:57 #: application/views/qso/components/previous_contacts.php:84 #: application/views/qso/edit_ajax.php:383 @@ -532,111 +549,111 @@ msgstr "WWFF" msgid "POTA" msgstr "POTA" -#: application/controllers/Awards.php:707 +#: application/controllers/Awards.php:728 msgid "CQ WAZ (Worked All Zones)" -msgstr "CQ WAZ(通联所有分区)" +msgstr "CQ WAZ(通联全部分区)" -#: application/controllers/Awards.php:769 +#: application/controllers/Awards.php:790 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" msgstr "通联全部美国州奖(WAS)" -#: application/controllers/Awards.php:831 application/views/bands/index.php:55 +#: application/controllers/Awards.php:852 application/views/bands/index.php:55 #: application/views/interface_assets/header.php:228 msgid "RAC" msgstr "RAC" -#: application/controllers/Awards.php:893 application/views/bands/index.php:51 +#: application/controllers/Awards.php:914 application/views/bands/index.php:51 msgid "H26" msgstr "H26" -#: application/controllers/Awards.php:978 +#: application/controllers/Awards.php:999 msgid "IOTA (Island On The Air)" msgstr "IOTA(空中之岛)" -#: application/controllers/Awards.php:990 -#: application/controllers/Awards.php:1005 +#: application/controllers/Awards.php:1011 +#: application/controllers/Awards.php:1026 #: application/views/interface_assets/header.php:288 msgid "US Counties" msgstr "美国县奖" -#: application/controllers/Awards.php:1020 +#: application/controllers/Awards.php:1041 msgid "Log View - Counties" msgstr "日志视图 - 县(美国)" -#: application/controllers/Awards.php:1027 +#: application/controllers/Awards.php:1048 msgid "Awards - " msgstr "奖项 - " -#: application/controllers/Awards.php:1046 -#: application/controllers/Awards.php:1082 +#: application/controllers/Awards.php:1067 +#: application/controllers/Awards.php:1103 msgid "Gridsquares worked" msgstr "已通联网格" -#: application/controllers/Awards.php:1047 -#: application/controllers/Awards.php:1083 +#: application/controllers/Awards.php:1068 +#: application/controllers/Awards.php:1104 msgid "Gridsquares confirmed on LoTW" msgstr "LoTW 已确认网格" -#: application/controllers/Awards.php:1048 -#: application/controllers/Awards.php:1084 +#: application/controllers/Awards.php:1069 +#: application/controllers/Awards.php:1105 msgid "Gridsquares confirmed by paper QSL" msgstr "通过纸质QSL已确认网格" -#: application/controllers/Awards.php:1049 -#: application/controllers/Awards.php:1085 +#: application/controllers/Awards.php:1070 +#: application/controllers/Awards.php:1106 msgid "Total Gridsquares worked" msgstr "已确认网格的总数" -#: application/controllers/Awards.php:1066 +#: application/controllers/Awards.php:1087 msgid "Fred Fish Memorial Award (FFMA)" msgstr "弗雷德·菲什纪念奖(FFMA)" -#: application/controllers/Awards.php:1272 +#: application/controllers/Awards.php:1293 #: application/views/interface_assets/header.php:196 -#: application/views/logbookadvanced/useroptions.php:244 +#: application/views/logbookadvanced/useroptions.php:250 #: application/views/qso/edit_ajax.php:393 application/views/qso/index.php:345 -#: application/views/qso/index.php:642 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:431 -#: application/views/view_log/qso.php:749 +#: application/views/qso/index.php:642 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:443 +#: application/views/view_log/qso.php:761 msgid "SIG" msgstr "SIG" -#: application/controllers/Awards.php:1291 +#: application/controllers/Awards.php:1312 msgid "Awards - SIG - " msgstr "奖项 - SIG - " -#: application/controllers/Awards.php:1423 application/views/bands/index.php:60 +#: application/controllers/Awards.php:1444 application/views/bands/index.php:60 msgid "WAP" msgstr "WAP" -#: application/controllers/Awards.php:2043 -#: application/views/awards/itu/index.php:23 +#: application/controllers/Awards.php:2129 +#: application/views/awards/itu/index.php:34 msgid "ITU Zones" msgstr "ITU 分区" -#: application/controllers/Awards.php:2173 +#: application/controllers/Awards.php:2259 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:202 msgid "Worked All Continents (WAC)" msgstr "通联世界大洲奖(WAC)" -#: application/controllers/Awards.php:2252 +#: application/controllers/Awards.php:2333 msgid "WAE" msgstr "WAE" -#: application/controllers/Awards.php:2265 +#: application/controllers/Awards.php:2346 #: application/views/interface_assets/header.php:212 msgid "73 on 73" msgstr "73 on 73" -#: application/controllers/Awards.php:2340 +#: application/controllers/Awards.php:2421 #: application/views/awards/wpx/wpx_details.php:19 msgid "WPX" msgstr "WPX" -#: application/controllers/Awards.php:2482 +#: application/controllers/Awards.php:2563 #: application/views/awards/pl_polska/index.php:37 #: application/views/interface_assets/header.php:270 msgid "\"Polska\" Award" @@ -667,8 +684,7 @@ msgstr "创建模式" msgid "Edit Band" msgstr "编辑频段" -#: application/controllers/Bandmap.php:28 -#: application/controllers/Bandmap.php:75 +#: application/controllers/Bandmap.php:56 #: application/controllers/Options.php:144 #: application/controllers/Options.php:155 #: application/views/options/sidebar.php:7 @@ -701,15 +717,24 @@ msgstr "CBR 数据导入完成" msgid "Callsign statistics" msgstr "呼号统计" +#: application/controllers/Callstats.php:101 +msgid " and band " +msgstr " 并且频段为 " + #: application/controllers/Callstats.php:104 msgid " and sat " msgstr " 并且卫星 " -#: application/controllers/Calltester.php:32 +#: application/controllers/Calltester.php:31 msgid "Call Tester" msgstr "通联记录检测器" -#: application/controllers/Calltester.php:971 +#: application/controllers/Calltester.php:240 +#: application/controllers/Calltester.php:300 +msgid "CSV Call Tester" +msgstr "CSV呼叫测试器" + +#: application/controllers/Calltester.php:917 msgid "Callsign Tester" msgstr "呼号检测器" @@ -792,28 +817,31 @@ msgid "No user has configured Clublog." msgstr "未找到配置 Clublog 的用户。" #: application/controllers/Clublog.php:86 -#: application/controllers/Logbook.php:792 +#: application/controllers/Logbook.php:796 +#: application/views/awards/cq/index.php:126 #: application/views/awards/dok/index.php:72 -#: application/views/awards/dxcc/index.php:132 +#: application/views/awards/dxcc/index.php:133 #: application/views/awards/iota/index.php:80 +#: application/views/awards/itu/index.php:128 #: application/views/awards/jcc/index.php:70 #: application/views/awards/pl_polska/index.php:84 #: application/views/awards/wab/index.php:106 -#: application/views/awards/wae/index.php:71 +#: application/views/awards/wac/index.php:42 +#: application/views/awards/wae/index.php:110 #: application/views/awards/waja/index.php:75 -#: application/views/awards/wapc/index.php:60 +#: application/views/awards/wapc/index.php:75 #: application/views/awards/wpx/index.php:44 -#: application/views/logbookadvanced/useroptions.php:112 +#: application/views/logbookadvanced/useroptions.php:118 #: application/views/qso/edit_ajax.php:432 #: application/views/search/search_result_ajax.php:124 #: application/views/station_profile/create.php:323 #: application/views/station_profile/edit.php:349 #: application/views/timeline/index.php:68 #: application/views/update/index.php:16 application/views/user/edit.php:629 -#: application/views/user/edit.php:856 +#: application/views/user/edit.php:864 #: application/views/view_log/partial/log_ajax.php:222 -#: application/views/view_log/qso.php:571 -#: application/views/view_log/qso.php:576 +#: application/views/view_log/qso.php:583 +#: application/views/view_log/qso.php:588 msgid "Clublog" msgstr "Clublog" @@ -845,7 +873,7 @@ msgid "Update Contest" msgstr "更新比赛" #: application/controllers/Continents.php:26 -#: application/views/awards/dxcc/index.php:138 +#: application/views/awards/dxcc/index.php:139 #: application/views/awards/iota/index.php:86 #: application/views/awards/wpx/index.php:51 #: application/views/interface_assets/header.php:178 @@ -863,12 +891,12 @@ msgstr "编辑计划任务" #: application/controllers/Cron.php:227 application/controllers/Cron.php:228 #: application/views/cron/index.php:96 application/views/cron/index.php:98 -#: application/views/cron/index.php:100 application/views/debug/index.php:626 -#: application/views/debug/index.php:633 application/views/debug/index.php:639 -#: application/views/debug/index.php:645 application/views/debug/index.php:651 -#: application/views/debug/index.php:657 application/views/debug/index.php:663 -#: application/views/debug/index.php:669 application/views/debug/index.php:675 -#: application/views/debug/index.php:681 application/views/debug/index.php:687 +#: application/views/cron/index.php:100 application/views/debug/index.php:673 +#: application/views/debug/index.php:680 application/views/debug/index.php:686 +#: application/views/debug/index.php:692 application/views/debug/index.php:698 +#: application/views/debug/index.php:704 application/views/debug/index.php:710 +#: application/views/debug/index.php:716 application/views/debug/index.php:722 +#: application/views/debug/index.php:728 application/views/debug/index.php:734 msgid "never" msgstr "从不" @@ -942,14 +970,14 @@ msgstr "DCL密钥导入" #: application/controllers/Dcl.php:68 application/views/dcl_views/import.php:3 #: application/views/dcl_views/index.php:3 -#: application/views/logbookadvanced/index.php:948 -#: application/views/logbookadvanced/useroptions.php:142 +#: application/views/logbookadvanced/index.php:961 +#: application/views/logbookadvanced/useroptions.php:148 #: application/views/qso/edit_ajax.php:435 #: application/views/search/search_result_ajax.php:127 -#: application/views/user/edit.php:630 application/views/user/edit.php:864 +#: application/views/user/edit.php:630 application/views/user/edit.php:872 #: application/views/view_log/partial/log_ajax.php:225 -#: application/views/view_log/qso.php:581 -#: application/views/view_log/qso.php:586 +#: application/views/view_log/qso.php:593 +#: application/views/view_log/qso.php:598 msgid "DCL" msgstr "DCL" @@ -1193,7 +1221,7 @@ msgstr "无 QSO 可供上传。" msgid "KML Export" msgstr "KML 导出" -#: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#: application/controllers/Labels.php:40 application/views/labels/index.php:31 msgid "QSL Card Labels" msgstr "QSL 卡片标签" @@ -1201,59 +1229,59 @@ msgstr "QSL 卡片标签" msgid "Create Label Type" msgstr "创建标签类型" -#: application/controllers/Labels.php:78 application/controllers/Labels.php:419 +#: application/controllers/Labels.php:78 application/controllers/Labels.php:423 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 msgid "Label Name" msgstr "标签名称" -#: application/controllers/Labels.php:79 application/controllers/Labels.php:420 +#: application/controllers/Labels.php:79 application/controllers/Labels.php:424 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 -#: application/views/labels/index.php:76 +#: application/views/labels/index.php:77 msgid "Paper Type" msgstr "纸张类型" -#: application/controllers/Labels.php:80 application/controllers/Labels.php:421 -#: application/views/labels/index.php:42 application/views/labels/index.php:77 +#: application/controllers/Labels.php:80 application/controllers/Labels.php:425 +#: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Measurement" msgstr "测量单位" -#: application/controllers/Labels.php:81 application/controllers/Labels.php:422 +#: application/controllers/Labels.php:81 application/controllers/Labels.php:426 msgid "Top Margin" msgstr "顶边距" -#: application/controllers/Labels.php:82 application/controllers/Labels.php:423 +#: application/controllers/Labels.php:82 application/controllers/Labels.php:427 msgid "Left Margin" msgstr "左边距" -#: application/controllers/Labels.php:83 application/controllers/Labels.php:424 +#: application/controllers/Labels.php:83 application/controllers/Labels.php:428 msgid "QSLs Horizontally" msgstr "QSL 水平数量" -#: application/controllers/Labels.php:84 application/controllers/Labels.php:425 +#: application/controllers/Labels.php:84 application/controllers/Labels.php:429 msgid "QSLs Vertically" msgstr "QSL 垂直数量" -#: application/controllers/Labels.php:85 application/controllers/Labels.php:426 +#: application/controllers/Labels.php:85 application/controllers/Labels.php:430 msgid "Horizontal Space" msgstr "水平空白间隔" -#: application/controllers/Labels.php:86 application/controllers/Labels.php:427 +#: application/controllers/Labels.php:86 application/controllers/Labels.php:431 msgid "Vertical Space" msgstr "垂直空白间隔" -#: application/controllers/Labels.php:87 application/controllers/Labels.php:428 +#: application/controllers/Labels.php:87 application/controllers/Labels.php:432 msgid "Label width" msgstr "标签宽度" -#: application/controllers/Labels.php:88 application/controllers/Labels.php:429 +#: application/controllers/Labels.php:88 application/controllers/Labels.php:433 msgid "Label height" msgstr "标签高度" -#: application/controllers/Labels.php:89 application/controllers/Labels.php:430 +#: application/controllers/Labels.php:89 application/controllers/Labels.php:434 msgid "Size of Font" msgstr "字体大小" -#: application/controllers/Labels.php:90 application/controllers/Labels.php:431 +#: application/controllers/Labels.php:90 application/controllers/Labels.php:435 msgid "Number of QSOs on label" msgstr "标签上的 QSO 数量" @@ -1262,69 +1290,69 @@ msgid "Create Paper Type" msgstr "创建纸张类型" #: application/controllers/Labels.php:119 -#: application/controllers/Labels.php:478 +#: application/controllers/Labels.php:482 msgid "Paper Name" msgstr "纸张名称" #: application/controllers/Labels.php:120 -#: application/controllers/Labels.php:479 +#: application/controllers/Labels.php:483 msgid "Paper Width" msgstr "纸张宽度" #: application/controllers/Labels.php:121 -#: application/controllers/Labels.php:480 +#: application/controllers/Labels.php:484 msgid "Paper Height" msgstr "纸张高度" #: application/controllers/Labels.php:132 -#: application/controllers/Labels.php:488 +#: application/controllers/Labels.php:492 msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." msgstr "此纸张未被保存,请检查是否与已有名称重复。" -#: application/controllers/Labels.php:209 -#: application/controllers/Labels.php:212 +#: application/controllers/Labels.php:210 +#: application/controllers/Labels.php:213 msgid "You need to assign a paperType to the label before printing" msgstr "在打印前,需要给标签指定一种纸张类型" -#: application/controllers/Labels.php:219 -#: application/controllers/Labels.php:222 +#: application/controllers/Labels.php:220 +#: application/controllers/Labels.php:223 msgid "You need to create a label and set it to be used for print." msgstr "你需要创建并启用一个用于打印信息的标签。" -#: application/controllers/Labels.php:229 -#: application/controllers/Labels.php:232 +#: application/controllers/Labels.php:230 +#: application/controllers/Labels.php:233 msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." msgstr "出现了错误,标签未生成,请检查标签和字体大小。" -#: application/controllers/Labels.php:255 +#: application/controllers/Labels.php:256 msgid "0 QSOs found for print!" msgstr "无 QSO 可供打印!" -#: application/controllers/Labels.php:408 +#: application/controllers/Labels.php:412 msgid "Edit Label" msgstr "编辑标签" -#: application/controllers/Labels.php:437 +#: application/controllers/Labels.php:441 msgid "Label was saved." msgstr "标签已保存。" -#: application/controllers/Labels.php:445 +#: application/controllers/Labels.php:449 msgid "Label was deleted." msgstr "标签已删除。" -#: application/controllers/Labels.php:467 +#: application/controllers/Labels.php:471 msgid "Edit Paper" msgstr "编辑纸张" -#: application/controllers/Labels.php:492 +#: application/controllers/Labels.php:496 msgid "Paper was saved." msgstr "纸张已保存。" -#: application/controllers/Labels.php:505 +#: application/controllers/Labels.php:509 msgid "Paper was deleted." msgstr "纸张已删除。" @@ -1346,55 +1374,55 @@ msgstr "日志簿" msgid "Logbook" msgstr "日志簿" -#: application/controllers/Logbook.php:780 -#: application/controllers/Logbook.php:795 +#: application/controllers/Logbook.php:784 +#: application/controllers/Logbook.php:799 #: application/views/activated_gridmap/index.php:62 #: application/views/awards/dok/index.php:56 -#: application/views/awards/dxcc/index.php:116 +#: application/views/awards/dxcc/index.php:117 #: application/views/awards/helvetia/index.php:59 #: application/views/awards/jcc/index.php:54 #: application/views/awards/pl_polska/index.php:68 #: application/views/awards/rac/index.php:50 #: application/views/awards/vucc/band.php:15 #: application/views/awards/wab/index.php:74 -#: application/views/awards/wae/index.php:55 +#: application/views/awards/wae/index.php:94 #: application/views/awards/waja/index.php:59 #: application/views/awards/wap/index.php:57 -#: application/views/awards/wapc/index.php:44 +#: application/views/awards/wapc/index.php:59 #: application/views/awards/was/index.php:61 #: application/views/awards/wpx/index.php:28 #: application/views/gridmap/index.php:178 #: application/views/interface_assets/footer.php:106 -#: application/views/logbookadvanced/index.php:936 -#: application/views/logbookadvanced/useroptions.php:118 +#: application/views/logbookadvanced/index.php:949 +#: application/views/logbookadvanced/useroptions.php:124 #: application/views/oqrs/qsolist.php:12 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 #: application/views/qslprint/qsolist.php:18 #: application/views/qso/edit_ajax.php:39 application/views/qso/index.php:115 #: application/views/timeline/index.php:56 application/views/user/edit.php:625 -#: application/views/user/edit.php:822 +#: application/views/user/edit.php:830 msgid "QSL" msgstr "QSL" -#: application/controllers/Logbook.php:783 +#: application/controllers/Logbook.php:787 #: application/views/activated_gridmap/index.php:70 #: application/views/awards/cq/index.php:114 #: application/views/awards/dok/index.php:60 -#: application/views/awards/dxcc/index.php:120 +#: application/views/awards/dxcc/index.php:121 #: application/views/awards/helvetia/index.php:63 #: application/views/awards/iota/index.php:68 -#: application/views/awards/itu/index.php:64 +#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:58 #: application/views/awards/pl_polska/index.php:72 #: application/views/awards/rac/index.php:54 #: application/views/awards/vucc/band.php:16 #: application/views/awards/wab/index.php:82 -#: application/views/awards/wac/index.php:49 -#: application/views/awards/wae/index.php:59 +#: application/views/awards/wac/index.php:30 +#: application/views/awards/wae/index.php:98 #: application/views/awards/waja/index.php:63 #: application/views/awards/wap/index.php:61 -#: application/views/awards/wapc/index.php:48 +#: application/views/awards/wapc/index.php:63 #: application/views/awards/was/index.php:65 #: application/views/awards/wpx/index.php:32 #: application/views/dashboard/index.php:342 @@ -1402,93 +1430,95 @@ msgstr "QSL" #: application/views/logbookadvanced/checkresult.php:105 #: application/views/logbookadvanced/checkresult.php:163 #: application/views/logbookadvanced/checkresult.php:391 -#: application/views/logbookadvanced/useroptions.php:130 +#: application/views/logbookadvanced/useroptions.php:136 #: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:160 #: application/views/oqrs/qsolist.php:175 #: application/views/qslprint/qsolist.php:23 -#: application/views/qslprint/qsolist.php:171 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:187 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:426 #: application/views/satellite/index.php:56 #: application/views/satellite/satinfo.php:13 #: application/views/search/search_result_ajax.php:301 #: application/views/search/search_result_ajax.php:316 #: application/views/timeline/index.php:60 application/views/user/edit.php:626 -#: application/views/user/edit.php:832 application/views/view_log/qso.php:537 -#: application/views/view_log/qso.php:542 +#: application/views/user/edit.php:840 application/views/view_log/qso.php:549 +#: application/views/view_log/qso.php:554 msgid "LoTW" msgstr "LoTW" -#: application/controllers/Logbook.php:786 +#: application/controllers/Logbook.php:790 #: application/views/activated_gridmap/index.php:78 #: application/views/awards/cq/index.php:118 #: application/views/awards/dok/index.php:64 -#: application/views/awards/dxcc/index.php:124 +#: application/views/awards/dxcc/index.php:125 #: application/views/awards/helvetia/index.php:67 #: application/views/awards/iota/index.php:72 -#: application/views/awards/itu/index.php:68 +#: application/views/awards/itu/index.php:120 #: application/views/awards/jcc/index.php:62 #: application/views/awards/pl_polska/index.php:76 #: application/views/awards/rac/index.php:58 #: application/views/awards/wab/index.php:90 -#: application/views/awards/wac/index.php:53 -#: application/views/awards/wae/index.php:63 +#: application/views/awards/wac/index.php:34 +#: application/views/awards/wae/index.php:102 #: application/views/awards/waja/index.php:67 #: application/views/awards/wap/index.php:65 -#: application/views/awards/wapc/index.php:52 +#: application/views/awards/wapc/index.php:67 #: application/views/awards/was/index.php:69 #: application/views/awards/wpx/index.php:36 #: application/views/dashboard/index.php:342 #: application/views/gridmap/index.php:194 -#: application/views/logbookadvanced/useroptions.php:124 +#: application/views/logbookadvanced/useroptions.php:130 #: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:144 #: application/views/qslprint/qsolist.php:20 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:155 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:171 #: application/views/qso/edit_ajax.php:423 #: application/views/search/search_result_ajax.php:263 #: application/views/search/search_result_ajax.php:276 #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 #: application/views/timeline/index.php:64 application/views/user/edit.php:627 -#: application/views/user/edit.php:840 application/views/user/edit.php:914 +#: application/views/user/edit.php:848 application/views/user/edit.php:922 msgid "eQSL" msgstr "eQSL" -#: application/controllers/Logbook.php:989 +#: application/controllers/Logbook.php:993 msgid "All callbook lookups failed or provided no results." msgstr "所有呼号簿的查询均失败或没有结果。" -#: application/controllers/Logbook.php:1454 -#: application/controllers/Radio.php:46 +#: application/controllers/Logbook.php:1458 +#: application/controllers/Radio.php:49 #: application/views/accumulate/index.php:31 #: application/views/activated_gridmap/index.php:43 #: application/views/adif/dcl_success.php:33 #: application/views/adif/pota_success.php:33 #: application/views/awards/73on73/index.php:36 -#: application/views/awards/cq/index.php:141 +#: application/views/awards/cq/index.php:145 #: application/views/awards/dok/index.php:92 -#: application/views/awards/dxcc/index.php:218 +#: application/views/awards/dxcc/index.php:219 #: application/views/awards/helvetia/index.php:91 #: application/views/awards/iota/index.php:134 -#: application/views/awards/itu/index.php:92 +#: application/views/awards/itu/index.php:147 #: application/views/awards/jcc/index.php:90 #: application/views/awards/rac/index.php:82 #: application/views/awards/sig/qso_list.php:12 #: application/views/awards/wab/index.php:55 -#: application/views/awards/wac/index.php:111 -#: application/views/awards/wae/index.php:122 +#: application/views/awards/wac/index.php:95 +#: application/views/awards/wae/index.php:162 #: application/views/awards/waja/index.php:95 #: application/views/awards/wap/index.php:89 -#: application/views/awards/wapc/index.php:80 +#: application/views/awards/wapc/index.php:95 #: application/views/awards/was/index.php:93 #: application/views/awards/wpx/index.php:122 #: application/views/awards/wpx/index.php:124 #: application/views/awards/wpx/wpx_details.php:23 -#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:167 -#: application/views/bandmap/list.php:301 -#: application/views/bandmap/list.php:568 +#: application/views/bandmap/list.php:100 +#: application/views/bandmap/list.php:168 +#: application/views/bandmap/list.php:302 +#: application/views/bandmap/list.php:551 +#: application/views/bandmap/list.php:591 #: application/views/bands/bandedges.php:31 #: application/views/callstats/index.php:49 #: application/views/components/hamsat/table.php:30 @@ -1496,7 +1526,7 @@ msgstr "所有呼号簿的查询均失败或没有结果。" #: application/views/contesting/index.php:265 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:710 +#: application/views/debug/index.php:757 #: application/views/distancerecords/index.php:19 #: application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 @@ -1513,13 +1543,13 @@ msgstr "所有呼号簿的查询均失败或没有结果。" #: application/views/logbookadvanced/checkresult.php:390 #: application/views/logbookadvanced/dupesearchdialog.php:23 #: application/views/logbookadvanced/edit.php:12 -#: application/views/logbookadvanced/index.php:353 -#: application/views/logbookadvanced/index.php:517 -#: application/views/logbookadvanced/index.php:906 +#: application/views/logbookadvanced/index.php:359 +#: application/views/logbookadvanced/index.php:527 +#: application/views/logbookadvanced/index.php:919 #: application/views/logbookadvanced/qslcarousel.php:32 #: application/views/logbookadvanced/showMissingDxccQsos.php:21 #: application/views/logbookadvanced/showStateQsos.php:23 -#: application/views/logbookadvanced/useroptions.php:40 +#: application/views/logbookadvanced/useroptions.php:46 #: application/views/mode/index.php:40 #: application/views/oqrs/notinlogform.php:11 #: application/views/oqrs/qsolist.php:9 application/views/oqrs/request.php:18 @@ -1558,15 +1588,15 @@ msgstr "所有呼号簿的查询均失败或没有结果。" msgid "Mode" msgstr "模式" -#: application/controllers/Logbook.php:1455 +#: application/controllers/Logbook.php:1459 #: application/views/awards/73on73/index.php:38 #: application/views/awards/pota/index.php:37 #: application/views/awards/wwff/index.php:37 #: application/views/contesting/index.php:180 #: application/views/contesting/index.php:266 #: application/views/logbookadvanced/edit.php:16 -#: application/views/logbookadvanced/index.php:909 -#: application/views/logbookadvanced/useroptions.php:46 +#: application/views/logbookadvanced/index.php:922 +#: application/views/logbookadvanced/useroptions.php:52 #: application/views/qslcard/searchresult.php:13 #: application/views/qslcard/searchresult.php:29 #: application/views/qslcard/searchresult.php:45 @@ -1587,15 +1617,15 @@ msgstr "模式" msgid "RST (S)" msgstr "我收对方" -#: application/controllers/Logbook.php:1456 +#: application/controllers/Logbook.php:1460 #: application/views/awards/73on73/index.php:37 #: application/views/awards/pota/index.php:38 #: application/views/awards/wwff/index.php:38 #: application/views/contesting/index.php:204 #: application/views/contesting/index.php:267 #: application/views/logbookadvanced/edit.php:15 -#: application/views/logbookadvanced/index.php:912 -#: application/views/logbookadvanced/useroptions.php:52 +#: application/views/logbookadvanced/index.php:925 +#: application/views/logbookadvanced/useroptions.php:58 #: application/views/qslcard/searchresult.php:14 #: application/views/qslcard/searchresult.php:30 #: application/views/qslcard/searchresult.php:46 @@ -1617,7 +1647,7 @@ msgstr "我收对方" msgid "RST (R)" msgstr "对方收我" -#: application/controllers/Logbook.php:1457 +#: application/controllers/Logbook.php:1461 #: application/views/dashboard/index.php:7 #: application/views/qslcard/searchresult.php:15 #: application/views/qslcard/searchresult.php:31 @@ -1626,29 +1656,29 @@ msgstr "对方收我" #: application/views/qslcard/searchresult.php:79 #: application/views/qso/components/previous_contacts.php:80 #: application/views/search/search_result_ajax.php:7 -#: application/views/stationsetup/stationsetup.php:129 +#: application/views/stationsetup/stationsetup.php:131 #: application/views/timeline/index.php:200 application/views/user/edit.php:247 #: application/views/user/edit.php:270 application/views/user/edit.php:293 #: application/views/user/edit.php:316 application/views/user/edit.php:340 #: application/views/view_log/partial/log.php:13 #: application/views/view_log/partial/log_ajax.php:7 -#: application/views/view_log/qso.php:337 -#: application/views/view_log/qso.php:693 +#: application/views/view_log/qso.php:349 +#: application/views/view_log/qso.php:705 #: application/views/visitor/index.php:15 msgid "Country" msgstr "DXCC 实体" -#: application/controllers/Logbook.php:1458 +#: application/controllers/Logbook.php:1462 #: application/views/awards/iota/index.php:198 -#: application/views/bandmap/list.php:329 application/views/bands/index.php:52 +#: application/views/bandmap/list.php:330 application/views/bands/index.php:52 #: application/views/dashboard/index.php:8 #: application/views/interface_assets/header.php:220 #: application/views/logbookadvanced/checkresult.php:394 #: application/views/logbookadvanced/edit.php:28 -#: application/views/logbookadvanced/index.php:462 -#: application/views/logbookadvanced/index.php:972 +#: application/views/logbookadvanced/index.php:468 +#: application/views/logbookadvanced/index.php:985 #: application/views/logbookadvanced/qslcarousel.php:38 -#: application/views/logbookadvanced/useroptions.php:214 +#: application/views/logbookadvanced/useroptions.php:220 #: application/views/lookup/index.php:7 #: application/views/qslcard/searchresult.php:16 #: application/views/qslcard/searchresult.php:32 @@ -1661,7 +1691,7 @@ msgstr "DXCC 实体" #: application/views/search/search_result_ajax.php:8 #: application/views/station_profile/create.php:184 #: application/views/station_profile/edit.php:209 -#: application/views/timeline/index.php:295 application/views/user/edit.php:248 +#: application/views/timeline/index.php:313 application/views/user/edit.php:248 #: application/views/user/edit.php:271 application/views/user/edit.php:294 #: application/views/user/edit.php:317 application/views/user/edit.php:341 #: application/views/view_log/partial/log_ajax.php:8 @@ -1669,7 +1699,7 @@ msgstr "DXCC 实体" msgid "IOTA" msgstr "IOTA" -#: application/controllers/Logbook.php:1462 +#: application/controllers/Logbook.php:1466 #: application/views/awards/counties/details.php:12 #: application/views/awards/counties/index.php:21 #: application/views/awards/rac/index.php:146 @@ -1678,12 +1708,12 @@ msgstr "IOTA" #: application/views/dashboard/index.php:12 #: application/views/logbookadvanced/edit.php:33 #: application/views/logbookadvanced/edit.php:98 -#: application/views/logbookadvanced/index.php:343 -#: application/views/logbookadvanced/index.php:960 +#: application/views/logbookadvanced/index.php:349 +#: application/views/logbookadvanced/index.php:973 #: application/views/logbookadvanced/qslcarousel.php:36 #: application/views/logbookadvanced/showMissingDxccQsos.php:23 #: application/views/logbookadvanced/showStateQsos.php:25 -#: application/views/logbookadvanced/useroptions.php:175 +#: application/views/logbookadvanced/useroptions.php:181 #: application/views/qslcard/searchresult.php:18 #: application/views/qslcard/searchresult.php:34 #: application/views/qslcard/searchresult.php:50 @@ -1692,7 +1722,7 @@ msgstr "IOTA" #: application/views/qso/components/previous_contacts.php:85 #: application/views/search/search_result_ajax.php:12 #: application/views/statistics/initialresult.php:21 -#: application/views/timeline/index.php:265 application/views/user/edit.php:252 +#: application/views/timeline/index.php:277 application/views/user/edit.php:252 #: application/views/user/edit.php:275 application/views/user/edit.php:298 #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 @@ -1700,7 +1730,7 @@ msgstr "IOTA" msgid "State" msgstr "州" -#: application/controllers/Logbook.php:1463 +#: application/controllers/Logbook.php:1467 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:54 @@ -1709,19 +1739,19 @@ msgstr "州" #: application/views/contesting/index.php:272 #: application/views/dashboard/index.php:13 #: application/views/gridmap/index.php:230 -#: application/views/labels/index.php:125 +#: application/views/labels/index.php:126 #: application/views/logbookadvanced/checkresult.php:166 #: application/views/logbookadvanced/checkresult.php:245 #: application/views/logbookadvanced/checkresult.php:321 #: application/views/logbookadvanced/edit.php:27 #: application/views/logbookadvanced/index.php:12 -#: application/views/logbookadvanced/index.php:349 -#: application/views/logbookadvanced/index.php:921 +#: application/views/logbookadvanced/index.php:355 +#: application/views/logbookadvanced/index.php:934 #: application/views/logbookadvanced/qslcarousel.php:39 #: application/views/logbookadvanced/showMissingDxccQsos.php:24 #: application/views/logbookadvanced/showStateQsos.php:26 #: application/views/logbookadvanced/showUpdateResult.php:44 -#: application/views/logbookadvanced/useroptions.php:79 +#: application/views/logbookadvanced/useroptions.php:85 #: application/views/lookup/index.php:6 application/views/map/qso_map.php:63 #: application/views/qslcard/confirmationresult.php:19 #: application/views/qslcard/searchresult.php:19 @@ -1737,20 +1767,20 @@ msgstr "州" #: application/views/search/result.php:49 #: application/views/search/search_result_ajax.php:13 #: application/views/simplefle/index.php:161 -#: application/views/stationsetup/stationsetup.php:130 +#: application/views/stationsetup/stationsetup.php:132 #: application/views/statistics/initialresult.php:20 -#: application/views/timeline/index.php:356 application/views/user/edit.php:144 +#: application/views/timeline/index.php:386 application/views/user/edit.php:144 #: application/views/user/edit.php:253 application/views/user/edit.php:276 #: application/views/user/edit.php:299 application/views/user/edit.php:322 #: application/views/user/edit.php:346 application/views/user/profile.php:34 #: application/views/view_log/partial/log_ajax.php:13 -#: application/views/view_log/qso.php:680 +#: application/views/view_log/qso.php:692 #: application/views/visitor/index.php:27 #: application/views/zonechecker/result.php:53 msgid "Gridsquare" msgstr "网格坐标" -#: application/controllers/Logbook.php:1464 +#: application/controllers/Logbook.php:1468 #: application/views/activated_gridmap/index.php:112 #: application/views/awards/ffma/index.php:40 #: application/views/awards/gridmaster/index.php:56 @@ -1760,9 +1790,9 @@ msgstr "网格坐标" #: application/views/gridmap/index.php:232 #: application/views/logbookadvanced/edit.php:11 #: application/views/logbookadvanced/index.php:14 -#: application/views/logbookadvanced/index.php:507 -#: application/views/logbookadvanced/index.php:1011 -#: application/views/logbookadvanced/useroptions.php:305 +#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:1024 +#: application/views/logbookadvanced/useroptions.php:311 #: application/views/map/qso_map.php:65 #: application/views/qslcard/searchresult.php:20 #: application/views/qslcard/searchresult.php:36 @@ -1780,18 +1810,18 @@ msgstr "网格坐标" msgid "Distance" msgstr "距离" -#: application/controllers/Logbook.php:1465 +#: application/controllers/Logbook.php:1469 #: application/views/accumulate/index.php:21 #: application/views/activated_gridmap/index.php:12 #: application/views/activators/index.php:10 #: application/views/adif/dcl_success.php:32 #: application/views/adif/pota_success.php:32 -#: application/views/awards/cq/index.php:128 +#: application/views/awards/cq/index.php:132 #: application/views/awards/dok/index.php:78 -#: application/views/awards/dxcc/index.php:172 +#: application/views/awards/dxcc/index.php:173 #: application/views/awards/helvetia/index.php:77 #: application/views/awards/iota/index.php:120 -#: application/views/awards/itu/index.php:78 +#: application/views/awards/itu/index.php:134 #: application/views/awards/jcc/index.php:76 #: application/views/awards/pota/index.php:36 #: application/views/awards/rac/index.php:68 @@ -1799,25 +1829,26 @@ msgstr "距离" #: application/views/awards/sota/index.php:34 #: application/views/awards/vucc/index.php:22 #: application/views/awards/wab/index.php:24 -#: application/views/awards/wac/index.php:64 -#: application/views/awards/wae/index.php:77 +#: application/views/awards/wac/index.php:48 +#: application/views/awards/wae/index.php:116 #: application/views/awards/waja/index.php:81 #: application/views/awards/wap/index.php:75 -#: application/views/awards/wapc/index.php:66 +#: application/views/awards/wapc/index.php:81 #: application/views/awards/was/index.php:79 #: application/views/awards/wpx/index.php:79 #: application/views/awards/wpx/wpx_details.php:22 #: application/views/awards/wwff/index.php:36 -#: application/views/bandmap/list.php:98 application/views/bandmap/list.php:168 -#: application/views/bandmap/list.php:363 -#: application/views/bandmap/list.php:566 application/views/bands/create.php:24 +#: application/views/bandmap/list.php:99 application/views/bandmap/list.php:169 +#: application/views/bandmap/list.php:364 +#: application/views/bandmap/list.php:549 +#: application/views/bandmap/list.php:589 application/views/bands/create.php:24 #: application/views/bands/edit.php:7 application/views/bands/index.php:47 #: application/views/callstats/index.php:7 #: application/views/contesting/index.php:131 #: application/views/contesting/index.php:264 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:711 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:758 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:63 application/views/kml/index.php:19 @@ -1828,13 +1859,13 @@ msgstr "距离" #: application/views/logbookadvanced/checkresult.php:389 #: application/views/logbookadvanced/dupesearchdialog.php:32 #: application/views/logbookadvanced/edit.php:6 -#: application/views/logbookadvanced/index.php:364 -#: application/views/logbookadvanced/index.php:516 -#: application/views/logbookadvanced/index.php:915 +#: application/views/logbookadvanced/index.php:370 +#: application/views/logbookadvanced/index.php:526 +#: application/views/logbookadvanced/index.php:928 #: application/views/logbookadvanced/qslcarousel.php:33 #: application/views/logbookadvanced/showMissingDxccQsos.php:22 #: application/views/logbookadvanced/showStateQsos.php:24 -#: application/views/logbookadvanced/useroptions.php:58 +#: application/views/logbookadvanced/useroptions.php:64 #: application/views/oqrs/notinlogform.php:10 #: application/views/oqrs/qsolist.php:10 application/views/oqrs/request.php:17 #: application/views/oqrs/request_grouped.php:10 @@ -1873,13 +1904,14 @@ msgstr "距离" msgid "Band" msgstr "频段" -#: application/controllers/Logbook.php:1466 -#: application/controllers/Radio.php:45 application/views/bandmap/list.php:166 -#: application/views/bandmap/list.php:567 +#: application/controllers/Logbook.php:1470 +#: application/controllers/Radio.php:48 application/views/bandmap/list.php:167 +#: application/views/bandmap/list.php:550 +#: application/views/bandmap/list.php:590 #: application/views/contesting/index.php:148 #: application/views/dashboard/index.php:16 -#: application/views/logbookadvanced/index.php:918 -#: application/views/logbookadvanced/useroptions.php:64 +#: application/views/logbookadvanced/index.php:931 +#: application/views/logbookadvanced/useroptions.php:70 #: application/views/qslcard/searchresult.php:22 #: application/views/qslcard/searchresult.php:38 #: application/views/qslcard/searchresult.php:54 @@ -1900,13 +1932,13 @@ msgstr "频段" msgid "Frequency" msgstr "频率" -#: application/controllers/Logbook.php:1467 -#: application/controllers/Radio.php:43 +#: application/controllers/Logbook.php:1471 +#: application/controllers/Radio.php:46 #: application/views/dashboard/index.php:17 #: application/views/logbookadvanced/edit.php:13 -#: application/views/logbookadvanced/index.php:478 -#: application/views/logbookadvanced/index.php:993 -#: application/views/logbookadvanced/useroptions.php:265 +#: application/views/logbookadvanced/index.php:484 +#: application/views/logbookadvanced/index.php:1006 +#: application/views/logbookadvanced/useroptions.php:271 #: application/views/qslcard/searchresult.php:23 #: application/views/qslcard/searchresult.php:55 #: application/views/qslcard/searchresult.php:71 @@ -1919,21 +1951,21 @@ msgstr "频率" #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 #: application/views/view_log/partial/log_ajax.php:17 -#: application/views/view_log/qso.php:700 +#: application/views/view_log/qso.php:712 #: application/views/visitor/index.php:39 msgid "Operator" msgstr "操作员" -#: application/controllers/Logbook.php:1488 +#: application/controllers/Logbook.php:1492 #: application/controllers/Stationsetup.php:424 -#: application/views/awards/dxcc/index.php:83 -#: application/views/awards/dxcc/index.php:291 -#: application/views/awards/wae/index.php:175 +#: application/views/awards/dxcc/index.php:84 +#: application/views/awards/dxcc/index.php:292 +#: application/views/awards/wae/index.php:217 #: application/views/csv/index.php:65 application/views/dashboard/index.php:29 #: application/views/dxatlas/index.php:65 -#: application/views/interface_assets/footer.php:822 +#: application/views/interface_assets/footer.php:826 #: application/views/kml/index.php:54 -#: application/views/logbookadvanced/index.php:335 +#: application/views/logbookadvanced/index.php:341 #: application/views/lookup/index.php:47 #: application/views/lotw_views/index.php:50 #: application/views/qso/components/previous_contacts.php:59 @@ -1942,14 +1974,14 @@ msgstr "操作员" #: application/views/station_profile/edit.php:107 #: application/views/stationsetup/linkedlocations.php:17 #: application/views/stationsetup/linkedlocations.php:45 -#: application/views/stationsetup/locationlist.php:67 -#: application/views/stationsetup/stationsetup.php:156 -#: application/views/timeline/index.php:216 +#: application/views/stationsetup/locationlist.php:75 +#: application/views/stationsetup/stationsetup.php:158 +#: application/views/timeline/index.php:222 #: application/views/timeplotter/index.php:33 #: application/views/user/modals/first_login_wizard.php:52 #: application/views/view_log/partial/log_ajax.php:31 -#: application/views/view_log/qso.php:341 -#: application/views/view_log/qso.php:694 +#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:706 msgid "Deleted DXCC" msgstr "删除 DXCC 实体" @@ -1957,12 +1989,12 @@ msgstr "删除 DXCC 实体" msgid "Advanced logbook" msgstr "详细日志" -#: application/controllers/Logbookadvanced.php:925 +#: application/controllers/Logbookadvanced.php:935 #, php-format msgid "DXCC updated for %d QSO(s)." msgstr "已更新 %d 个 QSO 的 DXCC。" -#: application/controllers/Logbookadvanced.php:941 +#: application/controllers/Logbookadvanced.php:951 #, php-format msgid "Map for DXCC %s and gridsquare %s." msgstr "为 DXCC %s 和网格 %s 的地图。" @@ -1977,7 +2009,7 @@ msgstr "快速查找" #: application/views/interface_assets/header.php:516 #: application/views/lotw/import.php:3 application/views/lotw_views/index.php:9 #: application/views/lotw_views/upload_cert.php:3 -#: application/views/user/edit.php:886 application/views/visitor/index.php:328 +#: application/views/user/edit.php:894 application/views/visitor/index.php:328 msgid "Logbook of the World" msgstr "Logbook of the World (LoTW)" @@ -1989,11 +2021,11 @@ msgstr "呼号证书已导入。" msgid "Certificate Updated." msgstr "呼号证书已更新。" -#: application/controllers/Lotw.php:420 +#: application/controllers/Lotw.php:416 msgid "Certificate Deleted." msgstr "呼号证书已删除。" -#: application/controllers/Lotw.php:448 +#: application/controllers/Lotw.php:444 #, php-format msgid "" "The certificate found in file %s contains a password and cannot be " @@ -2004,7 +2036,7 @@ msgstr "" "文件%s中的证书包含密码,无法处理。%s请确保从 tqsl 应用程序导出 LoTW 证书时不" "带密码!%s如需更多信息,请访问 Wavelog Wiki 中的 %sLoTW FAQ 页面%s。" -#: application/controllers/Lotw.php:450 +#: application/controllers/Lotw.php:446 #, php-format msgid "" "Generic error extracting the certificate from file %s. If the filename " @@ -2014,50 +2046,50 @@ msgstr "" "从文件 %s 提取证书时发生一般错误。如果文件名包含“key-only”,通常这是一个尚未" "被 LoTW 处理的证书请求。" -#: application/controllers/Lotw.php:457 +#: application/controllers/Lotw.php:453 #, php-format msgid "Generic error processing the certificate in file %s." msgstr "在文件 %s 中处理证书时出现一般错误。" -#: application/controllers/Lotw.php:469 +#: application/controllers/Lotw.php:465 #, php-format msgid "Generic error extracting the private key from certificate in file %s." msgstr "从文件 %s 中提取证书的私钥时发生一般错误。" -#: application/controllers/Lotw.php:685 +#: application/controllers/Lotw.php:681 msgid "LoTW ADIF Information" msgstr "LoTW ADIF 信息" -#: application/controllers/Lotw.php:858 +#: application/controllers/Lotw.php:977 msgid "Connection to LoTW failed." msgstr "连接到 LoTW 失败。" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 #, php-format msgid "LoTW login failed for user %s: %s." msgstr "LoTW 用户 %s 登录失败:%s。" -#: application/controllers/Lotw.php:863 +#: application/controllers/Lotw.php:982 msgid "Username/password incorrect" msgstr "用户名/密码不正确" -#: application/controllers/Lotw.php:866 +#: application/controllers/Lotw.php:985 msgid "LoTW currently not available. Try again later." msgstr "LoTW当前不可用。请稍后再试。" -#: application/controllers/Lotw.php:870 +#: application/controllers/Lotw.php:989 msgid "LoTW login OK!" msgstr "LoTW 登录成功!" -#: application/controllers/Lotw.php:876 +#: application/controllers/Lotw.php:995 msgid "No LoTW credentials provided." msgstr "没有提供 LoTW 证书。" -#: application/controllers/Lotw.php:894 +#: application/controllers/Lotw.php:1013 msgid "LoTW ADIF Import" msgstr "LoTW ADIF 导入" -#: application/controllers/Lotw.php:920 +#: application/controllers/Lotw.php:1039 msgid "You have not defined your ARRL LoTW credentials!" msgstr "未配置 LoTW 登录信息!" @@ -2082,7 +2114,7 @@ msgstr "编辑模式" #: application/views/notes/main.php:5 application/views/notes/view.php:6 #: application/views/qso/edit_ajax.php:37 #: application/views/qso/edit_ajax.php:410 application/views/qso/index.php:111 -#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:762 +#: application/views/view_log/qso.php:14 application/views/view_log/qso.php:774 msgid "Notes" msgstr "笔记" @@ -2388,19 +2420,19 @@ msgstr "上传 QSL 卡片" msgid "Print Requested QSLs" msgstr "打印被请求的 QSL 卡片" -#: application/controllers/Qso.php:137 +#: application/controllers/Qso.php:144 msgid "Add QSO" msgstr "添加 QSO" -#: application/controllers/Qso.php:824 +#: application/controllers/Qso.php:831 msgid "You have to be logged in to access this URL." msgstr "需要登录方可浏览此页面。" -#: application/controllers/Qso.php:830 +#: application/controllers/Qso.php:837 msgid "Call Transfer" msgstr "通联转接" -#: application/controllers/Qso.php:837 +#: application/controllers/Qso.php:844 msgid "No callsign provided." msgstr "未提供呼号。" @@ -2409,18 +2441,18 @@ msgstr "未提供呼号。" msgid "Hardware Interfaces" msgstr "硬件接口" -#: application/controllers/Radio.php:41 application/views/bandmap/list.php:20 +#: application/controllers/Radio.php:44 application/views/bandmap/list.php:21 #: application/views/contesting/index.php:157 -#: application/views/qso/index.php:411 application/views/view_log/qso.php:714 +#: application/views/qso/index.php:411 application/views/view_log/qso.php:726 msgid "Radio" msgstr "电台" -#: application/controllers/Radio.php:47 +#: application/controllers/Radio.php:50 msgid "Timestamp" msgstr "时间戳" -#: application/controllers/Radio.php:49 -#: application/views/logbookadvanced/index.php:867 +#: application/controllers/Radio.php:52 +#: application/views/logbookadvanced/index.php:877 #: application/views/lotw_views/index.php:40 #: application/views/simplefle/index.php:20 #: application/views/simplefle/index.php:185 @@ -2428,61 +2460,65 @@ msgstr "时间戳" msgid "Options" msgstr "设置" -#: application/controllers/Radio.php:50 application/views/debug/index.php:321 +#: application/controllers/Radio.php:53 application/views/debug/index.php:360 #: application/views/qso/index.php:841 msgid "Settings" msgstr "设置" -#: application/controllers/Radio.php:63 +#: application/controllers/Radio.php:59 +msgid "WebSocket" +msgstr "WebSocket" + +#: application/controllers/Radio.php:65 application/controllers/Radio.php:126 +msgid "Default (click to release)" +msgstr "默认(点击释放)" + +#: application/controllers/Radio.php:67 application/controllers/Radio.php:128 +msgid "Set as default radio" +msgstr "设置为默认电台" + +#: application/controllers/Radio.php:83 msgid "UNKNOWN" msgstr "未知" -#: application/controllers/Radio.php:98 application/views/bandmap/list.php:242 +#: application/controllers/Radio.php:120 application/views/bandmap/list.php:243 #: application/views/contesting/index.php:162 #: application/views/qso/index.php:416 msgid "last updated" msgstr "上次更新" -#: application/controllers/Radio.php:106 application/controllers/Radio.php:109 -msgid "Set as default radio" -msgstr "设置为默认电台" - -#: application/controllers/Radio.php:111 -msgid "Default (click to release)" -msgstr "默认(点击释放)" - -#: application/controllers/Radio.php:115 +#: application/controllers/Radio.php:130 #: application/controllers/Stationsetup.php:402 #: application/views/api/index.php:74 application/views/bands/bandedges.php:32 #: application/views/club/permissions.php:274 #: application/views/contesting/add.php:59 application/views/cron/index.php:71 -#: application/views/interface_assets/footer.php:682 -#: application/views/interface_assets/footer.php:691 -#: application/views/labels/index.php:47 application/views/labels/index.php:83 -#: application/views/logbookadvanced/index.php:854 +#: application/views/interface_assets/footer.php:686 +#: application/views/interface_assets/footer.php:695 +#: application/views/labels/index.php:48 application/views/labels/index.php:84 +#: application/views/logbookadvanced/index.php:864 #: application/views/mode/index.php:64 application/views/satellite/edit.php:56 #: application/views/satellite/index.php:58 #: application/views/search/stored_queries.php:21 -#: application/views/stationsetup/stationsetup.php:134 -#: application/views/stationsetup/stationsetup.php:172 +#: application/views/stationsetup/stationsetup.php:136 +#: application/views/stationsetup/stationsetup.php:174 #: application/views/themes/index.php:104 application/views/user/index.php:97 #: application/views/user/index.php:203 msgid "Edit" msgstr "编辑" -#: application/controllers/Radio.php:116 +#: application/controllers/Radio.php:131 #: application/controllers/Stationsetup.php:415 #: application/views/api/index.php:81 application/views/bands/bandedges.php:33 #: application/views/club/permissions.php:331 #: application/views/club/permissions.php:353 #: application/views/contesting/add.php:62 #: application/views/interface_assets/footer.php:65 -#: application/views/interface_assets/footer.php:2669 -#: application/views/interface_assets/footer.php:2687 -#: application/views/interface_assets/footer.php:2708 -#: application/views/interface_assets/footer.php:2726 -#: application/views/labels/index.php:48 application/views/labels/index.php:84 -#: application/views/logbookadvanced/index.php:873 +#: application/views/interface_assets/footer.php:2643 +#: application/views/interface_assets/footer.php:2661 +#: application/views/interface_assets/footer.php:2682 +#: application/views/interface_assets/footer.php:2700 +#: application/views/labels/index.php:49 application/views/labels/index.php:85 +#: application/views/logbookadvanced/index.php:883 #: application/views/lotw_views/index.php:134 #: application/views/mode/index.php:67 #: application/views/oqrs/showrequests.php:75 @@ -2491,22 +2527,38 @@ msgstr "编辑" #: application/views/satellite/edit.php:57 #: application/views/satellite/index.php:59 #: application/views/search/stored_queries.php:22 -#: application/views/stationsetup/stationsetup.php:36 -#: application/views/stationsetup/stationsetup.php:143 -#: application/views/stationsetup/stationsetup.php:199 +#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:145 +#: application/views/stationsetup/stationsetup.php:201 #: application/views/themes/index.php:107 application/views/user/index.php:119 -#: application/views/user/index.php:228 application/views/view_log/qso.php:785 +#: application/views/user/index.php:228 application/views/view_log/qso.php:797 msgid "Delete" msgstr "删除" -#: application/controllers/Radio.php:122 +#: application/controllers/Radio.php:138 +msgid "WebSocket is currently default (click to release)" +msgstr "WebSocket 目前为默认状态(点击取消)" + +#: application/controllers/Radio.php:140 +msgid "Set WebSocket as default radio" +msgstr "将 WebSocket 设为默认电台接口" + +#: application/controllers/Radio.php:144 msgid "No CAT interfaced radios found." msgstr "未检测到与 CAT 相连的电台设备。" -#: application/controllers/Radio.php:137 application/views/radio/index.php:2 +#: application/controllers/Radio.php:145 +msgid "You can still set the WebSocket option as your default radio." +msgstr "你仍可将 WebSocket 设为默认电台接口。" + +#: application/controllers/Radio.php:162 application/views/radio/index.php:2 msgid "Edit CAT Settings" msgstr "编辑 CAT 设置" +#: application/controllers/Radio.php:334 +msgid "Radio removed successfully" +msgstr "电台已成功移除" + #: application/controllers/Reg1test.php:22 msgid "Export EDI" msgstr "导出 EDI" @@ -2574,7 +2626,7 @@ msgstr "你尚未创建台站地址,请前往 %s 创建!" #: application/views/awards/dok/index.php:10 #: application/views/awards/iota/index.php:21 #: application/views/awards/wap/index.php:24 -#: application/views/awards/wapc/index.php:10 +#: application/views/awards/wapc/index.php:25 #: application/views/awards/was/index.php:28 #: application/views/simplefle/index.php:16 msgid "here" @@ -2585,13 +2637,13 @@ msgstr "这里" msgid "Satellite Timers" msgstr "卫星时钟" -#: application/controllers/Search.php:15 application/views/bandmap/list.php:544 +#: application/controllers/Search.php:15 application/views/bandmap/list.php:567 #: application/views/continents/index.php:49 #: application/views/interface_assets/footer.php:42 #: application/views/interface_assets/header.php:392 #: application/views/interface_assets/header.php:399 #: application/views/logbookadvanced/index.php:75 -#: application/views/logbookadvanced/index.php:843 +#: application/views/logbookadvanced/index.php:853 #: application/views/oqrs/index.php:30 #: application/views/oqrs/showrequests.php:69 #: application/views/qslcard/searchform.php:8 @@ -2644,7 +2696,8 @@ msgstr "修改台站地址: " #: application/controllers/Station.php:93 #: application/views/calltester/index.php:5 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 -#: application/views/labels/index.php:124 +#: application/views/labels/index.php:125 +#: application/views/logbookadvanced/dbtoolsdialog.php:16 #: application/views/logbookadvanced/edit.php:18 #: application/views/logbookadvanced/showMissingDxccQsos.php:26 #: application/views/qslprint/index.php:20 application/views/qso/index.php:137 @@ -2652,7 +2705,7 @@ msgstr "修改台站地址: " #: application/views/search/search_result_ajax.php:18 #: application/views/station_profile/create.php:430 #: application/views/station_profile/edit.php:462 -#: application/views/user/edit.php:350 application/views/user/edit.php:720 +#: application/views/user/edit.php:350 application/views/user/edit.php:728 #: application/views/view_log/partial/log_ajax.php:18 #: application/views/view_log/qso.php:9 application/views/webadif/export.php:75 #: application/views/webadif/export.php:115 @@ -2665,7 +2718,7 @@ msgid "Duplicate Station Location:" msgstr "台站地址重复:" #: application/controllers/Station.php:221 -#: application/controllers/User.php:1319 application/controllers/User.php:1569 +#: application/controllers/User.php:1332 application/controllers/User.php:1582 #, php-format msgid "Please check value for grid locator (%s)" msgstr "请检查网格定位的值 ( %s )" @@ -2728,7 +2781,8 @@ msgstr "错误,链接已被使用!" #: application/views/station_profile/create.php:366 #: application/views/station_profile/edit.php:335 #: application/views/station_profile/edit.php:394 -#: application/views/stationsetup/stationsetup.php:79 +#: application/views/stationsetup/locationlist.php:54 +#: application/views/stationsetup/stationsetup.php:81 #: application/views/user/edit.php:452 application/views/user/edit.php:503 #: application/views/user/edit.php:512 application/views/user/edit.php:669 #: application/views/user/edit.php:679 @@ -2736,19 +2790,19 @@ msgid "Disabled" msgstr "已禁用" #: application/controllers/Stationsetup.php:287 -#: application/views/stationsetup/stationsetup.php:47 +#: application/views/stationsetup/stationsetup.php:49 msgid "Set as Active Logbook" msgstr "设置为正在使用的日志" #: application/controllers/Stationsetup.php:289 #: application/views/interface_assets/header.php:606 -#: application/views/stationsetup/stationsetup.php:49 +#: application/views/stationsetup/stationsetup.php:51 #: application/views/view_log/index.php:4 msgid "Active Logbook" msgstr "启用" #: application/controllers/Stationsetup.php:296 -#: application/views/stationsetup/stationsetup.php:58 +#: application/views/stationsetup/stationsetup.php:60 #, php-format msgid "" "Are you sure you want to delete the station logbook %s? You must re-link any " @@ -2758,7 +2812,7 @@ msgstr "" "簿。" #: application/controllers/Stationsetup.php:306 -#: application/views/stationsetup/stationsetup.php:68 +#: application/views/stationsetup/stationsetup.php:70 msgid "View Public Page for Logbook: " msgstr "浏览日志公开页: " @@ -2767,19 +2821,19 @@ msgid "Are you sure you want to delete the public slug?" msgstr "确定要删除此公开个性标识符?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 #, php-format msgid "" "Are you sure you want to make the station profile %s the active station?" msgstr "你确定要将台站配置文件%s 设定为激活状态吗?" #: application/controllers/Stationsetup.php:392 -#: application/views/stationsetup/stationsetup.php:161 +#: application/views/stationsetup/stationsetup.php:163 msgid "Set Active" msgstr "设置启用" #: application/controllers/Stationsetup.php:394 -#: application/views/stationsetup/stationsetup.php:163 +#: application/views/stationsetup/stationsetup.php:165 msgid "Active Station" msgstr "启用" @@ -2787,31 +2841,31 @@ msgstr "启用" #: application/views/interface_assets/header.php:131 #: application/views/qso/edit_ajax.php:34 application/views/qso/index.php:93 #: application/views/simplefle/index.php:28 -#: application/views/stationsetup/stationsetup.php:168 +#: application/views/stationsetup/stationsetup.php:170 #: application/views/user/index.php:82 application/views/user/index.php:86 #: application/views/user/index.php:193 application/views/user/index.php:195 msgid "QSO" msgstr "QSO" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:192 +#: application/views/stationsetup/stationsetup.php:194 msgid "Are you sure you want to delete all QSOs within this station profile?" msgstr "确认删除台站下的所有 QSO?" #: application/controllers/Stationsetup.php:406 -#: application/views/stationsetup/stationsetup.php:142 -#: application/views/stationsetup/stationsetup.php:194 +#: application/views/stationsetup/stationsetup.php:144 +#: application/views/stationsetup/stationsetup.php:196 msgid "Empty Log" msgstr "清空日志" #: application/controllers/Stationsetup.php:410 -#: application/views/stationsetup/stationsetup.php:135 -#: application/views/stationsetup/stationsetup.php:175 +#: application/views/stationsetup/stationsetup.php:137 +#: application/views/stationsetup/stationsetup.php:177 msgid "Copy" msgstr "复制" #: application/controllers/Stationsetup.php:415 -#: application/views/stationsetup/stationsetup.php:198 +#: application/views/stationsetup/stationsetup.php:200 #, php-format msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " @@ -2822,7 +2876,7 @@ msgstr "确定要删除台站 '%s' 吗?这会删除此台站下的所有 QSO #: application/views/qso/edit_ajax.php:236 #: application/views/station_profile/create.php:84 #: application/views/station_profile/edit.php:101 -#: application/views/stationsetup/stationsetup.php:156 +#: application/views/stationsetup/stationsetup.php:158 #: application/views/user/modals/first_login_wizard.php:46 msgid "Please select one" msgstr "请选择一项" @@ -2902,103 +2956,103 @@ msgstr "正在准备 DXCC 例外名单: " msgid "Preparing DXCC Prefixes: " msgstr "正在准备 DXCC 前缀: " -#: application/controllers/Update.php:275 +#: application/controllers/Update.php:277 msgid "DONE" msgstr "完成" -#: application/controllers/Update.php:304 +#: application/controllers/Update.php:326 msgid "Updating..." msgstr "更新中…" -#: application/controllers/Update.php:307 +#: application/controllers/Update.php:329 msgid "Dxcc Entities:" msgstr "DXCC 实体:" -#: application/controllers/Update.php:308 +#: application/controllers/Update.php:330 msgid "Dxcc Exceptions:" msgstr "DXCC 例外:" -#: application/controllers/Update.php:309 +#: application/controllers/Update.php:331 msgid "Dxcc Prefixes:" msgstr "DXCC 前缀:" -#: application/controllers/Update.php:340 +#: application/controllers/Update.php:362 msgid "SCP Update complete. Result: " msgstr "SCP 更新已完成。结果为: " -#: application/controllers/Update.php:342 +#: application/controllers/Update.php:364 msgid "SCP Update failed. Result: " msgstr "SCP 更新失败。结果为: " -#: application/controllers/Update.php:379 +#: application/controllers/Update.php:401 msgid "LoTW Users Update complete. Result: " msgstr "LoTW 用户更新完成。结果为: " -#: application/controllers/Update.php:381 +#: application/controllers/Update.php:403 msgid "LoTW Users Update failed. Result: " msgstr "LoTW 用户更新失败。结果为: " -#: application/controllers/Update.php:416 +#: application/controllers/Update.php:438 msgid "DOK Update complete. Result: " msgstr "DOK 更新完成。结果为: " -#: application/controllers/Update.php:418 +#: application/controllers/Update.php:440 msgid "DOK Update failed. Result: " msgstr "DOK 更新失败。结果为: " -#: application/controllers/Update.php:451 +#: application/controllers/Update.php:473 msgid "SOTA Update complete. Result: " msgstr "SOTA 更新完成。结果为: " -#: application/controllers/Update.php:453 +#: application/controllers/Update.php:475 msgid "SOTA Update failed. Result: " msgstr "SOTA 更新失败。结果为: " -#: application/controllers/Update.php:486 +#: application/controllers/Update.php:508 msgid "WWFF Update complete. Result: " msgstr "WWFF 更新成功。结果为: " -#: application/controllers/Update.php:488 +#: application/controllers/Update.php:510 msgid "WWFF Update failed. Result: " msgstr "WWFF 更新失败。结果为: " -#: application/controllers/Update.php:522 +#: application/controllers/Update.php:544 msgid "HAMqsl Update complete. Result: " msgstr "HAMqsl 更新完成。结果: " -#: application/controllers/Update.php:524 +#: application/controllers/Update.php:546 msgid "HAMqsl Update failed. Result: " msgstr "HAMqsl 更新失败。结果: " -#: application/controllers/Update.php:557 +#: application/controllers/Update.php:579 msgid "POTA Update complete. Result: " msgstr "POTA 更新完成。结果为: " -#: application/controllers/Update.php:559 +#: application/controllers/Update.php:581 msgid "POTA Update failed. Result: " msgstr "POTA 更新失败。结果为: " -#: application/controllers/Update.php:588 +#: application/controllers/Update.php:610 msgid "TLE Update complete. Result: " msgstr "TLE 更新完成。结果为: " -#: application/controllers/Update.php:590 +#: application/controllers/Update.php:612 msgid "TLE Update failed. Result: " msgstr "TLE 更新失败。结果为: " -#: application/controllers/Update.php:617 +#: application/controllers/Update.php:639 msgid "LoTW SAT Update" msgstr "LoTW 卫星数据更新" -#: application/controllers/Update.php:645 +#: application/controllers/Update.php:667 msgid "Update of Hams of Note" msgstr "Hams of Note 更新" -#: application/controllers/Update.php:685 +#: application/controllers/Update.php:707 msgid "VUCC Grid file update complete. Result: " msgstr "VUCC 网格文件更新完成。结果: " -#: application/controllers/Update.php:687 +#: application/controllers/Update.php:709 msgid "VUCC Grid file update failed. Result: " msgstr "VUCC 网格文件更新失败。结果: " @@ -3032,93 +3086,93 @@ msgstr "无效参数!" msgid "Add User" msgstr "添加用户" -#: application/controllers/User.php:320 +#: application/controllers/User.php:322 #, php-format msgid "Username %s already in use!" msgstr "用户名 %s 已被使用!" -#: application/controllers/User.php:323 +#: application/controllers/User.php:325 #, php-format msgid "E-mail %s already in use!" msgstr "E-mail %s 已被使用!" -#: application/controllers/User.php:326 +#: application/controllers/User.php:328 msgid "Invalid Password!" msgstr "无效的密码!" -#: application/controllers/User.php:330 +#: application/controllers/User.php:332 #, php-format msgid "User %s added!" msgstr "用户 %s 已添加!" -#: application/controllers/User.php:334 +#: application/controllers/User.php:336 msgid "Users" msgstr "用户" -#: application/controllers/User.php:433 +#: application/controllers/User.php:435 #: application/views/club/permissions.php:279 msgid "Edit User" msgstr "编辑用户" -#: application/controllers/User.php:981 application/controllers/User.php:984 +#: application/controllers/User.php:994 application/controllers/User.php:997 #, php-format msgid "User %s edited" msgstr "用户 %s 已编辑" -#: application/controllers/User.php:1050 +#: application/controllers/User.php:1063 msgid "Profile" msgstr "个人资料" -#: application/controllers/User.php:1074 +#: application/controllers/User.php:1087 #: application/views/club/permissions.php:336 msgid "Delete User" msgstr "删除用户" -#: application/controllers/User.php:1087 +#: application/controllers/User.php:1100 msgid "User deleted" msgstr "用户已删除" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Could not delete user!" msgstr "无法删除用户!" -#: application/controllers/User.php:1090 +#: application/controllers/User.php:1103 msgid "Database error:" msgstr "数据库错误:" -#: application/controllers/User.php:1115 +#: application/controllers/User.php:1128 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "恭喜你,Wavelog 已成功安装,你可以登录并开始通联了。" -#: application/controllers/User.php:1154 +#: application/controllers/User.php:1167 msgid "This is not allowed!" msgstr "这不被允许!" -#: application/controllers/User.php:1191 application/controllers/User.php:1204 +#: application/controllers/User.php:1204 application/controllers/User.php:1217 msgid "Login failed. Try again." msgstr "登录失败,请重试。" -#: application/controllers/User.php:1212 +#: application/controllers/User.php:1225 #: application/views/interface_assets/header.php:412 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" msgstr "登录" -#: application/controllers/User.php:1250 +#: application/controllers/User.php:1263 msgid "" "You can't login to a clubstation directly. Use your personal account instead." msgstr "你不能直接登录集体台站。使用你的个人账户登录。" -#: application/controllers/User.php:1253 +#: application/controllers/User.php:1266 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "由于多次登录失败,你的账号已锁定。请重置你的密码。" -#: application/controllers/User.php:1257 +#: application/controllers/User.php:1270 msgid "" "Sorry. This instance is currently in maintenance mode. If this message " "appears unexpectedly or keeps showing up, please contact an administrator. " @@ -3127,52 +3181,52 @@ msgstr "" "抱歉,本站正处于维护模式。如果本消息持续显示,请联系本站管理员。当前只允许管" "理员登录。" -#: application/controllers/User.php:1260 +#: application/controllers/User.php:1273 msgid "Incorrect username or password!" msgstr "用户名或密码错误!" -#: application/controllers/User.php:1285 +#: application/controllers/User.php:1298 #, php-format msgid "User %s logged out." msgstr "用户 '%s' 已登出。" -#: application/controllers/User.php:1301 +#: application/controllers/User.php:1314 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" msgstr "台站名称" -#: application/controllers/User.php:1302 application/views/debug/index.php:712 +#: application/controllers/User.php:1315 application/views/debug/index.php:759 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:59 #: application/views/station_profile/edit.php:76 #: application/views/stationsetup/linkedlocations.php:32 -#: application/views/stationsetup/stationsetup.php:128 +#: application/views/stationsetup/stationsetup.php:130 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" msgstr "电台呼号" -#: application/controllers/User.php:1303 +#: application/controllers/User.php:1316 #: application/views/station_profile/create.php:81 #: application/views/station_profile/edit.php:98 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" msgstr "台站 DXCC" -#: application/controllers/User.php:1304 +#: application/controllers/User.php:1317 msgid "Station CQ Zone" msgstr "电台站 CQ 分区" -#: application/controllers/User.php:1305 +#: application/controllers/User.php:1318 msgid "Station ITU Zone" msgstr "电台站 ITU 分区" -#: application/controllers/User.php:1306 +#: application/controllers/User.php:1319 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" msgstr "台站网格坐标" -#: application/controllers/User.php:1327 +#: application/controllers/User.php:1340 #, php-format msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " @@ -3180,47 +3234,47 @@ msgid "" msgstr "" "电台站创建成功!欢迎来到 Wavelog !为了完成电台站设置,请 %s点击这里%s 。" -#: application/controllers/User.php:1330 +#: application/controllers/User.php:1343 msgid "Station setup failed! Please set up your station manually." msgstr "电台站设置失败!请手动设置你的电台站。" -#: application/controllers/User.php:1347 +#: application/controllers/User.php:1360 msgid "Password Reset is disabled on the Demo!" msgstr "在测试实例上,密码重置已禁用!" -#: application/controllers/User.php:1361 +#: application/controllers/User.php:1374 msgid "Forgot Password" msgstr "忘记密码" -#: application/controllers/User.php:1412 +#: application/controllers/User.php:1425 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." msgstr "邮件配置有误。" -#: application/controllers/User.php:1416 application/controllers/User.php:1421 +#: application/controllers/User.php:1429 application/controllers/User.php:1434 msgid "Password Reset Processed." msgstr "密码重置已处理。" -#: application/controllers/User.php:1522 +#: application/controllers/User.php:1535 #: application/views/user/forgot_password.php:51 #: application/views/user/reset_password.php:8 #: application/views/user/reset_password.php:35 msgid "Reset Password" msgstr "重置密码" -#: application/controllers/User.php:1543 +#: application/controllers/User.php:1556 #, php-format msgid "" "Couldn't set account to this username. Please try another one than \"%s\"." msgstr "无法为账户设置给定的用户名。请尝试使用除“%s”以外的用户名。" -#: application/controllers/User.php:1552 +#: application/controllers/User.php:1565 #, php-format msgid "" "Couldn't set account to this email. Please try another address than \"%s\"." msgstr "无法为账户设置给定的电子邮件地址。请尝试使用除“%s”以外的地址。" -#: application/controllers/User.php:1591 +#: application/controllers/User.php:1604 #, php-format msgid "" "You currently can't impersonate another user. You need to set %s to %s in " @@ -3228,54 +3282,54 @@ msgid "" msgstr "" "你当前无权以其他用户身份操作。你需要在你的 config.php 中将 %s 设置为 %s !" -#: application/controllers/User.php:1605 +#: application/controllers/User.php:1618 #: application/views/user/modals/admin_impersonate_modal.php:36 msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "无法进行此操作,请在 config.php 里设置 encryption_key!" -#: application/controllers/User.php:1612 +#: application/controllers/User.php:1625 msgid "Invalid Hash" msgstr "Hash 无效" -#: application/controllers/User.php:1625 +#: application/controllers/User.php:1638 msgid "The impersonation hash is too old. Please try again." msgstr "用户 Hash 已过期,请重试。" -#: application/controllers/User.php:1632 +#: application/controllers/User.php:1645 msgid "" "You can't impersonate another user while you're not logged in as the source " "user" msgstr "由于你未登录为原用户,故无法切换至另一个用户角色" -#: application/controllers/User.php:1638 +#: application/controllers/User.php:1651 msgid "There was a problem with your session. Please try again." msgstr "会话出现问题,请重试。" -#: application/controllers/User.php:1645 +#: application/controllers/User.php:1658 msgid "The requested user to impersonate does not exist" msgstr "切换的用户不存在" -#: application/controllers/User.php:1666 +#: application/controllers/User.php:1679 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "无法确认集体台站的正确角色。请重新登录后再试。" -#: application/controllers/User.php:1711 application/controllers/User.php:1723 -#: application/controllers/User.php:1729 application/controllers/User.php:1738 -#: application/controllers/User.php:1746 +#: application/controllers/User.php:1724 application/controllers/User.php:1736 +#: application/controllers/User.php:1742 application/controllers/User.php:1751 +#: application/controllers/User.php:1759 msgid "Ups.. Something went wrong. Try to log back in." msgstr "呃… 发生了一些问题。请登录后重试。" -#: application/controllers/User.php:1752 +#: application/controllers/User.php:1765 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "快速返回功能因安全哈希过期而被禁用,请重新登录以继续操作。" -#: application/controllers/User.php:1768 +#: application/controllers/User.php:1781 #, php-format msgid "" "You have been logged out of the account %s. Welcome back, %s, to your " @@ -3287,7 +3341,7 @@ msgid "Satellite Gridsquare Map" msgstr "卫星网格地图" #: application/controllers/Visitor.php:412 -#: application/views/stationsetup/stationsetup.php:38 +#: application/views/stationsetup/stationsetup.php:39 msgid "Public Search" msgstr "公开搜索" @@ -3336,14 +3390,19 @@ msgstr "通过标识找到多个用户" msgid "Gridsquare Zone finder" msgstr "网格区域查找器" -#: application/libraries/Callbook.php:139 +#: application/libraries/Callbook.php:60 +msgid "Lookup not configured. Please review configuration." +msgstr "查找功能未配置,请检查配置。" + +#: application/libraries/Callbook.php:61 +#, php-format +msgid "Error obtaining a session key for callbook. Error: %s" +msgstr "获取呼号簿会话密钥时出错:%s" + +#: application/libraries/Callbook.php:200 msgid "QRZCQ Error" msgstr "QRZCQ 错误" -#: application/libraries/Callbook.php:179 -msgid "Error obtaining a session key for HamQTH query" -msgstr "获取 HamQTH 查询会话密钥错误" - #: application/libraries/Cbr_parser.php:111 #: application/libraries/Cbr_parser.php:160 msgid "Broken CBR file - no valid exchange or callsigns found" @@ -3492,41 +3551,41 @@ msgstr "HRDlog:无台站配置信息。" msgid "Station not accessible" msgstr "台站不可用" -#: application/models/Logbook_model.php:1293 +#: application/models/Logbook_model.php:1359 msgid "Station ID not allowed" msgstr "集体台站 ID 有误" -#: application/models/Logbook_model.php:1298 +#: application/models/Logbook_model.php:1364 msgid "No Call given" msgstr "未提供呼号" -#: application/models/Logbook_model.php:1368 -#: application/models/Logbook_model.php:1572 +#: application/models/Logbook_model.php:1434 +#: application/models/Logbook_model.php:1638 msgid "DXCC has to be Numeric" msgstr "DXCC 应该是数字" -#: application/models/Logbook_model.php:4886 +#: application/models/Logbook_model.php:4765 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "导入 QSO 时出现错误:本台呼号 %s 对方呼号 %s %s,已跳过" -#: application/models/Logbook_model.php:4900 +#: application/models/Logbook_model.php:4779 msgid "" "You tried to import a QSO without valid date. This QSO wasn't imported. It's " "invalid" msgstr "导入QSO时使用了无效日期,该QSO未被导入。这是无效的" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "QSO on" msgstr "QSO 时间" -#: application/models/Logbook_model.php:4909 +#: application/models/Logbook_model.php:4788 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" msgstr "试图导入的 QSO 不存在对方呼号(CALL)。此 QSO 无效,未导入" -#: application/models/Logbook_model.php:4958 +#: application/models/Logbook_model.php:4837 #, php-format msgid "" "QSO on %s: You tried to import a QSO without any given Band. This QSO wasn't " @@ -3534,64 +3593,64 @@ msgid "" msgstr "" "在 %s 上的 QSO:你尝试导入一个未指定频段的 QSO。该 QSO 未被导入。此 QSO 无效" -#: application/models/Logbook_model.php:5231 +#: application/models/Logbook_model.php:5110 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "qslrdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:5242 +#: application/models/Logbook_model.php:5121 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "qslsdate 字段错误(YYYYMMDD)" -#: application/models/Logbook_model.php:5303 +#: application/models/Logbook_model.php:5182 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "clublog_qso_upload_date 字段错误( YYYYMMDD)" -#: application/models/Logbook_model.php:5676 +#: application/models/Logbook_model.php:5555 #: application/views/simplefle/index.php:41 msgid "Duplicate for" msgstr "内容重复" -#: application/models/Logbook_model.php:5741 -#: application/models/Logbook_model.php:5836 +#: application/models/Logbook_model.php:5620 +#: application/models/Logbook_model.php:5715 msgid "QSO could not be matched" msgstr "QSO 无法匹配" -#: application/models/Logbook_model.php:5749 +#: application/models/Logbook_model.php:5628 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "已经通过 LoTW/Clublog/eQSL/竞赛 确认" -#: application/models/Logbook_model.php:5755 +#: application/models/Logbook_model.php:5634 msgid "confirmed by award manager" msgstr "已经通过奖项管理员确认" -#: application/models/Logbook_model.php:5759 +#: application/models/Logbook_model.php:5638 msgid "confirmed by cross-check of DCL data" msgstr "已经通过 DCL 数据交叉检查确认" -#: application/models/Logbook_model.php:5763 +#: application/models/Logbook_model.php:5642 msgid "confirmation pending" msgstr "等待确认" -#: application/models/Logbook_model.php:5766 +#: application/models/Logbook_model.php:5645 msgid "unconfirmed" msgstr "未确认" -#: application/models/Logbook_model.php:5769 +#: application/models/Logbook_model.php:5648 #: application/views/satellite/index.php:82 #: application/views/satellite/satinfo.php:41 -#: application/views/view_log/qso.php:293 +#: application/views/view_log/qso.php:305 msgid "unknown" msgstr "未知" -#: application/models/Logbook_model.php:5839 +#: application/models/Logbook_model.php:5718 msgid "POTA reference already in log" msgstr "日志中已存在 POTA 编号" -#: application/models/Logbook_model.php:5842 +#: application/models/Logbook_model.php:5721 msgid "QSO updated" msgstr "QSO已上传" -#: application/models/Logbook_model.php:6236 +#: application/models/Logbook_model.php:6118 #: application/views/activated_gridmap/index.php:114 #: application/views/awards/ffma/index.php:42 #: application/views/awards/gridmaster/index.php:58 @@ -3605,7 +3664,7 @@ msgstr "QSO已上传" msgid "Bearing" msgstr "方位角" -#: application/models/Logbookadvanced_model.php:1709 +#: application/models/Logbookadvanced_model.php:1740 msgid "VuccGrids table is empty. Please import the VUCC grids data first." msgstr "VuccGrids 表为空。请先导入 VUCC 网格数据。" @@ -3741,42 +3800,40 @@ msgstr "差异" #: application/views/activated_gridmap/index.php:45 #: application/views/activators/index.php:13 #: application/views/adif/import.php:262 -#: application/views/awards/cq/index.php:131 -#: application/views/awards/cq/index.php:144 +#: application/views/awards/cq/index.php:148 #: application/views/awards/dok/index.php:95 -#: application/views/awards/dxcc/index.php:189 -#: application/views/awards/dxcc/index.php:205 -#: application/views/awards/dxcc/index.php:221 +#: application/views/awards/dxcc/index.php:190 +#: application/views/awards/dxcc/index.php:206 +#: application/views/awards/dxcc/index.php:222 #: application/views/awards/helvetia/index.php:94 #: application/views/awards/iota/index.php:137 -#: application/views/awards/itu/index.php:81 -#: application/views/awards/itu/index.php:95 +#: application/views/awards/itu/index.php:150 #: application/views/awards/jcc/index.php:93 #: application/views/awards/rac/index.php:85 #: application/views/awards/wab/index.php:26 #: application/views/awards/wab/index.php:38 #: application/views/awards/wab/index.php:48 #: application/views/awards/wab/index.php:57 +#: application/views/awards/wac/index.php:66 #: application/views/awards/wac/index.php:82 #: application/views/awards/wac/index.php:98 -#: application/views/awards/wac/index.php:114 -#: application/views/awards/wae/index.php:94 -#: application/views/awards/wae/index.php:110 -#: application/views/awards/wae/index.php:125 +#: application/views/awards/wae/index.php:133 +#: application/views/awards/wae/index.php:149 +#: application/views/awards/wae/index.php:165 #: application/views/awards/waja/index.php:98 #: application/views/awards/wap/index.php:92 -#: application/views/awards/wapc/index.php:83 +#: application/views/awards/wapc/index.php:98 #: application/views/awards/was/index.php:96 #: application/views/awards/wpx/index.php:93 #: application/views/awards/wpx/index.php:107 #: application/views/awards/wpx/index.php:126 -#: application/views/bandmap/list.php:101 -#: application/views/bandmap/list.php:295 -#: application/views/bandmap/list.php:303 -#: application/views/bandmap/list.php:325 -#: application/views/bandmap/list.php:337 -#: application/views/bandmap/list.php:351 -#: application/views/bandmap/list.php:365 application/views/bands/index.php:123 +#: application/views/bandmap/list.php:102 +#: application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:326 +#: application/views/bandmap/list.php:338 +#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:366 application/views/bands/index.php:123 #: application/views/cabrillo/index.php:69 #: application/views/callstats/index.php:10 #: application/views/callstats/index.php:24 @@ -3805,33 +3862,33 @@ msgstr "差异" #: application/views/gridmap/index.php:144 #: application/views/gridmap/index.php:158 #: application/views/interface_assets/footer.php:48 -#: application/views/interface_assets/footer.php:1551 -#: application/views/interface_assets/footer.php:1690 +#: application/views/interface_assets/footer.php:1525 +#: application/views/interface_assets/footer.php:1664 #: 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:355 -#: application/views/logbookadvanced/index.php:366 -#: application/views/logbookadvanced/index.php:377 -#: application/views/logbookadvanced/index.php:386 -#: application/views/logbookadvanced/index.php:395 -#: application/views/logbookadvanced/index.php:420 -#: application/views/logbookadvanced/index.php:434 -#: application/views/logbookadvanced/index.php:488 -#: application/views/logbookadvanced/index.php:551 -#: application/views/logbookadvanced/index.php:562 -#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:361 +#: application/views/logbookadvanced/index.php:372 +#: application/views/logbookadvanced/index.php:383 +#: application/views/logbookadvanced/index.php:392 +#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:426 +#: application/views/logbookadvanced/index.php:440 +#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:561 +#: application/views/logbookadvanced/index.php:572 #: application/views/logbookadvanced/index.php:583 -#: application/views/logbookadvanced/index.php:595 -#: application/views/logbookadvanced/index.php:606 -#: application/views/logbookadvanced/index.php:618 -#: application/views/logbookadvanced/index.php:629 -#: application/views/logbookadvanced/index.php:642 -#: application/views/logbookadvanced/index.php:653 -#: application/views/logbookadvanced/index.php:664 -#: application/views/logbookadvanced/index.php:673 -#: application/views/logbookadvanced/index.php:696 -#: application/views/logbookadvanced/index.php:705 +#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:605 +#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:628 +#: application/views/logbookadvanced/index.php:639 +#: application/views/logbookadvanced/index.php:652 +#: application/views/logbookadvanced/index.php:663 +#: application/views/logbookadvanced/index.php:674 +#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:715 #: application/views/lotw/import.php:55 #: application/views/oqrs/showrequests.php:33 #: application/views/oqrs/showrequests.php:49 @@ -3852,7 +3909,7 @@ msgstr "差异" #: application/views/timeplotter/index.php:17 #: application/views/timeplotter/index.php:27 #: application/views/timeplotter/index.php:47 -#: application/views/user/edit.php:806 +#: application/views/user/edit.php:814 #: application/views/visitor/layout/footer.php:173 msgid "All" msgstr "所有" @@ -3896,12 +3953,12 @@ msgstr "周期" #: application/views/distances/index.php:53 #: application/views/gridmap/index.php:78 #: application/views/logbookadvanced/edit.php:14 -#: application/views/logbookadvanced/index.php:393 -#: application/views/logbookadvanced/index.php:999 -#: application/views/logbookadvanced/useroptions.php:277 +#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:1012 +#: application/views/logbookadvanced/useroptions.php:283 #: application/views/timeline/index.php:79 application/views/user/edit.php:352 #: application/views/view_log/partial/log_ajax.php:21 -#: application/views/view_log/qso.php:236 +#: application/views/view_log/qso.php:248 msgid "Propagation" msgstr "传播方式" @@ -3917,7 +3974,7 @@ msgstr "全部(除卫星以外)" #: application/views/gridmap/index.php:82 #: application/views/logbookadvanced/edit.php:209 #: application/views/logbookadvanced/edit.php:217 -#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:495 #: application/views/timeline/index.php:84 msgid "None/Empty" msgstr "无/空" @@ -3927,11 +3984,11 @@ msgstr "无/空" #: application/views/distances/index.php:59 #: application/views/dxatlas/index.php:95 #: application/views/gridmap/index.php:84 application/views/kml/index.php:80 -#: application/views/logbookadvanced/index.php:397 +#: application/views/logbookadvanced/index.php:403 #: application/views/qso/edit_ajax.php:192 application/views/qso/index.php:540 #: application/views/timeline/index.php:85 #: application/views/view_log/partial/log_ajax.php:55 -#: application/views/view_log/qso.php:239 +#: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Aircraft Scatter" msgstr "Aircraft Scatter" @@ -3941,11 +3998,11 @@ msgstr "Aircraft Scatter" #: application/views/distances/index.php:60 #: application/views/dxatlas/index.php:96 #: application/views/gridmap/index.php:85 application/views/kml/index.php:81 -#: application/views/logbookadvanced/index.php:398 +#: application/views/logbookadvanced/index.php:404 #: application/views/qso/edit_ajax.php:193 application/views/qso/index.php:541 #: application/views/timeline/index.php:86 #: application/views/view_log/partial/log_ajax.php:58 -#: application/views/view_log/qso.php:242 +#: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Aurora" msgstr "Aurora" @@ -3955,11 +4012,11 @@ msgstr "Aurora" #: application/views/distances/index.php:61 #: application/views/dxatlas/index.php:97 #: application/views/gridmap/index.php:86 application/views/kml/index.php:82 -#: application/views/logbookadvanced/index.php:399 +#: application/views/logbookadvanced/index.php:405 #: application/views/qso/edit_ajax.php:194 application/views/qso/index.php:542 #: application/views/timeline/index.php:87 #: application/views/view_log/partial/log_ajax.php:61 -#: application/views/view_log/qso.php:245 +#: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "Aurora-E" msgstr "Aurora-E" @@ -3969,11 +4026,11 @@ msgstr "Aurora-E" #: application/views/distances/index.php:62 #: application/views/dxatlas/index.php:98 #: application/views/gridmap/index.php:87 application/views/kml/index.php:83 -#: application/views/logbookadvanced/index.php:400 +#: application/views/logbookadvanced/index.php:406 #: application/views/qso/edit_ajax.php:195 application/views/qso/index.php:543 #: application/views/timeline/index.php:88 #: application/views/view_log/partial/log_ajax.php:64 -#: application/views/view_log/qso.php:248 +#: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Back scatter" msgstr "Back scatter" @@ -3983,11 +4040,11 @@ msgstr "Back scatter" #: application/views/distances/index.php:63 #: application/views/dxatlas/index.php:99 #: application/views/gridmap/index.php:88 application/views/kml/index.php:84 -#: application/views/logbookadvanced/index.php:401 +#: application/views/logbookadvanced/index.php:407 #: application/views/qso/edit_ajax.php:196 application/views/qso/index.php:544 #: application/views/timeline/index.php:89 #: application/views/view_log/partial/log_ajax.php:67 -#: application/views/view_log/qso.php:251 +#: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "EchoLink" msgstr "EchoLink" @@ -3997,11 +4054,11 @@ msgstr "EchoLink" #: application/views/distances/index.php:64 #: application/views/dxatlas/index.php:100 #: application/views/gridmap/index.php:89 application/views/kml/index.php:85 -#: application/views/logbookadvanced/index.php:402 +#: application/views/logbookadvanced/index.php:408 #: application/views/qso/edit_ajax.php:197 application/views/qso/index.php:545 #: application/views/timeline/index.php:90 #: application/views/view_log/partial/log_ajax.php:70 -#: application/views/view_log/qso.php:254 +#: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" msgstr "EME" @@ -4011,11 +4068,11 @@ msgstr "EME" #: application/views/distances/index.php:65 #: application/views/dxatlas/index.php:101 #: application/views/gridmap/index.php:90 application/views/kml/index.php:86 -#: application/views/logbookadvanced/index.php:403 +#: application/views/logbookadvanced/index.php:409 #: application/views/qso/edit_ajax.php:198 application/views/qso/index.php:546 #: application/views/timeline/index.php:91 #: application/views/view_log/partial/log_ajax.php:73 -#: application/views/view_log/qso.php:257 +#: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Sporadic E" msgstr "Sporadic E" @@ -4025,11 +4082,11 @@ msgstr "Sporadic E" #: application/views/distances/index.php:66 #: application/views/dxatlas/index.php:102 #: application/views/gridmap/index.php:91 application/views/kml/index.php:87 -#: application/views/logbookadvanced/index.php:404 +#: application/views/logbookadvanced/index.php:410 #: application/views/qso/edit_ajax.php:199 application/views/qso/index.php:547 #: application/views/timeline/index.php:92 #: application/views/view_log/partial/log_ajax.php:76 -#: application/views/view_log/qso.php:260 +#: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" msgstr "Field Aligned Irregularities" @@ -4039,11 +4096,11 @@ msgstr "Field Aligned Irregularities" #: application/views/distances/index.php:67 #: application/views/dxatlas/index.php:103 #: application/views/gridmap/index.php:92 application/views/kml/index.php:88 -#: application/views/logbookadvanced/index.php:405 +#: application/views/logbookadvanced/index.php:411 #: application/views/qso/edit_ajax.php:200 application/views/qso/index.php:548 #: application/views/timeline/index.php:93 #: application/views/view_log/partial/log_ajax.php:79 -#: application/views/view_log/qso.php:263 +#: application/views/view_log/qso.php:275 msgctxt "Propagation Mode" msgid "F2 Reflection" msgstr "F2 Reflection" @@ -4053,11 +4110,11 @@ msgstr "F2 Reflection" #: application/views/distances/index.php:68 #: application/views/dxatlas/index.php:104 #: application/views/gridmap/index.php:93 application/views/kml/index.php:89 -#: application/views/logbookadvanced/index.php:406 +#: application/views/logbookadvanced/index.php:412 #: application/views/qso/edit_ajax.php:201 application/views/qso/index.php:549 #: application/views/timeline/index.php:94 #: application/views/view_log/partial/log_ajax.php:82 -#: application/views/view_log/qso.php:266 +#: application/views/view_log/qso.php:278 msgctxt "Propagation Mode" msgid "Internet-assisted" msgstr "Internet-assisted" @@ -4067,11 +4124,11 @@ msgstr "Internet-assisted" #: application/views/distances/index.php:69 #: application/views/dxatlas/index.php:105 #: application/views/gridmap/index.php:94 application/views/kml/index.php:90 -#: application/views/logbookadvanced/index.php:407 +#: application/views/logbookadvanced/index.php:413 #: application/views/qso/edit_ajax.php:202 application/views/qso/index.php:550 #: application/views/timeline/index.php:95 #: application/views/view_log/partial/log_ajax.php:85 -#: application/views/view_log/qso.php:269 +#: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Ionoscatter" msgstr "Ionoscatter" @@ -4081,11 +4138,11 @@ msgstr "Ionoscatter" #: application/views/distances/index.php:70 #: application/views/dxatlas/index.php:106 #: application/views/gridmap/index.php:95 application/views/kml/index.php:91 -#: application/views/logbookadvanced/index.php:408 +#: application/views/logbookadvanced/index.php:414 #: application/views/qso/edit_ajax.php:203 application/views/qso/index.php:551 #: application/views/timeline/index.php:96 #: application/views/view_log/partial/log_ajax.php:88 -#: application/views/view_log/qso.php:272 +#: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "IRLP" msgstr "IRLP" @@ -4095,11 +4152,11 @@ msgstr "IRLP" #: application/views/distances/index.php:71 #: application/views/dxatlas/index.php:107 #: application/views/gridmap/index.php:96 application/views/kml/index.php:92 -#: application/views/logbookadvanced/index.php:409 +#: application/views/logbookadvanced/index.php:415 #: application/views/qso/edit_ajax.php:204 application/views/qso/index.php:552 #: application/views/timeline/index.php:97 #: application/views/view_log/partial/log_ajax.php:91 -#: application/views/view_log/qso.php:275 +#: application/views/view_log/qso.php:287 msgctxt "Propagation Mode" msgid "Meteor scatter" msgstr "Meteor scatter" @@ -4109,11 +4166,11 @@ msgstr "Meteor scatter" #: application/views/distances/index.php:72 #: application/views/dxatlas/index.php:108 #: application/views/gridmap/index.php:97 application/views/kml/index.php:93 -#: application/views/logbookadvanced/index.php:410 +#: application/views/logbookadvanced/index.php:416 #: application/views/qso/edit_ajax.php:205 application/views/qso/index.php:553 #: application/views/timeline/index.php:98 #: application/views/view_log/partial/log_ajax.php:94 -#: application/views/view_log/qso.php:278 +#: application/views/view_log/qso.php:290 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" msgstr "Terrestrial or atmospheric repeater or transponder" @@ -4123,11 +4180,11 @@ msgstr "Terrestrial or atmospheric repeater or transponder" #: application/views/distances/index.php:73 #: application/views/dxatlas/index.php:109 #: application/views/gridmap/index.php:98 application/views/kml/index.php:94 -#: application/views/logbookadvanced/index.php:411 +#: application/views/logbookadvanced/index.php:417 #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:554 #: application/views/timeline/index.php:99 #: application/views/view_log/partial/log_ajax.php:97 -#: application/views/view_log/qso.php:281 +#: application/views/view_log/qso.php:293 msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Rain scatter" @@ -4137,11 +4194,11 @@ msgstr "Rain scatter" #: application/views/distances/index.php:74 #: application/views/dxatlas/index.php:110 #: application/views/gridmap/index.php:99 application/views/kml/index.php:95 -#: application/views/logbookadvanced/index.php:412 +#: application/views/logbookadvanced/index.php:418 #: application/views/qso/edit_ajax.php:207 application/views/qso/index.php:555 #: application/views/timeline/index.php:100 #: application/views/view_log/partial/log_ajax.php:100 -#: application/views/view_log/qso.php:284 +#: application/views/view_log/qso.php:296 msgctxt "Propagation Mode" msgid "Satellite" msgstr "Satellite" @@ -4151,11 +4208,11 @@ msgstr "Satellite" #: application/views/distances/index.php:75 #: application/views/dxatlas/index.php:111 #: application/views/gridmap/index.php:100 application/views/kml/index.php:96 -#: application/views/logbookadvanced/index.php:413 +#: application/views/logbookadvanced/index.php:419 #: application/views/qso/edit_ajax.php:208 application/views/qso/index.php:556 #: application/views/timeline/index.php:101 #: application/views/view_log/partial/log_ajax.php:103 -#: application/views/view_log/qso.php:287 +#: application/views/view_log/qso.php:299 msgctxt "Propagation Mode" msgid "Trans-equatorial" msgstr "Trans-equatorial" @@ -4165,11 +4222,11 @@ msgstr "Trans-equatorial" #: application/views/distances/index.php:76 #: application/views/dxatlas/index.php:112 #: application/views/gridmap/index.php:101 application/views/kml/index.php:97 -#: application/views/logbookadvanced/index.php:414 +#: application/views/logbookadvanced/index.php:420 #: application/views/qso/edit_ajax.php:209 application/views/qso/index.php:557 #: application/views/timeline/index.php:102 #: application/views/view_log/partial/log_ajax.php:106 -#: application/views/view_log/qso.php:290 +#: application/views/view_log/qso.php:302 msgctxt "Propagation Mode" msgid "Tropospheric ducting" msgstr "Tropospheric ducting" @@ -4178,18 +4235,18 @@ msgstr "Tropospheric ducting" #: application/views/activators/index.php:53 #: application/views/awards/cq/index.php:46 #: application/views/awards/dok/index.php:128 -#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/dxcc/index.php:43 #: application/views/awards/helvetia/index.php:116 #: application/views/awards/iota/index.php:159 -#: application/views/awards/itu/index.php:117 +#: application/views/awards/itu/index.php:48 #: application/views/awards/jcc/index.php:115 #: application/views/awards/pl_polska/index.php:93 #: application/views/awards/rac/index.php:107 -#: application/views/awards/wac/index.php:136 -#: application/views/awards/wae/index.php:147 +#: application/views/awards/wac/index.php:119 +#: application/views/awards/wae/index.php:33 #: application/views/awards/waja/index.php:120 #: application/views/awards/wap/index.php:114 -#: application/views/awards/wapc/index.php:105 +#: application/views/awards/wapc/index.php:120 #: application/views/awards/was/index.php:118 #: application/views/awards/wpx/index.php:14 #: application/views/callstats/index.php:107 @@ -4201,21 +4258,21 @@ msgstr "Tropospheric ducting" #: application/views/statistics/antennaanalytics.php:110 #: application/views/statistics/initials.php:30 #: application/views/timeline/index.php:128 -#: application/views/timeline/index.php:219 -#: application/views/timeline/index.php:250 -#: application/views/timeline/index.php:278 -#: application/views/timeline/index.php:312 -#: application/views/timeline/index.php:340 +#: application/views/timeline/index.php:225 +#: application/views/timeline/index.php:262 +#: application/views/timeline/index.php:296 +#: application/views/timeline/index.php:336 #: application/views/timeline/index.php:370 +#: application/views/timeline/index.php:406 #: application/views/timeplotter/index.php:59 msgid "Show" msgstr "显示" #: application/views/activated_gridmap/index.php:24 -#: application/views/awards/dxcc/index.php:186 +#: application/views/awards/dxcc/index.php:187 #: application/views/awards/wab/index.php:36 -#: application/views/awards/wac/index.php:79 -#: application/views/awards/wae/index.php:91 +#: application/views/awards/wac/index.php:63 +#: application/views/awards/wae/index.php:130 #: application/views/awards/wpx/index.php:91 #: application/views/callstats/index.php:21 #: application/views/components/hamsat/table.php:29 @@ -4226,7 +4283,7 @@ msgstr "显示" #: application/views/interface_assets/header.php:210 #: application/views/logbookadvanced/dupesearchdialog.php:41 #: application/views/logbookadvanced/edit.php:17 -#: application/views/logbookadvanced/index.php:375 +#: application/views/logbookadvanced/index.php:381 #: application/views/qso/award_tabs.php:69 #: application/views/satellite/flightpath.php:40 #: application/views/satellite/pass.php:16 @@ -4235,19 +4292,25 @@ msgstr "显示" #: application/views/satellite/skedtable.php:35 #: application/views/sattimers/index.php:38 #: application/views/statistics/index.php:27 +#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:245 +#: application/views/timeline/index.php:279 +#: application/views/timeline/index.php:317 +#: application/views/timeline/index.php:353 +#: application/views/timeline/index.php:388 msgid "Satellite" msgstr "卫星" #: application/views/activated_gridmap/index.php:34 -#: application/views/awards/dxcc/index.php:202 +#: application/views/awards/dxcc/index.php:203 #: application/views/awards/wab/index.php:46 -#: application/views/awards/wac/index.php:95 -#: application/views/awards/wae/index.php:107 +#: application/views/awards/wac/index.php:79 +#: application/views/awards/wae/index.php:146 #: application/views/awards/wpx/index.php:105 #: application/views/callstats/index.php:35 #: application/views/distances/index.php:44 #: application/views/gridmap/index.php:125 -#: application/views/logbookadvanced/index.php:384 +#: application/views/logbookadvanced/index.php:390 #: application/views/satellite/create.php:35 #: application/views/satellite/edit.php:19 #: application/views/satellite/index.php:54 @@ -4267,22 +4330,22 @@ msgstr "确认" #: application/views/activated_gridmap/index.php:86 #: application/views/awards/cq/index.php:122 #: application/views/awards/dok/index.php:68 -#: application/views/awards/dxcc/index.php:128 +#: application/views/awards/dxcc/index.php:129 #: application/views/awards/helvetia/index.php:71 #: application/views/awards/iota/index.php:76 -#: application/views/awards/itu/index.php:72 +#: application/views/awards/itu/index.php:124 #: application/views/awards/jcc/index.php:66 #: application/views/awards/pl_polska/index.php:80 #: application/views/awards/rac/index.php:62 #: application/views/awards/wab/index.php:98 -#: application/views/awards/wac/index.php:57 -#: application/views/awards/wae/index.php:67 +#: application/views/awards/wac/index.php:38 +#: application/views/awards/wae/index.php:106 #: application/views/awards/waja/index.php:71 #: application/views/awards/wap/index.php:69 -#: application/views/awards/wapc/index.php:56 +#: application/views/awards/wapc/index.php:71 #: application/views/awards/was/index.php:73 #: application/views/awards/wpx/index.php:40 -#: application/views/gridmap/index.php:202 application/views/user/edit.php:848 +#: application/views/gridmap/index.php:202 application/views/user/edit.php:856 msgid "QRZ.com" msgstr "QRZ.com" @@ -4328,11 +4391,11 @@ msgstr "最低数量" #: application/views/awards/73on73/index.php:66 #: application/views/awards/counties/details.php:27 #: application/views/awards/counties/index.php:47 -#: application/views/awards/cq/index.php:241 +#: application/views/awards/cq/index.php:272 #: application/views/awards/dok/index.php:197 #: application/views/awards/helvetia/index.php:204 #: application/views/awards/iota/index.php:302 -#: application/views/awards/itu/index.php:202 +#: application/views/awards/itu/index.php:274 #: application/views/awards/jcc/index.php:238 #: application/views/awards/pl_polska/index.php:377 #: application/views/awards/pota/index.php:68 @@ -4341,11 +4404,10 @@ msgstr "最低数量" #: application/views/awards/sota/index.php:60 #: application/views/awards/vucc/band.php:41 #: application/views/awards/vucc/index.php:40 -#: application/views/awards/wac/index.php:200 -#: application/views/awards/wae/index.php:217 +#: application/views/awards/wae/index.php:296 #: application/views/awards/waja/index.php:206 #: application/views/awards/wap/index.php:202 -#: application/views/awards/wapc/index.php:168 +#: application/views/awards/wapc/index.php:206 #: application/views/awards/was/index.php:207 #: application/views/awards/wpx/index.php:228 #: application/views/awards/wwff/index.php:65 @@ -4365,7 +4427,8 @@ msgstr "未找到!" #: application/views/awards/sota/index.php:33 #: application/views/awards/wpx/wpx_details.php:20 #: application/views/awards/wwff/index.php:35 -#: application/views/bandmap/list.php:27 application/views/bandmap/list.php:165 +#: application/views/bandmap/list.php:28 application/views/bandmap/list.php:166 +#: application/views/bandmap/list.php:555 #: application/views/cabrillo/index.php:31 #: application/views/callstats/index.php:147 #: application/views/calltester/comparison_result.php:60 @@ -4381,12 +4444,13 @@ msgstr "未找到!" #: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:42 #: application/views/eqslcard/index.php:28 #: application/views/gridmap/index.php:56 application/views/hamsat/index.php:30 -#: application/views/labels/index.php:123 +#: application/views/labels/index.php:124 #: application/views/logbookadvanced/checkresult.php:101 #: application/views/logbookadvanced/checkresult.php:159 #: application/views/logbookadvanced/checkresult.php:240 #: application/views/logbookadvanced/checkresult.php:316 #: application/views/logbookadvanced/checkresult.php:387 +#: application/views/logbookadvanced/dbtoolsdialog.php:22 #: application/views/logbookadvanced/qslcarousel.php:30 #: application/views/logbookadvanced/showUpdateResult.php:43 #: application/views/lotw_views/index.php:32 @@ -4410,7 +4474,7 @@ msgstr "未找到!" #: application/views/update/hamsofnote.php:7 #: application/views/user/edit.php:137 application/views/user/index.php:28 #: application/views/user/index.php:153 application/views/user/profile.php:29 -#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:672 +#: application/views/view_log/qso.php:83 application/views/view_log/qso.php:684 #: application/views/zonechecker/result.php:50 msgid "Callsign" msgstr "呼号" @@ -4421,12 +4485,12 @@ msgstr "数量" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:151 -#: application/views/timeline/index.php:203 -#: application/views/timeline/index.php:238 -#: application/views/timeline/index.php:266 -#: application/views/timeline/index.php:298 -#: application/views/timeline/index.php:328 -#: application/views/timeline/index.php:357 +#: application/views/timeline/index.php:206 +#: application/views/timeline/index.php:247 +#: application/views/timeline/index.php:281 +#: application/views/timeline/index.php:319 +#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:390 msgid "Show QSOs" msgstr "显示 QSO" @@ -4492,7 +4556,7 @@ msgstr "" #: application/views/contesting/index.php:103 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:242 -#: application/views/debug/index.php:707 +#: application/views/debug/index.php:754 #: application/views/distancerecords/index.php:16 #: application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 @@ -4516,11 +4580,11 @@ msgstr "" #: application/views/simplefle/index.php:154 #: application/views/statistics/initialresult.php:15 #: application/views/timeline/index.php:198 -#: application/views/timeline/index.php:236 -#: application/views/timeline/index.php:264 -#: application/views/timeline/index.php:294 -#: application/views/timeline/index.php:326 -#: application/views/timeline/index.php:354 +#: application/views/timeline/index.php:242 +#: application/views/timeline/index.php:276 +#: application/views/timeline/index.php:312 +#: application/views/timeline/index.php:350 +#: application/views/timeline/index.php:384 #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:196 #: application/views/visitor/index.php:151 @@ -4534,12 +4598,12 @@ msgstr "日期" #: application/views/awards/pota/index.php:34 #: application/views/awards/sota/index.php:32 #: application/views/awards/wwff/index.php:34 -#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:137 #: application/views/components/hamsat/table.php:26 #: application/views/contesting/index.php:108 #: application/views/contesting/index.php:262 #: application/views/dashboard/index.php:245 -#: application/views/debug/index.php:708 +#: application/views/debug/index.php:755 #: application/views/distancerecords/index.php:17 #: application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 @@ -4554,7 +4618,7 @@ msgstr "日期" #: application/views/search/search_result_ajax.php:91 #: application/views/simplefle/index.php:155 #: application/views/statistics/initialresult.php:16 -#: application/views/timeline/index.php:355 +#: application/views/timeline/index.php:385 #: application/views/timeplotter/index.php:5 #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:198 @@ -4567,7 +4631,7 @@ msgstr "时间" #: application/views/awards/vucc/band.php:18 #: application/views/contesting/index.php:263 #: application/views/dcl_views/key_import.php:45 -#: application/views/debug/index.php:709 application/views/debug/index.php:744 +#: application/views/debug/index.php:756 application/views/debug/index.php:791 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -4622,20 +4686,20 @@ msgstr "重要" msgid "Log Files must have the file type *.adi" msgstr "日志文件的后缀必须是.adi" -#: application/views/adif/import.php:94 application/views/view_log/qso.php:794 +#: application/views/adif/import.php:94 application/views/view_log/qso.php:806 msgid "Maximum file upload size is " msgstr "最大上传文件大小是 " #: application/views/adif/import.php:94 application/views/adif/import.php:358 #: application/views/clublog/export.php:70 #: application/views/debug/index.php:202 application/views/debug/index.php:219 -#: application/views/debug/index.php:699 application/views/hrdlog/export.php:25 +#: application/views/debug/index.php:746 application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:37 #: application/views/notes/add.php:23 application/views/notes/edit.php:29 #: application/views/qrz/export.php:75 application/views/qrz/export.php:96 -#: application/views/stationsetup/stationsetup.php:116 -#: application/views/view_log/qso.php:794 +#: application/views/stationsetup/stationsetup.php:118 +#: application/views/view_log/qso.php:806 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" @@ -4692,8 +4756,8 @@ msgstr "如果不选择,Wavelog 将会自动判断 QSO 的 DXCC。" #: application/views/adif/import.php:162 #: application/views/interface_assets/footer.php:34 -#: application/views/interface_assets/footer.php:642 -#: application/views/interface_assets/footer.php:2426 +#: application/views/interface_assets/footer.php:646 +#: application/views/interface_assets/footer.php:2400 msgid "DANGER" msgstr "警告" @@ -5048,8 +5112,8 @@ msgstr "ADIF中的POTA编号" #: application/views/oqrs/showrequests.php:97 #: application/views/oqrs/status_info.php:4 #: application/views/sattimers/index.php:39 -#: application/views/stationsetup/stationsetup.php:34 -#: application/views/timeline/index.php:201 +#: application/views/stationsetup/stationsetup.php:35 +#: application/views/timeline/index.php:204 #: application/views/usermode/index.php:41 msgid "Status" msgstr "状态" @@ -5068,7 +5132,7 @@ msgstr "如用于描述用途的名字。" #: application/views/club/permissions.php:324 #: application/views/contesting/edit.php:55 application/views/cron/edit.php:73 #: application/views/interface_assets/footer.php:51 -#: application/views/interface_assets/footer.php:677 +#: application/views/interface_assets/footer.php:681 #: application/views/logbookadvanced/index.php:56 #: application/views/operator/index.php:23 #: application/views/options/appearance.php:91 @@ -5131,7 +5195,7 @@ msgstr "本站的 API URL 是" #: application/views/api/index.php:20 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 #: application/views/interface_assets/footer.php:39 -#: application/views/qso/index.php:45 application/views/radio/index.php:26 +#: application/views/qso/index.php:45 application/views/radio/index.php:30 #: application/views/sattimers/index.php:67 #: application/views/sattimers/index.php:69 #: application/views/sattimers/index.php:71 @@ -5183,7 +5247,7 @@ msgstr "权限" #: application/views/club/permissions.php:250 #: application/views/clublog/export.php:39 #: application/views/hrdlog/export.php:39 -#: application/views/logbookadvanced/index.php:790 +#: application/views/logbookadvanced/index.php:800 #: application/views/notes/main.php:77 application/views/qrz/export.php:44 #: application/views/user/index.php:33 application/views/user/index.php:160 #: application/views/webadif/export.php:45 @@ -5228,7 +5292,7 @@ msgstr "创建 只读 权限的 API Key" #: application/views/awards/dok/index.php:6 #: application/views/awards/dok/index.php:14 #: application/views/awards/dxcc/index.php:26 -#: application/views/awards/dxcc/index.php:34 +#: application/views/awards/dxcc/index.php:35 #: application/views/awards/ffma/index.php:10 #: application/views/awards/ffma/index.php:18 #: application/views/awards/gridmaster/index.php:10 @@ -5237,8 +5301,8 @@ msgstr "创建 只读 权限的 API Key" #: application/views/awards/helvetia/index.php:30 #: application/views/awards/iota/index.php:17 #: application/views/awards/iota/index.php:25 -#: application/views/awards/itu/index.php:22 -#: application/views/awards/itu/index.php:30 +#: application/views/awards/itu/index.php:33 +#: application/views/awards/itu/index.php:41 #: application/views/awards/jcc/index.php:16 #: application/views/awards/jcc/index.php:24 #: application/views/awards/pl_polska/index.php:36 @@ -5255,14 +5319,14 @@ msgstr "创建 只读 权限的 API Key" #: application/views/awards/wab/index.php:20 #: application/views/awards/wac/index.php:7 #: application/views/awards/wac/index.php:15 -#: application/views/awards/wae/index.php:6 -#: application/views/awards/wae/index.php:14 +#: application/views/awards/wae/index.php:17 +#: application/views/awards/wae/index.php:25 #: application/views/awards/waja/index.php:21 #: application/views/awards/waja/index.php:29 #: application/views/awards/wap/index.php:20 #: application/views/awards/wap/index.php:28 -#: application/views/awards/wapc/index.php:6 -#: application/views/awards/wapc/index.php:14 +#: application/views/awards/wapc/index.php:21 +#: application/views/awards/wapc/index.php:29 #: application/views/awards/was/index.php:24 #: application/views/awards/was/index.php:32 #: application/views/awards/wwff/index.php:6 @@ -5318,9 +5382,9 @@ msgid "Filtering on" msgstr "筛选打开" #: application/views/awards/counties/details.php:13 -#: application/views/logbookadvanced/index.php:444 -#: application/views/logbookadvanced/index.php:963 -#: application/views/logbookadvanced/useroptions.php:181 +#: application/views/logbookadvanced/index.php:450 +#: application/views/logbookadvanced/index.php:976 +#: application/views/logbookadvanced/useroptions.php:187 msgid "County" msgstr "县" @@ -5370,19 +5434,14 @@ msgid "Counties Confirmed" msgstr "已确认的县" #: application/views/awards/counties/index.php:40 -#: application/views/awards/cq/index.php:219 #: application/views/awards/dok/index.php:175 -#: application/views/awards/dxcc/index.php:315 #: application/views/awards/helvetia/index.php:183 #: application/views/awards/iota/index.php:237 -#: application/views/awards/itu/index.php:180 #: application/views/awards/jcc/index.php:187 #: application/views/awards/rac/index.php:174 -#: application/views/awards/wac/index.php:178 -#: application/views/awards/wae/index.php:194 #: application/views/awards/waja/index.php:183 #: application/views/awards/wap/index.php:181 -#: application/views/awards/wapc/index.php:145 +#: application/views/awards/wapc/index.php:183 #: application/views/awards/was/index.php:186 #: application/views/awards/wpx/index.php:172 #: application/views/dashboard/index.php:315 @@ -5404,22 +5463,23 @@ msgid "Total" msgstr "总计" #: application/views/awards/cq/index.php:3 -#: application/views/awards/cq/index.php:193 -#: application/views/bandmap/list.php:572 application/views/csv/index.php:80 +#: application/views/awards/cq/index.php:204 +#: application/views/bandmap/list.php:557 +#: application/views/bandmap/list.php:595 application/views/csv/index.php:80 #: application/views/dxatlas/index.php:80 #: application/views/gridmap/index.php:236 application/views/kml/index.php:65 #: application/views/logbookadvanced/checkresult.php:246 #: application/views/logbookadvanced/edit.php:24 #: application/views/logbookadvanced/index.php:22 -#: application/views/logbookadvanced/index.php:418 -#: application/views/logbookadvanced/index.php:966 +#: application/views/logbookadvanced/index.php:424 +#: application/views/logbookadvanced/index.php:979 #: application/views/logbookadvanced/qslcarousel.php:37 -#: application/views/logbookadvanced/useroptions.php:187 +#: application/views/logbookadvanced/useroptions.php:193 #: application/views/lookup/index.php:3 application/views/map/qso_map.php:69 #: application/views/qso/edit_ajax.php:308 application/views/qso/index.php:513 #: application/views/station_profile/create.php:128 #: application/views/station_profile/edit.php:153 -#: application/views/timeline/index.php:327 +#: application/views/timeline/index.php:351 #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 #: application/views/zonechecker/index.php:17 @@ -5471,10 +5531,12 @@ msgid "Awards - CQ WAZ" msgstr "CQ WAZ 奖" #: application/views/awards/cq/index.php:45 -#: application/views/awards/dxcc/index.php:41 +#: application/views/awards/dxcc/index.php:42 +#: application/views/awards/itu/index.php:47 +#: application/views/awards/wae/index.php:32 #: application/views/awards/wpx/index.php:13 #: application/views/gridmap/index.php:19 -#: application/views/logbookadvanced/index.php:288 +#: application/views/logbookadvanced/index.php:294 #: application/views/mode/index.php:80 application/views/usermode/index.php:68 msgid "Filters" msgstr "筛选器" @@ -5484,92 +5546,114 @@ msgid "Show CQ Zone Map" msgstr "查看 CQ 分区地图" #: application/views/awards/cq/index.php:55 -#: application/views/awards/dxcc/index.php:51 +#: application/views/awards/dxcc/index.php:52 +#: application/views/awards/itu/index.php:57 +#: application/views/awards/wae/index.php:39 #: application/views/gridmap/index.php:28 -#: application/views/logbookadvanced/index.php:294 +#: application/views/logbookadvanced/index.php:300 #: application/views/statistics/index.php:54 msgid "Date Presets" msgstr "预设日期" #: application/views/awards/cq/index.php:57 -#: application/views/awards/dxcc/index.php:53 +#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/itu/index.php:59 +#: application/views/awards/wae/index.php:41 #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:360 #: application/views/dashboard/index.php:387 #: application/views/dashboard/index.php:408 #: application/views/dashboard/index.php:429 #: application/views/gridmap/index.php:31 -#: application/views/logbookadvanced/index.php:296 +#: application/views/logbookadvanced/index.php:302 #: application/views/statistics/index.php:56 msgid "Today" msgstr "今天" #: application/views/awards/cq/index.php:58 -#: application/views/awards/dxcc/index.php:54 +#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/itu/index.php:60 +#: application/views/awards/wae/index.php:42 #: application/views/gridmap/index.php:32 -#: application/views/logbookadvanced/index.php:297 +#: application/views/logbookadvanced/index.php:303 #: application/views/statistics/index.php:57 msgid "Yesterday" msgstr "昨日" #: application/views/awards/cq/index.php:59 -#: application/views/awards/dxcc/index.php:55 +#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/itu/index.php:61 +#: application/views/awards/wae/index.php:43 #: application/views/gridmap/index.php:33 -#: application/views/logbookadvanced/index.php:298 +#: application/views/logbookadvanced/index.php:304 #: application/views/statistics/index.php:58 msgid "Last 7 Days" msgstr "过去7天" #: application/views/awards/cq/index.php:60 -#: application/views/awards/dxcc/index.php:56 +#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/itu/index.php:62 +#: application/views/awards/wae/index.php:44 #: application/views/gridmap/index.php:34 -#: application/views/logbookadvanced/index.php:299 +#: application/views/logbookadvanced/index.php:305 #: application/views/statistics/index.php:59 msgid "Last 30 Days" msgstr "过去30天" #: application/views/awards/cq/index.php:61 -#: application/views/awards/dxcc/index.php:57 +#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/itu/index.php:63 +#: application/views/awards/wae/index.php:45 #: application/views/gridmap/index.php:35 -#: application/views/logbookadvanced/index.php:300 +#: application/views/logbookadvanced/index.php:306 #: application/views/statistics/index.php:60 msgid "This Month" msgstr "这个月" #: application/views/awards/cq/index.php:62 -#: application/views/awards/dxcc/index.php:58 +#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/itu/index.php:64 +#: application/views/awards/wae/index.php:46 #: application/views/gridmap/index.php:36 -#: application/views/logbookadvanced/index.php:301 +#: application/views/logbookadvanced/index.php:307 #: application/views/statistics/index.php:61 msgid "Last Month" msgstr "上个月" #: application/views/awards/cq/index.php:63 -#: application/views/awards/dxcc/index.php:59 +#: application/views/awards/dxcc/index.php:60 +#: application/views/awards/itu/index.php:65 +#: application/views/awards/wae/index.php:47 #: application/views/gridmap/index.php:37 -#: application/views/logbookadvanced/index.php:302 +#: application/views/logbookadvanced/index.php:308 #: application/views/statistics/index.php:62 msgid "This Year" msgstr "今年" #: application/views/awards/cq/index.php:64 -#: application/views/awards/dxcc/index.php:60 -#: application/views/logbookadvanced/index.php:303 +#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/itu/index.php:66 +#: application/views/awards/wae/index.php:48 +#: application/views/logbookadvanced/index.php:309 #: application/views/statistics/index.php:63 msgid "Last Year" msgstr "去年" #: application/views/awards/cq/index.php:65 -#: application/views/awards/dxcc/index.php:61 +#: application/views/awards/dxcc/index.php:62 +#: application/views/awards/itu/index.php:67 +#: application/views/awards/wae/index.php:49 #: application/views/gridmap/index.php:38 #: application/views/interface_assets/footer.php:52 -#: application/views/logbookadvanced/index.php:304 +#: application/views/logbookadvanced/index.php:310 #: application/views/qso/index.php:767 msgid "Clear" msgstr "清除" #: application/views/awards/cq/index.php:70 -#: application/views/awards/dxcc/index.php:66 +#: application/views/awards/dxcc/index.php:67 +#: application/views/awards/itu/index.php:72 +#: application/views/awards/wae/index.php:54 #: application/views/dxcalendar/index.php:9 #: application/views/gridmap/index.php:44 #: application/views/statistics/index.php:68 @@ -5577,7 +5661,9 @@ msgid "Date from" msgstr "开始日期" #: application/views/awards/cq/index.php:78 -#: application/views/awards/dxcc/index.php:74 +#: application/views/awards/dxcc/index.php:75 +#: application/views/awards/itu/index.php:80 +#: application/views/awards/wae/index.php:62 #: application/views/dxcalendar/index.php:10 #: application/views/gridmap/index.php:48 #: application/views/statistics/index.php:72 @@ -5585,11 +5671,10 @@ msgid "Date to" msgstr "结束日期" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 +#: application/views/awards/itu/index.php:90 #: application/views/awards/wab/list.php:6 -#: application/views/awards/wac/index.php:23 #: application/views/awards/wpx/wpx_details.php:24 -#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 +#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 #: application/views/dashboard/index.php:342 #: application/views/dashboard/index.php:460 #: application/views/interface_assets/footer.php:45 @@ -5599,9 +5684,8 @@ msgid "Confirmed" msgstr "已确认" #: application/views/awards/cq/index.php:88 -#: application/views/awards/itu/index.php:38 -#: application/views/awards/wac/index.php:23 -#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 +#: application/views/awards/itu/index.php:90 +#: application/views/bandmap/list.php:87 application/views/bandmap/list.php:298 #: application/views/dashboard/index.php:338 #: application/views/dashboard/index.php:454 #: application/views/search/result.php:35 @@ -5611,67 +5695,64 @@ msgstr "已通联" #: application/views/awards/cq/index.php:92 #: application/views/awards/dok/index.php:42 -#: application/views/awards/dxcc/index.php:98 +#: application/views/awards/dxcc/index.php:99 #: application/views/awards/helvetia/index.php:41 #: application/views/awards/iota/index.php:46 -#: application/views/awards/itu/index.php:42 +#: application/views/awards/itu/index.php:94 #: application/views/awards/jcc/index.php:36 #: application/views/awards/rac/index.php:32 -#: application/views/awards/wac/index.php:27 -#: application/views/awards/wae/index.php:37 +#: application/views/awards/wae/index.php:76 #: application/views/awards/waja/index.php:41 #: application/views/awards/wap/index.php:39 -#: application/views/awards/wapc/index.php:26 +#: application/views/awards/wapc/index.php:41 #: application/views/awards/was/index.php:43 msgid "Show worked" msgstr "显示已通联" #: application/views/awards/cq/index.php:96 #: application/views/awards/dok/index.php:46 -#: application/views/awards/dxcc/index.php:102 +#: application/views/awards/dxcc/index.php:103 #: application/views/awards/helvetia/index.php:45 #: application/views/awards/iota/index.php:50 -#: application/views/awards/itu/index.php:46 +#: application/views/awards/itu/index.php:98 #: application/views/awards/jcc/index.php:40 #: application/views/awards/rac/index.php:36 -#: application/views/awards/wac/index.php:31 -#: application/views/awards/wae/index.php:41 +#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:45 #: application/views/awards/wap/index.php:43 -#: application/views/awards/wapc/index.php:30 +#: application/views/awards/wapc/index.php:45 #: application/views/awards/was/index.php:47 msgid "Show confirmed" msgstr "显示已确认" #: application/views/awards/cq/index.php:100 -#: application/views/awards/dxcc/index.php:106 +#: application/views/awards/dxcc/index.php:107 #: application/views/awards/helvetia/index.php:49 #: application/views/awards/iota/index.php:54 -#: application/views/awards/itu/index.php:50 +#: application/views/awards/itu/index.php:102 #: application/views/awards/jcc/index.php:44 #: application/views/awards/rac/index.php:40 -#: application/views/awards/wac/index.php:35 -#: application/views/awards/wae/index.php:45 +#: application/views/awards/wae/index.php:84 #: application/views/awards/waja/index.php:49 #: application/views/awards/wap/index.php:47 -#: application/views/awards/wapc/index.php:34 +#: application/views/awards/wapc/index.php:49 #: application/views/awards/was/index.php:51 msgid "Show not worked" msgstr "显示未通联" #: application/views/awards/cq/index.php:106 #: application/views/awards/dok/index.php:52 -#: application/views/awards/dxcc/index.php:112 +#: application/views/awards/dxcc/index.php:113 #: application/views/awards/helvetia/index.php:55 #: application/views/awards/iota/index.php:60 -#: application/views/awards/itu/index.php:56 +#: application/views/awards/itu/index.php:108 #: application/views/awards/jcc/index.php:50 #: application/views/awards/rac/index.php:46 -#: application/views/awards/wac/index.php:41 -#: application/views/awards/wae/index.php:51 +#: application/views/awards/wac/index.php:22 +#: application/views/awards/wae/index.php:90 #: application/views/awards/waja/index.php:55 #: application/views/awards/wap/index.php:53 -#: application/views/awards/wapc/index.php:40 +#: application/views/awards/wapc/index.php:55 #: application/views/awards/was/index.php:57 #: application/views/awards/wpx/index.php:24 msgid "Show QSO with QSL Type" @@ -5679,95 +5760,161 @@ msgstr "显示 QSL 分类下的 QSO" #: application/views/awards/cq/index.php:110 #: application/views/awards/iota/index.php:64 -#: application/views/awards/itu/index.php:60 -#: application/views/awards/wac/index.php:45 -#: application/views/interface_assets/footer.php:2405 +#: application/views/awards/itu/index.php:112 +#: application/views/awards/wac/index.php:26 +#: application/views/interface_assets/footer.php:2379 #: application/views/logbookadvanced/index.php:54 #: application/views/qso/edit_ajax.php:420 #: application/views/view_log/qso.php:25 msgid "QSL Card" msgstr "QSL 卡片" -#: application/views/awards/cq/index.php:167 -#: application/views/awards/dxcc/index.php:243 +#: application/views/awards/cq/index.php:171 +#: application/views/awards/dxcc/index.php:244 #: application/views/awards/helvetia/index.php:128 #: application/views/awards/iota/index.php:171 -#: application/views/awards/itu/index.php:128 +#: application/views/awards/itu/index.php:173 #: application/views/awards/rac/index.php:119 #: application/views/awards/waja/index.php:132 #: application/views/awards/wap/index.php:126 +#: application/views/awards/wapc/index.php:132 #: application/views/awards/was/index.php:130 msgid "Table" msgstr "表格" -#: application/views/awards/cq/index.php:170 +#: application/views/awards/cq/index.php:174 #: application/views/awards/dok/index.php:129 -#: application/views/awards/dxcc/index.php:246 +#: application/views/awards/dxcc/index.php:247 #: application/views/awards/helvetia/index.php:131 #: application/views/awards/iota/index.php:174 -#: application/views/awards/itu/index.php:131 +#: application/views/awards/itu/index.php:176 #: application/views/awards/jcc/index.php:131 #: application/views/awards/pl_polska/index.php:188 #: application/views/awards/rac/index.php:122 #: application/views/awards/wab/index.php:110 #: application/views/awards/waja/index.php:135 #: application/views/awards/wap/index.php:129 +#: application/views/awards/wapc/index.php:135 #: application/views/awards/was/index.php:133 #: application/views/logbookadvanced/checkresult.php:168 -#: application/views/logbookadvanced/index.php:859 +#: application/views/logbookadvanced/index.php:869 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" msgstr "地图" -#: application/views/awards/cq/index.php:210 +#: application/views/awards/cq/index.php:192 +#: application/views/awards/dxcc/index.php:264 +#: application/views/awards/itu/index.php:194 +#: application/views/awards/wac/index.php:130 +#: application/views/awards/wae/index.php:189 +msgid "Legend:" +msgstr "图例:" + +#: application/views/awards/cq/index.php:193 +#: application/views/awards/dxcc/index.php:265 +#: application/views/awards/itu/index.php:195 +#: application/views/awards/wac/index.php:131 +#: application/views/awards/wae/index.php:190 +msgid "(Q)SL-Paper-Card" +msgstr "纸质QSL卡片(Q)" + +#: application/views/awards/cq/index.php:194 +#: application/views/awards/dxcc/index.php:266 +#: application/views/awards/itu/index.php:196 +#: application/views/awards/wac/index.php:132 +#: application/views/awards/wae/index.php:191 +msgid "(L)oTW" +msgstr "LoTW(L)" + +#: application/views/awards/cq/index.php:195 +#: application/views/awards/dxcc/index.php:267 +#: application/views/awards/itu/index.php:197 +#: application/views/awards/wac/index.php:133 +#: application/views/awards/wae/index.php:192 +msgid "(e)QSL" +msgstr "eQSL(e)" + +#: application/views/awards/cq/index.php:196 +#: application/views/awards/dxcc/index.php:268 +#: application/views/awards/itu/index.php:198 +#: application/views/awards/wac/index.php:134 +#: application/views/awards/wae/index.php:193 +msgid "QR(Z)-\"confirmation\"" +msgstr "QRZ确认(Z)" + +#: application/views/awards/cq/index.php:197 +#: application/views/awards/dxcc/index.php:269 +#: application/views/awards/itu/index.php:199 +#: application/views/awards/wac/index.php:135 +#: application/views/awards/wae/index.php:194 +msgid "(C)lublog" +msgstr "Clublog(C)" + +#: application/views/awards/cq/index.php:198 +#: application/views/awards/dxcc/index.php:270 +#: application/views/awards/itu/index.php:200 +#: application/views/awards/wac/index.php:136 +#: application/views/awards/wae/index.php:195 +msgid "(W)orked" +msgstr "已通联(W)" + +#: application/views/awards/cq/index.php:224 #: application/views/awards/dok/index.php:166 -#: application/views/awards/dxcc/index.php:301 +#: application/views/awards/dxcc/index.php:302 #: application/views/awards/helvetia/index.php:174 #: application/views/awards/iota/index.php:224 -#: application/views/awards/itu/index.php:171 +#: application/views/awards/itu/index.php:226 #: application/views/awards/jcc/index.php:170 #: application/views/awards/rac/index.php:165 -#: application/views/awards/wac/index.php:169 -#: application/views/awards/wae/index.php:185 +#: application/views/awards/wac/index.php:162 +#: application/views/awards/wae/index.php:227 #: application/views/awards/waja/index.php:174 #: application/views/awards/wap/index.php:172 -#: application/views/awards/wapc/index.php:136 +#: application/views/awards/wapc/index.php:174 #: application/views/awards/was/index.php:177 #: application/views/awards/wpx/index.php:158 msgid "Summary" msgstr "概览" -#: application/views/awards/cq/index.php:223 +#: application/views/awards/cq/index.php:237 +#: application/views/awards/dxcc/index.php:315 +#: application/views/awards/itu/index.php:239 +#: application/views/awards/wac/index.php:175 +#: application/views/awards/wae/index.php:240 +msgid "Total (ex SAT)" +msgstr "合计(除卫星)" + +#: application/views/awards/cq/index.php:242 #: application/views/awards/dok/index.php:179 -#: application/views/awards/dxcc/index.php:325 +#: application/views/awards/dxcc/index.php:322 #: application/views/awards/helvetia/index.php:187 #: application/views/awards/iota/index.php:245 -#: application/views/awards/itu/index.php:184 +#: application/views/awards/itu/index.php:244 #: application/views/awards/jcc/index.php:197 #: application/views/awards/rac/index.php:178 -#: application/views/awards/wac/index.php:182 -#: application/views/awards/wae/index.php:199 +#: application/views/awards/wac/index.php:183 +#: application/views/awards/wae/index.php:247 #: application/views/awards/waja/index.php:188 #: application/views/awards/wap/index.php:185 -#: application/views/awards/wapc/index.php:150 +#: application/views/awards/wapc/index.php:188 #: application/views/awards/was/index.php:190 #: application/views/awards/wpx/index.php:183 msgid "Total worked" msgstr "共通联" -#: application/views/awards/cq/index.php:230 +#: application/views/awards/cq/index.php:255 #: application/views/awards/dok/index.php:186 -#: application/views/awards/dxcc/index.php:350 +#: application/views/awards/dxcc/index.php:343 #: application/views/awards/helvetia/index.php:194 #: application/views/awards/iota/index.php:271 -#: application/views/awards/itu/index.php:191 +#: application/views/awards/itu/index.php:257 #: application/views/awards/jcc/index.php:216 #: application/views/awards/rac/index.php:185 -#: application/views/awards/wac/index.php:189 -#: application/views/awards/wae/index.php:206 +#: application/views/awards/wac/index.php:203 +#: application/views/awards/wae/index.php:269 #: application/views/awards/waja/index.php:195 #: application/views/awards/wap/index.php:192 -#: application/views/awards/wapc/index.php:157 +#: application/views/awards/wapc/index.php:195 #: application/views/awards/was/index.php:197 #: application/views/awards/wpx/index.php:204 msgid "Total confirmed" @@ -5827,15 +5974,15 @@ msgid "DOK + SDOK" msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:38 -#: application/views/awards/dxcc/index.php:94 +#: application/views/awards/dxcc/index.php:95 #: application/views/awards/helvetia/index.php:37 #: application/views/awards/iota/index.php:42 #: application/views/awards/jcc/index.php:32 #: application/views/awards/rac/index.php:28 -#: application/views/awards/wae/index.php:33 +#: application/views/awards/wae/index.php:72 #: application/views/awards/waja/index.php:37 #: application/views/awards/wap/index.php:35 -#: application/views/awards/wapc/index.php:22 +#: application/views/awards/wapc/index.php:37 #: application/views/awards/was/index.php:39 msgid "Worked / Confirmed" msgstr "通联过 / 已确认" @@ -5844,11 +5991,9 @@ msgstr "通联过 / 已确认" #: application/views/awards/helvetia/index.php:80 #: application/views/awards/jcc/index.php:79 #: application/views/awards/rac/index.php:71 -#: application/views/awards/wac/index.php:67 -#: application/views/awards/wae/index.php:80 #: application/views/awards/waja/index.php:84 #: application/views/awards/wap/index.php:78 -#: application/views/awards/wapc/index.php:69 +#: application/views/awards/wapc/index.php:84 #: application/views/awards/was/index.php:82 msgid "Every band" msgstr "各个频段" @@ -5856,23 +6001,20 @@ msgstr "各个频段" #: application/views/awards/dok/index.php:127 #: application/views/awards/helvetia/index.php:115 #: application/views/awards/iota/index.php:158 -#: application/views/awards/itu/index.php:116 #: application/views/awards/jcc/index.php:114 #: application/views/awards/pl_polska/index.php:92 #: application/views/awards/rac/index.php:106 -#: application/views/awards/wac/index.php:135 -#: application/views/awards/wae/index.php:146 #: application/views/awards/waja/index.php:119 #: application/views/awards/wap/index.php:113 -#: application/views/awards/wapc/index.php:104 +#: application/views/awards/wapc/index.php:119 #: application/views/awards/was/index.php:117 #: application/views/awards/wpx/index.php:148 #: application/views/continents/index.php:50 -#: application/views/logbookadvanced/index.php:877 -#: application/views/logbookadvanced/index.php:878 +#: application/views/logbookadvanced/index.php:887 +#: application/views/logbookadvanced/index.php:888 #: application/views/oqrs/showrequests.php:70 #: application/views/qrbcalc/index.php:19 -#: application/views/search/filter.php:37 application/views/user/edit.php:724 +#: application/views/search/filter.php:37 application/views/user/edit.php:732 msgid "Reset" msgstr "重置筛选条件" @@ -5923,161 +6065,127 @@ msgid "" "ADIF-Spec-List" msgstr "本奖项所需要的字段:DXCC(必须是 DXCC-ADIF 规范里的合法条目)" -#: application/views/awards/dxcc/index.php:44 +#: application/views/awards/dxcc/index.php:45 msgid "Show DXCC Map" msgstr "显示 DXCC 地图" -#: application/views/awards/dxcc/index.php:87 +#: application/views/awards/dxcc/index.php:88 #: application/views/awards/iota/index.php:36 msgid "Include deleted" msgstr "包括已删除" -#: application/views/awards/dxcc/index.php:142 +#: application/views/awards/dxcc/index.php:143 #: application/views/awards/iota/index.php:90 #: application/views/awards/wpx/index.php:55 -#: application/views/bandmap/list.php:339 -#: application/views/bandmap/list.php:353 +#: application/views/bandmap/list.php:340 +#: application/views/bandmap/list.php:354 #: application/views/logbookadvanced/edit.php:219 -#: application/views/logbookadvanced/index.php:491 +#: application/views/logbookadvanced/index.php:497 #: application/views/lookup/index.php:60 #: application/views/options/dxcluster.php:56 #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:488 -#: application/views/view_log/qso.php:356 +#: application/views/view_log/qso.php:368 msgid "Antarctica" msgstr "南极洲" -#: application/views/awards/dxcc/index.php:146 +#: application/views/awards/dxcc/index.php:147 #: application/views/awards/iota/index.php:94 #: application/views/awards/wpx/index.php:56 -#: application/views/bandmap/list.php:338 -#: application/views/bandmap/list.php:352 +#: application/views/bandmap/list.php:339 +#: application/views/bandmap/list.php:353 #: application/views/logbookadvanced/edit.php:218 -#: application/views/logbookadvanced/index.php:490 +#: application/views/logbookadvanced/index.php:496 #: application/views/lookup/index.php:59 #: application/views/options/dxcluster.php:55 #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:487 -#: application/views/view_log/qso.php:353 +#: application/views/view_log/qso.php:365 msgid "Africa" msgstr "非洲" -#: application/views/awards/dxcc/index.php:150 +#: application/views/awards/dxcc/index.php:151 #: application/views/awards/iota/index.php:98 #: application/views/awards/wpx/index.php:57 -#: application/views/bandmap/list.php:340 -#: application/views/bandmap/list.php:354 +#: application/views/bandmap/list.php:341 +#: application/views/bandmap/list.php:355 #: application/views/logbookadvanced/edit.php:221 -#: application/views/logbookadvanced/index.php:493 +#: application/views/logbookadvanced/index.php:499 #: application/views/lookup/index.php:62 #: application/views/options/dxcluster.php:57 #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:489 -#: application/views/view_log/qso.php:359 +#: application/views/view_log/qso.php:371 msgid "Asia" msgstr "亚洲" -#: application/views/awards/dxcc/index.php:154 +#: application/views/awards/dxcc/index.php:155 #: application/views/awards/iota/index.php:102 #: application/views/awards/wpx/index.php:58 -#: application/views/bandmap/list.php:341 -#: application/views/bandmap/list.php:355 +#: application/views/bandmap/list.php:342 +#: application/views/bandmap/list.php:356 #: application/views/logbookadvanced/edit.php:222 -#: application/views/logbookadvanced/index.php:494 +#: application/views/logbookadvanced/index.php:500 #: application/views/lookup/index.php:63 #: application/views/options/dxcluster.php:58 #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:490 -#: application/views/view_log/qso.php:362 +#: application/views/view_log/qso.php:374 msgid "Europe" msgstr "欧洲" -#: application/views/awards/dxcc/index.php:158 +#: application/views/awards/dxcc/index.php:159 #: application/views/awards/iota/index.php:106 #: application/views/awards/wpx/index.php:59 -#: application/views/bandmap/list.php:342 -#: application/views/bandmap/list.php:356 +#: application/views/bandmap/list.php:343 +#: application/views/bandmap/list.php:357 #: application/views/logbookadvanced/edit.php:220 -#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:498 #: application/views/lookup/index.php:61 #: application/views/options/dxcluster.php:59 #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:491 -#: application/views/view_log/qso.php:365 +#: application/views/view_log/qso.php:377 msgid "North America" msgstr "北美洲" -#: application/views/awards/dxcc/index.php:162 +#: application/views/awards/dxcc/index.php:163 #: application/views/awards/iota/index.php:110 #: application/views/awards/wpx/index.php:60 -#: application/views/bandmap/list.php:344 -#: application/views/bandmap/list.php:358 +#: application/views/bandmap/list.php:345 +#: application/views/bandmap/list.php:359 #: application/views/logbookadvanced/edit.php:223 -#: application/views/logbookadvanced/index.php:495 +#: application/views/logbookadvanced/index.php:501 #: application/views/lookup/index.php:64 #: application/views/options/dxcluster.php:61 #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:493 -#: application/views/view_log/qso.php:371 +#: application/views/view_log/qso.php:383 msgid "South America" msgstr "南美洲" -#: application/views/awards/dxcc/index.php:166 +#: application/views/awards/dxcc/index.php:167 #: application/views/awards/iota/index.php:114 #: application/views/awards/wpx/index.php:61 -#: application/views/bandmap/list.php:343 -#: application/views/bandmap/list.php:357 +#: application/views/bandmap/list.php:344 +#: application/views/bandmap/list.php:358 #: application/views/logbookadvanced/edit.php:224 -#: application/views/logbookadvanced/index.php:496 +#: application/views/logbookadvanced/index.php:502 #: application/views/lookup/index.php:65 #: application/views/options/dxcluster.php:60 #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:492 -#: application/views/view_log/qso.php:368 +#: application/views/view_log/qso.php:380 msgid "Oceania" msgstr "大洋洲" -#: application/views/awards/dxcc/index.php:175 -#: application/views/awards/iota/index.php:123 -#: application/views/awards/wpx/index.php:81 -msgid "Every band (w/o SAT)" -msgstr "所有频段 (不含卫星)" - -#: application/views/awards/dxcc/index.php:263 -msgid "Legend:" -msgstr "图例:" - -#: application/views/awards/dxcc/index.php:264 -msgid "(Q)SL-Paper-Card" -msgstr "纸质QSL卡片(Q)" - -#: application/views/awards/dxcc/index.php:265 -msgid "(L)oTW" -msgstr "LoTW(L)" - -#: application/views/awards/dxcc/index.php:266 -msgid "(e)QSL" -msgstr "eQSL(e)" - -#: application/views/awards/dxcc/index.php:267 -msgid "QR(Z)-\"confirmation\"" -msgstr "QRZ确认(Z)" - -#: application/views/awards/dxcc/index.php:268 -msgid "(C)lublog" -msgstr "Clublog(C)" - -#: application/views/awards/dxcc/index.php:269 -msgid "(W)orked" -msgstr "已通联(W)" - -#: application/views/awards/dxcc/index.php:275 +#: application/views/awards/dxcc/index.php:276 msgid "DXCC Name" msgstr "DXCC名称" -#: application/views/awards/dxcc/index.php:276 +#: application/views/awards/dxcc/index.php:277 #: application/views/awards/iota/index.php:199 -#: application/views/awards/wae/index.php:163 +#: application/views/awards/wae/index.php:202 #: application/views/logbookadvanced/statecheckresult.php:10 #: application/views/timeline/index.php:199 -#: application/views/timeline/index.php:297 +#: application/views/timeline/index.php:315 msgid "Prefix" msgstr "前缀" -#: application/views/awards/dxcc/index.php:378 +#: application/views/awards/dxcc/index.php:369 msgid "No results found for your search criteria. Please try again." msgstr "根据您的搜索条件,未找到相关结果。请再试一次。" @@ -6313,23 +6421,23 @@ msgstr "显示IOTA地图" #: application/views/contesting/index.php:64 #: application/views/contesting/index.php:229 #: application/views/dashboard/index.php:18 -#: application/views/labels/index.php:41 application/views/labels/index.php:75 -#: application/views/logbookadvanced/index.php:924 +#: application/views/labels/index.php:42 application/views/labels/index.php:76 +#: application/views/logbookadvanced/index.php:937 #: application/views/logbookadvanced/qslcarousel.php:34 -#: application/views/logbookadvanced/useroptions.php:85 +#: application/views/logbookadvanced/useroptions.php:91 #: application/views/lotw/satupdate.php:7 #: application/views/qso/edit_ajax.php:172 application/views/qso/index.php:285 #: application/views/satellite/satinfo.php:6 #: application/views/search/result.php:16 #: application/views/search/search_result_ajax.php:19 -#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:34 #: application/views/themes/index.php:82 -#: application/views/timeline/index.php:296 application/views/user/edit.php:256 +#: application/views/timeline/index.php:314 application/views/user/edit.php:256 #: application/views/user/edit.php:279 application/views/user/edit.php:302 #: application/views/user/edit.php:325 application/views/user/edit.php:349 #: application/views/view_log/partial/log_ajax.php:19 -#: application/views/view_log/qso.php:220 -#: application/views/view_log/qso.php:676 +#: application/views/view_log/qso.php:232 +#: application/views/view_log/qso.php:688 msgid "Name" msgstr "名称" @@ -6338,14 +6446,14 @@ msgid "Deleted" msgstr "已删除" #: application/views/awards/itu/index.php:3 -#: application/views/awards/itu/index.php:154 +#: application/views/awards/itu/index.php:206 #: application/views/gridmap/index.php:238 #: application/views/logbookadvanced/checkresult.php:322 #: application/views/logbookadvanced/edit.php:29 #: application/views/logbookadvanced/index.php:21 -#: application/views/logbookadvanced/index.php:432 -#: application/views/logbookadvanced/index.php:969 -#: application/views/logbookadvanced/useroptions.php:193 +#: application/views/logbookadvanced/index.php:438 +#: application/views/logbookadvanced/index.php:982 +#: application/views/logbookadvanced/useroptions.php:199 #: application/views/lookup/index.php:8 application/views/map/qso_map.php:71 #: application/views/qso/edit_ajax.php:317 application/views/qso/index.php:523 #: application/views/station_profile/create.php:143 @@ -6355,7 +6463,7 @@ msgstr "已删除" msgid "ITU Zone" msgstr "ITU 分区" -#: application/views/awards/itu/index.php:24 +#: application/views/awards/itu/index.php:35 msgid "" "The Classic Worked ITU Zones award may be claimed by producing evidence of " "having contacted land based amateur radio stations in at least 70 of the 75 " @@ -6365,27 +6473,27 @@ msgstr "" "国际电信联盟(ITU)规定了 75 个广播区域,只要能证明与其中至少 70 个区域内的陆" "地业余无线电台进行过联系,就可以申请 “通联 ITU 分区奖”。" -#: application/views/awards/itu/index.php:25 +#: application/views/awards/itu/index.php:36 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." msgstr "你可在 %s 查看更多信息。" -#: application/views/awards/itu/index.php:27 +#: application/views/awards/itu/index.php:38 msgid "Fields taken for this Award: ITU-Zone (ADIF: ITUZ)" msgstr "本奖项所需要的字段:ITU 分区(ADIF: ITUZ)" -#: application/views/awards/itu/index.php:29 +#: application/views/awards/itu/index.php:40 msgid "Awards - ITU Zones" msgstr "奖项 - ITU 分区" -#: application/views/awards/itu/index.php:119 +#: application/views/awards/itu/index.php:50 msgid "Show ITU Zone Map" msgstr "显示 ITU 分区地图" #: application/views/awards/jcc/index.php:17 msgid "JCC - Japan Century Cities Award" -msgstr "JCC - 日本世纪城市奖" +msgstr "JCC - 日本百市奖" #: application/views/awards/jcc/index.php:18 msgid "" @@ -6430,7 +6538,7 @@ msgstr "结果" #: application/views/awards/jcc/index.php:154 #: application/views/search/result.php:21 -#: application/views/view_log/qso.php:686 +#: application/views/view_log/qso.php:698 msgid "City" msgstr "城市" @@ -6439,8 +6547,10 @@ msgstr "城市" #: application/views/distances/index.php:23 #: application/views/qslprint/qslprint.php:57 #: application/views/qslprint/qslprint.php:58 -#: application/views/qslprint/qsolist.php:44 -#: application/views/qslprint/qsolist.php:45 +#: application/views/qslprint/qsolist.php:48 +#: application/views/qslprint/qsolist.php:50 +#: application/views/qslprint/qsolist.php:57 +#: application/views/qslprint/qsolist.php:59 msgid "SAT" msgstr "卫星" @@ -6571,7 +6681,7 @@ msgstr "省(或州)" #: application/views/awards/pl_polska/index.php:203 #: application/views/awards/pl_polska/index.php:274 -#: application/views/awards/wapc/index.php:119 +#: application/views/awards/wapc/index.php:157 msgid "Code" msgstr "代码" @@ -6587,7 +6697,7 @@ msgstr "PHONE(话务)" #: application/views/awards/pl_polska/index.php:206 #: application/views/awards/pl_polska/index.php:347 -#: application/views/bandmap/list.php:305 +#: application/views/bandmap/list.php:306 #: application/views/components/dxwaterfall.php:33 msgid "CW" msgstr "CW" @@ -6625,8 +6735,8 @@ msgid "Band Categories" msgstr "频段分类" #: application/views/awards/pl_polska/index.php:372 -#: application/views/logbookadvanced/dbtoolsdialog.php:56 -#: application/views/logbookadvanced/index.php:819 +#: application/views/logbookadvanced/dbtoolsdialog.php:77 +#: application/views/logbookadvanced/index.php:829 msgid "Fix State" msgstr "修正省/州" @@ -6693,8 +6803,8 @@ msgstr "本奖项所需要的字段:POTA_REF(必须包含公园编号)" #: application/views/qso/index.php:333 application/views/qso/index.php:630 #: application/views/station_profile/create.php:241 #: application/views/station_profile/edit.php:266 -#: application/views/user/edit.php:708 application/views/view_log/qso.php:409 -#: application/views/view_log/qso.php:742 +#: application/views/user/edit.php:716 application/views/view_log/qso.php:421 +#: application/views/view_log/qso.php:754 msgid "POTA Reference(s)" msgstr "POTA 编号" @@ -6705,6 +6815,7 @@ msgstr "省" #: application/views/awards/rac/index.php:4 #: application/views/awards/wap/index.php:5 +#: application/views/awards/wapc/index.php:4 msgid "Hover over a province" msgstr "鼠标停留到一个省" @@ -6768,7 +6879,7 @@ msgid "Reference" msgstr "编号" #: application/views/awards/sig/qso_list.php:10 -#: application/views/logbookadvanced/index.php:894 +#: application/views/logbookadvanced/index.php:904 #: application/views/logbookadvanced/qslcarousel.php:31 #: application/views/logbookadvanced/showMissingDxccQsos.php:20 #: application/views/logbookadvanced/showStateQsos.php:22 @@ -6831,7 +6942,7 @@ msgid "" msgstr "VHF/UHF 世纪俱乐部奖颁发给在所需频段上工作和确认的最小数量的网格。" #: application/views/awards/vucc/index.php:9 -#: application/views/awards/wae/index.php:10 +#: application/views/awards/wae/index.php:21 #, php-format msgid "Official information and the rules can be found in this document: %s." msgstr "官方信息和规则可以在此文档中找到:%s。" @@ -6906,25 +7017,30 @@ msgstr "本奖项所需要的字段:大陆(ADIF标签“CONT”)。必须 msgid "Awards - Worked All Continents (WAC)" msgstr "奖项 - 通联世界大洲奖(WAC)" -#: application/views/awards/wac/index.php:152 -#: application/views/bandmap/list.php:100 -#: application/views/bandmap/list.php:571 +#: application/views/awards/wac/index.php:142 +#: application/views/bandmap/list.php:101 +#: application/views/bandmap/list.php:556 +#: application/views/bandmap/list.php:594 #: application/views/continents/index.php:62 #: application/views/logbookadvanced/edit.php:23 -#: application/views/logbookadvanced/index.php:486 -#: application/views/logbookadvanced/index.php:1008 -#: application/views/logbookadvanced/useroptions.php:199 +#: application/views/logbookadvanced/index.php:492 +#: application/views/logbookadvanced/index.php:1021 +#: application/views/logbookadvanced/useroptions.php:205 #: application/views/lookup/index.php:4 application/views/qso/award_tabs.php:37 #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:484 -#: application/views/view_log/qso.php:348 +#: application/views/view_log/qso.php:360 msgid "Continent" msgstr "大陆" -#: application/views/awards/wae/index.php:7 +#: application/views/awards/wac/index.php:227 +msgid "No QSOS found matching the criteria for this award!" +msgstr "" + +#: application/views/awards/wae/index.php:18 msgid "WAE Award" msgstr "WAE 奖" -#: application/views/awards/wae/index.php:8 +#: application/views/awards/wae/index.php:19 msgid "" "The oldest and most renowned of all DARC certificates is awarded for " "contacts with amateur radio stations in European countries and on islands " @@ -6933,7 +7049,7 @@ msgstr "" "所有DARC证书中最古老、最著名的证书颁发给与欧洲国家和WAE国家列表中所列岛屿上不" "同频段的业余无线电台的通联。" -#: application/views/awards/wae/index.php:9 +#: application/views/awards/wae/index.php:20 msgid "" "The WAE will be issued in the following modes: CW, SSB, Phone, RTTY, FT8, " "Digital and Mixed Modes. It is issued in five classes: WAE III, WAE II, WAE " @@ -6942,11 +7058,11 @@ msgstr "" "WAE 将以以下模式发布:CW、SSB、Phone、RTTY、FT8、数字和混合模式。它分为五个级" "别:WAE III、WAE II、WAE I、WAE Top 和 WAE Trophy。" -#: application/views/awards/wae/index.php:11 +#: application/views/awards/wae/index.php:22 msgid "Fields taken for this Award: Region, DXCC" msgstr "本奖项所需要的字段:地区,DXCC" -#: application/views/awards/wae/index.php:162 +#: application/views/awards/wae/index.php:201 msgid "WAE Name" msgstr "WAE 名称" @@ -6992,7 +7108,7 @@ msgid "Show WAJA Map" msgstr "显示 WAJA 地图" #: application/views/awards/waja/index.php:158 -#: application/views/timeline/index.php:237 +#: application/views/timeline/index.php:243 msgid "Prefecture" msgstr "县" @@ -7049,15 +7165,20 @@ msgid "Show WAP Map" msgstr "显示 WAP 地图" #: application/views/awards/wap/index.php:153 -#: application/views/awards/wapc/index.php:120 +#: application/views/awards/wapc/index.php:158 msgid "Province" msgstr "省份" -#: application/views/awards/wapc/index.php:7 +#: application/views/awards/wapc/index.php:3 +msgctxt "China Province" +msgid "Province" +msgstr "省份" + +#: application/views/awards/wapc/index.php:22 msgid "WAPC - Worked All Provinces of China" msgstr "WAPC - 通联中国之省奖" -#: application/views/awards/wapc/index.php:8 +#: application/views/awards/wapc/index.php:23 msgid "" "The WAPC Award, issued by the Mulan DX Club, aims to promote communication " "between amateur radio operators worldwide and operators in all provinces, " @@ -7067,13 +7188,13 @@ msgstr "" "由木兰 DX 俱乐部颁发的 WAPC 奖旨在鼓励国内外业余无线电爱好者与中国各省、直辖" "市、自治区、特别行政区爱好者通联,了解中国。" -#: application/views/awards/wapc/index.php:9 +#: application/views/awards/wapc/index.php:24 msgid "" "The award can be earned through long-term accumulation of contacts or " "achieved in a single effort during the annual WAPC Contest." msgstr "该奖项可以通过长期积累通联成绩获得,也可在 WAPC 比赛时一次性获得。" -#: application/views/awards/wapc/index.php:11 +#: application/views/awards/wapc/index.php:26 msgid "" "Fields taken for this Award: DXCC (Must be one of China/318, HongKong/321, " "Macao/152, Taiwan/386, Pratas Isl./505 or Scarborough Reef/506) and valid " @@ -7082,6 +7203,10 @@ msgstr "" "本奖项所需要的字段:DXCC(必须是中国/318,香港/321,澳门/152,台湾/386,东沙" "群岛/505或黄岩岛/506)和有效的省(ADIF: DXCC 和 STATE)" +#: application/views/awards/wapc/index.php:122 +msgid "Show WAPC Map" +msgstr "显示 WAPC 地图" + #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" @@ -7189,8 +7314,8 @@ msgstr "本奖项所需要的字段:WWFF(ADIF: WWFF_REF)" #: application/views/qso/index.php:321 application/views/qso/index.php:617 #: application/views/station_profile/create.php:227 #: application/views/station_profile/edit.php:252 -#: application/views/user/edit.php:704 application/views/view_log/qso.php:402 -#: application/views/view_log/qso.php:735 +#: application/views/user/edit.php:712 application/views/view_log/qso.php:414 +#: application/views/view_log/qso.php:747 msgid "WWFF Reference" msgstr "WWFF 编号" @@ -7237,274 +7362,274 @@ msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "你的笔记备份已成功完成。输出可在以下位置找到" -#: application/views/bandmap/list.php:11 +#: application/views/bandmap/list.php:12 msgid "Click to prepare logging." msgstr "点击以准备记录。" -#: application/views/bandmap/list.php:11 application/views/bandmap/list.php:131 +#: application/views/bandmap/list.php:12 application/views/bandmap/list.php:132 msgid "to tune frequency" msgstr "调整频率" -#: application/views/bandmap/list.php:14 +#: application/views/bandmap/list.php:15 msgid "Pop-up Blocked" msgstr "弹出窗口已阻止" -#: application/views/bandmap/list.php:15 application/views/qso/log_qso.php:55 +#: application/views/bandmap/list.php:16 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." msgstr "弹出窗口被禁止,请永久允许本站的弹出窗口。" -#: application/views/bandmap/list.php:16 +#: application/views/bandmap/list.php:17 msgid "CAT Connection Required" msgstr "需要连接 CAT 设备" -#: application/views/bandmap/list.php:17 +#: application/views/bandmap/list.php:18 msgid "Enable CAT connection to tune the radio" msgstr "启用 CAT 连接以调节电台" -#: application/views/bandmap/list.php:18 application/views/bandmap/list.php:411 +#: application/views/bandmap/list.php:19 application/views/bandmap/list.php:412 msgid "Clear Filters" msgstr "清除筛选条件" -#: application/views/bandmap/list.php:19 +#: application/views/bandmap/list.php:20 msgid "Band filter preserved (band lock is active)" msgstr "频段筛选已保存(频段锁已激活)" -#: application/views/bandmap/list.php:21 +#: application/views/bandmap/list.php:22 msgid "Radio set to None - CAT connection disabled" msgstr "电台设置为“无” - CAT 连接已关闭" -#: application/views/bandmap/list.php:22 +#: application/views/bandmap/list.php:23 msgid "Radio Tuned" msgstr "电台已调谐" -#: application/views/bandmap/list.php:23 +#: application/views/bandmap/list.php:24 msgid "Tuned to" msgstr "调谐至" -#: application/views/bandmap/list.php:24 +#: application/views/bandmap/list.php:25 msgid "Tuning Failed" msgstr "调谐失败" -#: application/views/bandmap/list.php:25 +#: application/views/bandmap/list.php:26 msgid "Failed to tune radio to frequency" msgstr "无法将电台调谐到频率" -#: application/views/bandmap/list.php:26 +#: application/views/bandmap/list.php:27 msgid "QSO Prepared" msgstr "QSO 就绪" -#: application/views/bandmap/list.php:28 +#: application/views/bandmap/list.php:29 msgid "sent to logging form" msgstr "已提交到日志表单" -#: application/views/bandmap/list.php:29 application/views/bandmap/list.php:229 +#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:230 msgid "CAT Connection" msgstr "CAT 连接" -#: application/views/bandmap/list.php:30 application/views/bandmap/list.php:228 +#: application/views/bandmap/list.php:31 application/views/bandmap/list.php:229 msgid "Click to enable CAT connection" msgstr "点击以启用 CAT 连接" -#: application/views/bandmap/list.php:31 +#: application/views/bandmap/list.php:32 msgid "CAT following radio - Click to disable" msgstr "CAT 控制电台 - 点击禁用" -#: application/views/bandmap/list.php:32 application/views/bandmap/list.php:231 +#: application/views/bandmap/list.php:33 application/views/bandmap/list.php:232 msgid "Click to enable band lock (requires CAT connection)" msgstr "点击以启用频段锁定(需连接 CAT 线)" -#: application/views/bandmap/list.php:33 +#: application/views/bandmap/list.php:34 msgid "Band lock active - Click to disable" msgstr "频段锁已激活 - 点击禁用" -#: application/views/bandmap/list.php:34 +#: application/views/bandmap/list.php:35 msgid "Band Lock" msgstr "频段锁" -#: application/views/bandmap/list.php:35 +#: application/views/bandmap/list.php:36 msgid "Band lock enabled - band filter will track radio band" msgstr "频段锁定已启用—频段滤波器将跟踪电台频段" -#: application/views/bandmap/list.php:36 +#: application/views/bandmap/list.php:37 msgid "Band filter changed to" msgstr "频段筛选器更改为" -#: application/views/bandmap/list.php:37 +#: application/views/bandmap/list.php:38 msgid "by transceiver" msgstr "通过收发器" -#: application/views/bandmap/list.php:38 +#: application/views/bandmap/list.php:39 msgid "Frequency filter set to" msgstr "频率滤波器设置为" -#: application/views/bandmap/list.php:39 +#: application/views/bandmap/list.php:40 msgid "Frequency outside known bands - showing all bands" msgstr "频率超出已知频段 - 显示所有频段" -#: application/views/bandmap/list.php:40 +#: application/views/bandmap/list.php:41 msgid "Waiting for radio data..." msgstr "等待电台数据中…" -#: application/views/bandmap/list.php:41 +#: application/views/bandmap/list.php:42 msgid "My Favorites" msgstr "我的收藏" -#: application/views/bandmap/list.php:42 +#: application/views/bandmap/list.php:43 msgid "Failed to load favorites" msgstr "加载收藏失败" -#: application/views/bandmap/list.php:43 +#: application/views/bandmap/list.php:44 msgid "Modes applied. Band filter preserved (CAT connection is active)" msgstr "模式已应用。保留频段滤波器(CAT 连接已激活)" -#: application/views/bandmap/list.php:44 +#: application/views/bandmap/list.php:45 msgid "Applied your favorite bands and modes" msgstr "应用你喜欢的频段和模式" -#: application/views/bandmap/list.php:47 application/views/bandmap/list.php:314 -#: application/views/bandmap/list.php:479 +#: application/views/bandmap/list.php:48 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:480 msgid "My Submodes" msgstr "我的子模式" -#: application/views/bandmap/list.php:48 +#: application/views/bandmap/list.php:49 msgid "Submode filter enabled" msgstr "启用子模式过滤器" -#: application/views/bandmap/list.php:49 +#: application/views/bandmap/list.php:50 msgid "Submode filter disabled - showing all" msgstr "禁用子模式过滤器 - 显示全部" -#: application/views/bandmap/list.php:50 +#: application/views/bandmap/list.php:51 msgid "Required submodes" msgstr "必需子模式" -#: application/views/bandmap/list.php:51 +#: application/views/bandmap/list.php:52 msgid "Configure in User Settings - Modes" msgstr "在用户设置中配置 - 模式" -#: application/views/bandmap/list.php:52 +#: application/views/bandmap/list.php:53 msgid "No submodes configured - configure in User Settings - Modes" msgstr "未配置子模式 - 在用户设置中配置 - 模式" -#: application/views/bandmap/list.php:53 +#: application/views/bandmap/list.php:54 msgid "No submodes enabled in settings - showing all spots" msgstr "设置中未启用子模式 - 显示所有位置" -#: application/views/bandmap/list.php:54 +#: application/views/bandmap/list.php:55 msgid "Disabled - no submodes enabled for this mode in User Settings" msgstr "禁用 - 用户设置中未启用该模式的子模式" -#: application/views/bandmap/list.php:55 application/views/bandmap/list.php:468 +#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 #: application/views/components/dxwaterfall.php:32 msgid "Toggle CW mode filter" msgstr "切换 CW 模式筛选器" -#: application/views/bandmap/list.php:56 application/views/bandmap/list.php:469 +#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 #: application/views/components/dxwaterfall.php:34 msgid "Toggle Digital mode filter" msgstr "切换数字模式筛选器" -#: application/views/bandmap/list.php:57 application/views/bandmap/list.php:470 +#: application/views/bandmap/list.php:58 application/views/bandmap/list.php:471 #: application/views/components/dxwaterfall.php:30 msgid "Toggle Phone mode filter" msgstr "切换语音模式筛选器" -#: application/views/bandmap/list.php:60 application/views/bandmap/list.php:421 +#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:422 msgid "Favorites" msgstr "收藏夹" -#: application/views/bandmap/list.php:61 application/views/bandmap/list.php:424 +#: application/views/bandmap/list.php:62 application/views/bandmap/list.php:425 msgid "Save Current Filters..." msgstr "保存当前筛选器..." -#: application/views/bandmap/list.php:62 +#: application/views/bandmap/list.php:63 msgid "Enter a name for this filter preset:" msgstr "输入筛选器预设的名称:" -#: application/views/bandmap/list.php:63 +#: application/views/bandmap/list.php:64 msgid "Filter preset saved" msgstr "筛选器预设已保存" -#: application/views/bandmap/list.php:64 +#: application/views/bandmap/list.php:65 msgid "Filter preset loaded" msgstr "筛选器预设已加载" -#: application/views/bandmap/list.php:65 +#: application/views/bandmap/list.php:66 msgid "Filter preset deleted" msgstr "筛选器预设已删除" -#: application/views/bandmap/list.php:66 +#: application/views/bandmap/list.php:67 msgid "Are you sure to delete this filter preset?" msgstr "您确定要删除此筛选器预设吗?" -#: application/views/bandmap/list.php:67 +#: application/views/bandmap/list.php:68 msgid "No saved filter presets" msgstr "没有已保存的筛选器预设" -#: application/views/bandmap/list.php:68 +#: application/views/bandmap/list.php:69 msgid "" "Maximum of 20 filter presets reached. Please delete some before adding new " "ones." msgstr "最多 20 个过滤器预设已满。请先删除一些预设,然后再添加新的预设。" -#: application/views/bandmap/list.php:71 +#: application/views/bandmap/list.php:72 msgid "Loading data from DX Cluster" msgstr "正在从 DX Cluster 加载数据" -#: application/views/bandmap/list.php:72 +#: application/views/bandmap/list.php:73 msgid "Last fetched for" msgstr "上次获取为" -#: application/views/bandmap/list.php:73 +#: application/views/bandmap/list.php:74 msgid "Max Age" msgstr "最大时长" -#: application/views/bandmap/list.php:74 +#: application/views/bandmap/list.php:75 msgid "Fetched at" msgstr "已获取于" -#: application/views/bandmap/list.php:75 +#: application/views/bandmap/list.php:76 msgid "Next update in" msgstr "下次更新于" -#: application/views/bandmap/list.php:76 +#: application/views/bandmap/list.php:77 msgid "minutes" msgstr "分" -#: application/views/bandmap/list.php:77 +#: application/views/bandmap/list.php:78 msgid "seconds" msgstr "秒" -#: application/views/bandmap/list.php:78 +#: application/views/bandmap/list.php:79 msgid "spots fetched" msgstr "spot 已获取" -#: application/views/bandmap/list.php:79 +#: application/views/bandmap/list.php:80 msgid "showing" msgstr "展示中" -#: application/views/bandmap/list.php:80 +#: application/views/bandmap/list.php:81 msgid "showing all" msgstr "展示所有" -#: application/views/bandmap/list.php:81 +#: application/views/bandmap/list.php:82 msgid "Active filters" msgstr "启用的筛选器" -#: application/views/bandmap/list.php:82 +#: application/views/bandmap/list.php:83 msgid "Fetching..." msgstr "正在获取..." -#: application/views/bandmap/list.php:85 application/views/bandmap/list.php:296 +#: application/views/bandmap/list.php:86 application/views/bandmap/list.php:297 #: application/views/interface_assets/footer.php:47 msgid "Not worked" msgstr "未通联" -#: application/views/bandmap/list.php:88 application/views/bandmap/list.php:299 +#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:300 msgid "Worked, not Confirmed" msgstr "通联过,但未获得确认" -#: application/views/bandmap/list.php:89 application/views/bandmap/list.php:315 +#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:316 #: application/views/lookup/lotwuser.php:2 #: application/views/lookup/lotwuser.php:12 #: application/views/search/result.php:70 @@ -7512,265 +7637,268 @@ msgstr "通联过,但未获得确认" msgid "LoTW User" msgstr "LoTW 用户" -#: application/views/bandmap/list.php:90 application/views/bandmap/list.php:318 +#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:319 #: application/views/components/dxwaterfall.php:18 msgid "New Callsign" msgstr "新呼号" -#: application/views/bandmap/list.php:91 application/views/bandmap/list.php:316 +#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 #: application/views/components/dxwaterfall.php:16 msgid "New Continent" msgstr "新大洲" -#: application/views/bandmap/list.php:92 application/views/bandmap/list.php:317 +#: application/views/bandmap/list.php:93 application/views/bandmap/list.php:318 msgid "New Country" msgstr "新 DXCC 实体" -#: application/views/bandmap/list.php:93 +#: application/views/bandmap/list.php:94 msgid "Worked Before" msgstr "以前通联过" -#: application/views/bandmap/list.php:94 +#: application/views/bandmap/list.php:95 #, php-format msgid "Worked on %s with %s" msgstr "通联于%s使用%s" -#: application/views/bandmap/list.php:102 -#: application/views/bandmap/list.php:575 +#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:598 msgid "de" msgstr "de" -#: application/views/bandmap/list.php:103 +#: application/views/bandmap/list.php:104 msgid "spotted" msgstr "已 spot" -#: application/views/bandmap/list.php:106 +#: application/views/bandmap/list.php:107 msgid "Fresh spot (< 5 minutes old)" msgstr "新 spot(< 5分钟)" -#: application/views/bandmap/list.php:107 #: application/views/bandmap/list.php:108 -#: application/views/bandmap/list.php:320 -#: application/views/bandmap/list.php:510 +#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:511 #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:8 -#: application/views/logbookadvanced/index.php:482 -#: application/views/logbookadvanced/index.php:1002 -#: application/views/logbookadvanced/useroptions.php:283 +#: application/views/logbookadvanced/index.php:488 +#: application/views/logbookadvanced/index.php:1015 +#: application/views/logbookadvanced/useroptions.php:289 #: application/views/qso/edit_ajax.php:42 #: application/views/simplefle/index.php:84 msgid "Contest" msgstr "比赛" -#: application/views/bandmap/list.php:109 +#: application/views/bandmap/list.php:110 msgid "Click to view" msgstr "点击查看" -#: application/views/bandmap/list.php:110 +#: application/views/bandmap/list.php:111 msgid "on QRZ.com" msgstr "在 QRZ.com" -#: application/views/bandmap/list.php:111 +#: application/views/bandmap/list.php:112 #, php-format msgid "Click to view %s on QRZ.com" msgstr "点击即可在 QRZ.com 上查看 %s" -#: application/views/bandmap/list.php:112 +#: application/views/bandmap/list.php:113 msgid "See details for" msgstr "查看详细信息" -#: application/views/bandmap/list.php:113 +#: application/views/bandmap/list.php:114 msgid "Worked on" msgstr "通联于" -#: application/views/bandmap/list.php:114 +#: application/views/bandmap/list.php:115 msgid "Not worked on this band" msgstr "此频段上未通联" -#: application/views/bandmap/list.php:115 +#: application/views/bandmap/list.php:116 #, php-format msgid "LoTW User. Last upload was %d days ago" msgstr "LOTW 用户.上次上传是在 %d 天前" -#: application/views/bandmap/list.php:116 +#: application/views/bandmap/list.php:117 msgid "Click to view on POTA.app" msgstr "点击即可在 POTA.app 上查看" -#: application/views/bandmap/list.php:117 +#: application/views/bandmap/list.php:118 msgid "Click to view on SOTL.as" msgstr "点击即可在 SOTL.as 上查看" -#: application/views/bandmap/list.php:118 +#: application/views/bandmap/list.php:119 msgid "Click to view on cqgma.org" msgstr "点击即可在 cqgma.org 上查看" -#: application/views/bandmap/list.php:119 +#: application/views/bandmap/list.php:120 msgid "Click to view on IOTA-World.org" msgstr "点击即可在 IOTA-World.org 上查看" -#: application/views/bandmap/list.php:120 +#: application/views/bandmap/list.php:121 msgid "See details for continent" msgstr "查看各大洲详情" -#: application/views/bandmap/list.php:121 +#: application/views/bandmap/list.php:122 #, php-format msgid "See details for continent %s" msgstr "查看 %s 大洲的详情" -#: application/views/bandmap/list.php:122 +#: application/views/bandmap/list.php:123 msgid "See details for CQ Zone" msgstr "查看 CQ 分区的详细信息" -#: application/views/bandmap/list.php:123 +#: application/views/bandmap/list.php:124 #, php-format msgid "See details for CQ Zone %s" msgstr "查看CQ分区%s的细节" -#: application/views/bandmap/list.php:124 +#: application/views/bandmap/list.php:125 msgid "in" msgstr "在" -#: application/views/bandmap/list.php:127 +#: application/views/bandmap/list.php:128 msgid "Exit Fullscreen" msgstr "退出全屏" -#: application/views/bandmap/list.php:128 -#: application/views/bandmap/list.php:214 +#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:215 msgid "Toggle Fullscreen" msgstr "切换全屏" -#: application/views/bandmap/list.php:129 +#: application/views/bandmap/list.php:130 msgid "" "Band filtering is controlled by your radio when CAT connection is enabled" msgstr "启用 CAT 连接时,将由你的电台控制频段滤波" -#: application/views/bandmap/list.php:130 +#: application/views/bandmap/list.php:131 msgid "Click to prepare logging" msgstr "点击以准备记录" -#: application/views/bandmap/list.php:132 +#: application/views/bandmap/list.php:133 msgid "(requires CAT connection)" msgstr "(需要 CAT 连接)" -#: application/views/bandmap/list.php:133 +#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:561 +#: application/views/bandmap/list.php:562 msgid "Spotter" msgstr "Spotter" -#: application/views/bandmap/list.php:134 +#: application/views/bandmap/list.php:135 #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:234 #: application/views/hamsat/index.php:31 #: application/views/logbookadvanced/edit.php:7 -#: application/views/logbookadvanced/index.php:503 -#: application/views/logbookadvanced/index.php:996 -#: application/views/logbookadvanced/useroptions.php:271 +#: application/views/logbookadvanced/index.php:509 +#: application/views/logbookadvanced/index.php:1009 +#: application/views/logbookadvanced/useroptions.php:277 #: application/views/qso/edit_ajax.php:183 application/views/qso/index.php:386 -#: application/views/view_log/qso.php:228 +#: application/views/view_log/qso.php:240 msgid "Comment" msgstr "备注" -#: application/views/bandmap/list.php:135 +#: application/views/bandmap/list.php:136 +#: application/views/bandmap/list.php:548 #: application/views/contesting/index.php:65 msgid "Age" msgstr "年龄" -#: application/views/bandmap/list.php:137 +#: application/views/bandmap/list.php:138 msgid "Incoming" msgstr "传入" -#: application/views/bandmap/list.php:138 +#: application/views/bandmap/list.php:139 msgid "Outgoing" msgstr "传出" -#: application/views/bandmap/list.php:139 +#: application/views/bandmap/list.php:140 #: application/views/components/dxwaterfall.php:15 msgid "spots" msgstr "spots" -#: application/views/bandmap/list.php:140 +#: application/views/bandmap/list.php:141 msgid "spot" msgstr "spot" -#: application/views/bandmap/list.php:141 +#: application/views/bandmap/list.php:142 msgid "spotters" msgstr "spotters" -#: application/views/bandmap/list.php:144 +#: application/views/bandmap/list.php:145 msgid "Please Wait" msgstr "请等待" -#: application/views/bandmap/list.php:145 +#: application/views/bandmap/list.php:146 #, php-format msgid "Please wait %s seconds before sending another callsign to the QSO form" msgstr "请等待%s秒,然后再提交另一个呼号" -#: application/views/bandmap/list.php:148 +#: application/views/bandmap/list.php:149 msgid "Loading spots..." msgstr "加载 spot 中…" -#: application/views/bandmap/list.php:149 +#: application/views/bandmap/list.php:150 msgid "No spots found" msgstr "未找到 spot" -#: application/views/bandmap/list.php:150 +#: application/views/bandmap/list.php:151 msgid "No data available" msgstr "暂无数据" -#: application/views/bandmap/list.php:151 +#: application/views/bandmap/list.php:152 msgid "No spots found for selected filters" msgstr "未找到符合筛选条件的 spot" -#: application/views/bandmap/list.php:152 +#: application/views/bandmap/list.php:153 msgid "Error loading spots. Please try again." msgstr "加载 spot 出错。请重试。" -#: application/views/bandmap/list.php:155 +#: application/views/bandmap/list.php:156 msgid "Show all modes" msgstr "显示所有模式" -#: application/views/bandmap/list.php:156 +#: application/views/bandmap/list.php:157 msgid "Show all spots" msgstr "显示所有 spot" -#: application/views/bandmap/list.php:161 +#: application/views/bandmap/list.php:162 msgid "Draw Spotters" msgstr "绘制 spotter" -#: application/views/bandmap/list.php:162 +#: application/views/bandmap/list.php:163 msgid "Extend Map" msgstr "扩展地图" -#: application/views/bandmap/list.php:163 +#: application/views/bandmap/list.php:164 msgid "Show Day/Night" msgstr "显示白天/夜晚" -#: application/views/bandmap/list.php:164 +#: application/views/bandmap/list.php:165 msgid "Your QTH" msgstr "你的 QTH" -#: application/views/bandmap/list.php:200 +#: application/views/bandmap/list.php:201 msgid "Return to Home" msgstr "返回主页" -#: application/views/bandmap/list.php:203 +#: application/views/bandmap/list.php:204 #: application/views/interface_assets/header.php:303 msgid "DX Cluster" msgstr "DX Cluster" -#: application/views/bandmap/list.php:207 +#: application/views/bandmap/list.php:208 msgid "DX Cluster Help" msgstr "DX Cluster 帮助" -#: application/views/bandmap/list.php:210 +#: application/views/bandmap/list.php:211 msgid "Compact Mode - Hide/Show Menu" msgstr "紧凑模式 - 隐藏/显示菜单" -#: application/views/bandmap/list.php:237 +#: application/views/bandmap/list.php:238 msgid "TRX:" msgstr "TRX:" -#: application/views/bandmap/list.php:239 -#: application/views/bandmap/list.php:313 +#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:314 #: application/views/contesting/index.php:24 #: application/views/contesting/index.php:62 #: application/views/contesting/index.php:159 @@ -7778,314 +7906,281 @@ msgstr "TRX:" msgid "None" msgstr "无" -#: application/views/bandmap/list.php:240 +#: application/views/bandmap/list.php:241 #: application/views/contesting/index.php:160 #: application/views/qso/index.php:414 msgid "Live - WebSocket" msgstr "直播 - WebSocket" -#: application/views/bandmap/list.php:242 application/views/qso/index.php:416 +#: application/views/bandmap/list.php:243 application/views/qso/index.php:416 msgid "Polling - " msgstr "轮询中 - " -#: application/views/bandmap/list.php:251 +#: application/views/bandmap/list.php:252 msgid "de:" msgstr "的:" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "Select all continents" msgstr "选择所有大洲" -#: application/views/bandmap/list.php:253 +#: application/views/bandmap/list.php:254 msgid "World" msgstr "世界" -#: application/views/bandmap/list.php:254 +#: application/views/bandmap/list.php:255 msgid "Toggle Africa continent filter" msgstr "切换非洲大洲筛选器" -#: application/views/bandmap/list.php:255 +#: application/views/bandmap/list.php:256 msgid "Toggle Antarctica continent filter" msgstr "切换南极洲大洲筛选器" -#: application/views/bandmap/list.php:256 +#: application/views/bandmap/list.php:257 msgid "Toggle Asia continent filter" msgstr "切换亚洲大洲筛选器" -#: application/views/bandmap/list.php:257 +#: application/views/bandmap/list.php:258 msgid "Toggle Europe continent filter" msgstr "切换欧洲大洲筛选器" -#: application/views/bandmap/list.php:258 +#: application/views/bandmap/list.php:259 msgid "Toggle North America continent filter" msgstr "切换北美洲大洲筛选器" -#: application/views/bandmap/list.php:259 +#: application/views/bandmap/list.php:260 msgid "Toggle Oceania continent filter" msgstr "切换大洋洲大洲筛选器" -#: application/views/bandmap/list.php:260 +#: application/views/bandmap/list.php:261 msgid "Toggle South America continent filter" msgstr "切换南美洲大洲筛选器" -#: application/views/bandmap/list.php:273 +#: application/views/bandmap/list.php:274 msgid "Advanced Filters" msgstr "高级筛选器" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "Hold" msgstr "保持" -#: application/views/bandmap/list.php:287 +#: application/views/bandmap/list.php:288 msgid "and click to select multiple options" msgstr "然后点击以选择多个选项" -#: application/views/bandmap/list.php:293 +#: application/views/bandmap/list.php:294 msgid "DXCC-Status" msgstr "DXCC 状态" -#: application/views/bandmap/list.php:304 +#: application/views/bandmap/list.php:305 #: application/views/components/dxwaterfall.php:31 msgid "Phone" msgstr "Phone" -#: application/views/bandmap/list.php:306 +#: application/views/bandmap/list.php:307 #: application/views/components/dxwaterfall.php:35 msgid "Digi" msgstr "Digi" -#: application/views/bandmap/list.php:311 +#: application/views/bandmap/list.php:312 msgid "Required Flags" msgstr "必需标记" -#: application/views/bandmap/list.php:319 +#: application/views/bandmap/list.php:320 msgid "Worked Callsign" msgstr "已通联的呼号" -#: application/views/bandmap/list.php:321 +#: application/views/bandmap/list.php:322 msgid "DX Spot" msgstr "DX Spot" -#: application/views/bandmap/list.php:323 +#: application/views/bandmap/list.php:324 msgid "Additional Flags" msgstr "额外标记" -#: application/views/bandmap/list.php:330 +#: application/views/bandmap/list.php:331 msgid "Fresh (< 5 min)" msgstr "新(< 5 分钟)" -#: application/views/bandmap/list.php:335 +#: application/views/bandmap/list.php:336 msgid "Spots de Continent" msgstr "大洲 spot" -#: application/views/bandmap/list.php:349 +#: application/views/bandmap/list.php:350 msgid "Spotted Station Continent" msgstr "发现的 spot 所属大洲" -#: application/views/bandmap/list.php:409 +#: application/views/bandmap/list.php:410 msgid "Apply Filters" msgstr "应用筛选器" -#: application/views/bandmap/list.php:420 +#: application/views/bandmap/list.php:421 msgid "Filter Favorites" msgstr "过滤器收藏夹" -#: application/views/bandmap/list.php:430 +#: application/views/bandmap/list.php:431 msgid "Clear all filters except De Continent" msgstr "清除所有非大洲的筛选器" -#: application/views/bandmap/list.php:436 +#: application/views/bandmap/list.php:437 msgid "Toggle 160m band filter" msgstr "切换 160 米频段筛选器" -#: application/views/bandmap/list.php:440 +#: application/views/bandmap/list.php:441 msgid "Toggle 80m band filter" msgstr "切换 80 米频段筛选器" -#: application/views/bandmap/list.php:441 +#: application/views/bandmap/list.php:442 msgid "Toggle 60m band filter" msgstr "切换 60 米频段筛选器" -#: application/views/bandmap/list.php:442 +#: application/views/bandmap/list.php:443 msgid "Toggle 40m band filter" msgstr "切换 40 米频段筛选器" -#: application/views/bandmap/list.php:443 +#: application/views/bandmap/list.php:444 msgid "Toggle 30m band filter" msgstr "切换 30 米频段筛选器" -#: application/views/bandmap/list.php:444 +#: application/views/bandmap/list.php:445 msgid "Toggle 20m band filter" msgstr "切换 20 米频段筛选器" -#: application/views/bandmap/list.php:445 +#: application/views/bandmap/list.php:446 msgid "Toggle 17m band filter" msgstr "切换 17 米频段筛选器" -#: application/views/bandmap/list.php:446 +#: application/views/bandmap/list.php:447 msgid "Toggle 15m band filter" msgstr "切换 15 米频段筛选器" -#: application/views/bandmap/list.php:447 +#: application/views/bandmap/list.php:448 msgid "Toggle 12m band filter" msgstr "切换 12 米频段筛选器" -#: application/views/bandmap/list.php:448 +#: application/views/bandmap/list.php:449 msgid "Toggle 10m band filter" msgstr "切换 10 米频段筛选器" -#: application/views/bandmap/list.php:452 +#: application/views/bandmap/list.php:453 msgid "Toggle 6m band filter" msgstr "切换 6 米波段滤波器" -#: application/views/bandmap/list.php:456 +#: application/views/bandmap/list.php:457 msgid "Toggle VHF bands filter" msgstr "切换 15 米频段筛选器" -#: application/views/bandmap/list.php:457 +#: application/views/bandmap/list.php:458 msgid "Toggle UHF bands filter" msgstr "切换 UHF 频段筛选器" -#: application/views/bandmap/list.php:458 +#: application/views/bandmap/list.php:459 msgid "Toggle SHF bands filter" msgstr "切换 SHF 频段筛选器" -#: application/views/bandmap/list.php:478 +#: application/views/bandmap/list.php:479 msgid "Loading submodes..." msgstr "正在加载子模式..." -#: application/views/bandmap/list.php:483 +#: application/views/bandmap/list.php:484 msgid "Toggle LoTW User filter" msgstr "切换 LoTW 用户筛选器" -#: application/views/bandmap/list.php:484 +#: application/views/bandmap/list.php:485 msgid "LoTW users" msgstr "LoTW 用户" -#: application/views/bandmap/list.php:490 +#: application/views/bandmap/list.php:491 msgid "Toggle DX Spot filter (spotted continent ≠ spotter continent)" msgstr "切换 DX Spot 筛选器(spotted continent ≠ spotter continent)" -#: application/views/bandmap/list.php:491 -#: application/views/bandmap/list.php:570 +#: application/views/bandmap/list.php:492 +#: application/views/bandmap/list.php:593 msgid "DX" msgstr "DX" -#: application/views/bandmap/list.php:493 +#: application/views/bandmap/list.php:494 msgid "Toggle New Continents filter" msgstr "切换新大陆过滤器" -#: application/views/bandmap/list.php:494 +#: application/views/bandmap/list.php:495 msgid "New Continents" msgstr "新大洲" -#: application/views/bandmap/list.php:496 +#: application/views/bandmap/list.php:497 msgid "Toggle New Entities filter" msgstr "切换新区域过滤器" -#: application/views/bandmap/list.php:497 +#: application/views/bandmap/list.php:498 msgid "New Entities" msgstr "新实体" -#: application/views/bandmap/list.php:499 +#: application/views/bandmap/list.php:500 msgid "Toggle New Callsigns filter" msgstr "切换新呼号过滤器" -#: application/views/bandmap/list.php:500 +#: application/views/bandmap/list.php:501 msgid "New Callsigns" msgstr "新呼号" -#: application/views/bandmap/list.php:506 +#: application/views/bandmap/list.php:507 msgid "Toggle Fresh spots filter (< 5 minutes old)" msgstr "切换新 spot 筛选器(< 5 分钟)" -#: application/views/bandmap/list.php:507 +#: application/views/bandmap/list.php:508 msgid "Fresh" msgstr "新的" -#: application/views/bandmap/list.php:509 +#: application/views/bandmap/list.php:510 msgid "Toggle Contest filter" msgstr "切换大洲筛选器" -#: application/views/bandmap/list.php:512 +#: application/views/bandmap/list.php:513 msgid "Toggle Geo Hunter (POTA/SOTA/IOTA/WWFF)" msgstr "切换 Geo 猎人(POTA/SOTA/IOTA/WWFF)" -#: application/views/bandmap/list.php:513 +#: application/views/bandmap/list.php:514 msgid "Referenced" msgstr "已参考" -#: application/views/bandmap/list.php:519 +#: application/views/bandmap/list.php:520 msgid "Open DX Map view" msgstr "打开 DX 地图页面" -#: application/views/bandmap/list.php:520 +#: application/views/bandmap/list.php:521 msgid "DX Map" msgstr "DX 地图" -#: application/views/bandmap/list.php:544 -msgid "Search spots..." -msgstr "搜索 spot…" +#: application/views/bandmap/list.php:545 +msgid "Search Column" +msgstr "搜索列" -#: application/views/bandmap/list.php:557 -msgid "Note: Map shows DXCC entity locations, not actual spot locations" -msgstr "注意:地图显示的是 DXCC 实体位置,而不是实际位置" +#: application/views/bandmap/list.php:546 +msgid "All Columns" +msgstr "全部列" -#: application/views/bandmap/list.php:565 -msgid "Age in minutes" -msgstr "时长(分钟)" +#: application/views/bandmap/list.php:547 +msgid "Spot Info" +msgstr "Spot 信息" -#: application/views/bandmap/list.php:567 -msgid "Freq" -msgstr "频率" - -#: application/views/bandmap/list.php:569 +#: application/views/bandmap/list.php:552 +#: application/views/bandmap/list.php:592 #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 msgid "Submode" msgstr "子模式" -#: application/views/bandmap/list.php:570 -msgid "Spotted Callsign" -msgstr "已 spot 的呼号" +#: application/views/bandmap/list.php:554 +msgid "DX Station" +msgstr "DX 电台" -#: application/views/bandmap/list.php:573 -msgid "Flag" -msgstr "标记" - -#: application/views/bandmap/list.php:574 -msgid "DXCC Entity" -msgstr "EXCC 实体" - -#: application/views/bandmap/list.php:574 +#: application/views/bandmap/list.php:558 +#: application/views/bandmap/list.php:597 msgid "Entity" msgstr "实体" -#: application/views/bandmap/list.php:575 -msgid "Spotter Callsign" -msgstr "spotter 呼号" - -#: application/views/bandmap/list.php:576 -msgid "Spotter Continent" -msgstr "spotter 大洲" - -#: application/views/bandmap/list.php:577 -msgid "Spotter CQ Zone" -msgstr "spotter CQ 区" - -#: application/views/bandmap/list.php:578 -msgid "Last QSO Date" -msgstr "最后QSO日期" - -#: application/views/bandmap/list.php:579 -msgid "Special" -msgstr "特别" - -#: application/views/bandmap/list.php:579 -msgid "Special Flags" -msgstr "特别标记" - -#: application/views/bandmap/list.php:580 +#: application/views/bandmap/list.php:559 +#: application/views/bandmap/list.php:603 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:57 @@ -8093,6 +8188,60 @@ msgstr "特别标记" msgid "Message" msgstr "消息" +#: application/views/bandmap/list.php:563 +#: application/views/bandmap/list.php:599 +msgid "Spotter Continent" +msgstr "spotter 大洲" + +#: application/views/bandmap/list.php:564 +#: application/views/bandmap/list.php:600 +msgid "Spotter CQ Zone" +msgstr "spotter CQ 区" + +#: application/views/bandmap/list.php:567 +msgid "Search spots..." +msgstr "搜索 spot…" + +#: application/views/bandmap/list.php:580 +msgid "Note: Map shows DXCC entity locations, not actual spot locations" +msgstr "注意:地图显示的是 DXCC 实体位置,而不是实际位置" + +#: application/views/bandmap/list.php:588 +msgid "Age in minutes" +msgstr "时长(分钟)" + +#: application/views/bandmap/list.php:590 +msgid "Freq" +msgstr "频率" + +#: application/views/bandmap/list.php:593 +msgid "Spotted Callsign" +msgstr "已 spot 的呼号" + +#: application/views/bandmap/list.php:596 +msgid "Flag" +msgstr "标记" + +#: application/views/bandmap/list.php:597 +msgid "DXCC Entity" +msgstr "EXCC 实体" + +#: application/views/bandmap/list.php:598 +msgid "Spotter Callsign" +msgstr "spotter 呼号" + +#: application/views/bandmap/list.php:601 +msgid "Last QSO Date" +msgstr "最后QSO日期" + +#: application/views/bandmap/list.php:602 +msgid "Special" +msgstr "特别" + +#: application/views/bandmap/list.php:602 +msgid "Special Flags" +msgstr "特别标记" + #: application/views/bands/bandedges.php:2 msgid "Please enter valid numbers for frequency" msgstr "请输入有效的频率" @@ -8360,7 +8509,7 @@ msgid "" msgstr "RSGB-IOTA 比赛,此信息包含 IOTA 名称(非 IOTA 编号)。" #: application/views/cabrillo/index.php:48 -#: application/views/logbookadvanced/index.php:833 +#: application/views/logbookadvanced/index.php:843 #: application/views/oqrs/showrequests.php:31 #: application/views/qso/index.php:369 #: application/views/station_profile/create.php:77 @@ -8477,19 +8626,19 @@ msgstr "" #: application/views/logbookadvanced/edit.php:189 #: application/views/logbookadvanced/edit.php:195 #: application/views/logbookadvanced/edit.php:201 -#: application/views/logbookadvanced/index.php:552 -#: application/views/logbookadvanced/index.php:563 -#: application/views/logbookadvanced/index.php:596 -#: application/views/logbookadvanced/index.php:607 -#: application/views/logbookadvanced/index.php:619 -#: application/views/logbookadvanced/index.php:630 -#: application/views/logbookadvanced/index.php:643 -#: application/views/logbookadvanced/index.php:654 -#: application/views/logbookadvanced/index.php:665 -#: application/views/logbookadvanced/index.php:674 -#: application/views/logbookadvanced/index.php:689 -#: application/views/logbookadvanced/index.php:697 -#: application/views/logbookadvanced/index.php:706 +#: application/views/logbookadvanced/index.php:562 +#: application/views/logbookadvanced/index.php:573 +#: application/views/logbookadvanced/index.php:606 +#: application/views/logbookadvanced/index.php:617 +#: application/views/logbookadvanced/index.php:629 +#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:653 +#: application/views/logbookadvanced/index.php:664 +#: application/views/logbookadvanced/index.php:675 +#: application/views/logbookadvanced/index.php:684 +#: application/views/logbookadvanced/index.php:699 +#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:716 #: application/views/lookup/lotwuser.php:12 #: application/views/qso/edit_ajax.php:445 #: application/views/qso/edit_ajax.php:478 @@ -8523,15 +8672,17 @@ msgstr "" #: application/views/station_profile/edit.php:439 #: application/views/station_profile/edit.php:446 #: application/views/stationsetup/locationlist.php:48 +#: application/views/stationsetup/locationlist.php:58 #: application/views/user/edit.php:368 application/views/user/edit.php:379 #: application/views/user/edit.php:389 application/views/user/edit.php:400 #: application/views/user/edit.php:410 application/views/user/edit.php:420 #: application/views/user/edit.php:430 application/views/user/edit.php:471 #: application/views/user/edit.php:482 application/views/user/edit.php:603 -#: application/views/user/edit.php:657 application/views/user/edit.php:986 -#: application/views/user/edit.php:1002 application/views/user/edit.php:1010 -#: application/views/user/edit.php:1030 application/views/user/edit.php:1059 -#: application/views/user/edit.php:1091 application/views/user/edit.php:1116 +#: application/views/user/edit.php:657 application/views/user/edit.php:695 +#: application/views/user/edit.php:994 application/views/user/edit.php:1010 +#: application/views/user/edit.php:1018 application/views/user/edit.php:1038 +#: application/views/user/edit.php:1067 application/views/user/edit.php:1099 +#: application/views/user/edit.php:1124 msgid "Yes" msgstr "是" @@ -8546,19 +8697,19 @@ msgstr "是" #: application/views/logbookadvanced/edit.php:190 #: application/views/logbookadvanced/edit.php:196 #: application/views/logbookadvanced/edit.php:202 -#: application/views/logbookadvanced/index.php:553 -#: application/views/logbookadvanced/index.php:564 -#: application/views/logbookadvanced/index.php:597 -#: application/views/logbookadvanced/index.php:608 -#: application/views/logbookadvanced/index.php:620 -#: application/views/logbookadvanced/index.php:631 -#: application/views/logbookadvanced/index.php:644 -#: application/views/logbookadvanced/index.php:655 -#: application/views/logbookadvanced/index.php:666 -#: application/views/logbookadvanced/index.php:675 -#: application/views/logbookadvanced/index.php:690 -#: application/views/logbookadvanced/index.php:698 -#: application/views/logbookadvanced/index.php:707 +#: application/views/logbookadvanced/index.php:563 +#: application/views/logbookadvanced/index.php:574 +#: application/views/logbookadvanced/index.php:607 +#: application/views/logbookadvanced/index.php:618 +#: application/views/logbookadvanced/index.php:630 +#: application/views/logbookadvanced/index.php:641 +#: application/views/logbookadvanced/index.php:654 +#: application/views/logbookadvanced/index.php:665 +#: application/views/logbookadvanced/index.php:676 +#: application/views/logbookadvanced/index.php:685 +#: application/views/logbookadvanced/index.php:700 +#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:717 #: application/views/lookup/lotwuser.php:14 #: application/views/qso/edit_ajax.php:444 #: application/views/qso/edit_ajax.php:477 @@ -8592,16 +8743,17 @@ msgstr "是" #: application/views/station_profile/edit.php:438 #: application/views/station_profile/edit.php:445 #: application/views/stationsetup/locationlist.php:46 +#: application/views/stationsetup/locationlist.php:56 #: application/views/user/edit.php:369 application/views/user/edit.php:380 #: application/views/user/edit.php:390 application/views/user/edit.php:401 #: application/views/user/edit.php:411 application/views/user/edit.php:421 #: application/views/user/edit.php:431 application/views/user/edit.php:472 #: application/views/user/edit.php:483 application/views/user/edit.php:574 #: application/views/user/edit.php:578 application/views/user/edit.php:604 -#: application/views/user/edit.php:659 application/views/user/edit.php:985 -#: application/views/user/edit.php:1001 application/views/user/edit.php:1029 -#: application/views/user/edit.php:1060 application/views/user/edit.php:1090 -#: application/views/user/edit.php:1115 +#: application/views/user/edit.php:659 application/views/user/edit.php:696 +#: application/views/user/edit.php:993 application/views/user/edit.php:1009 +#: application/views/user/edit.php:1037 application/views/user/edit.php:1068 +#: application/views/user/edit.php:1098 application/views/user/edit.php:1123 msgid "No" msgstr "否" @@ -8632,7 +8784,7 @@ msgid "First QSO" msgstr "第一个 QSO" #: application/views/callstats/index.php:150 -#: application/views/stationsetup/stationsetup.php:131 +#: application/views/stationsetup/stationsetup.php:133 msgid "Last QSO" msgstr "最近通联" @@ -8739,8 +8891,8 @@ msgid "Callsign DXCC identification" msgstr "呼号 DXCC 识别" #: application/views/calltester/index.php:10 -#: application/views/interface_assets/footer.php:878 -#: application/views/logbookadvanced/index.php:838 +#: application/views/interface_assets/footer.php:882 +#: application/views/logbookadvanced/index.php:848 #: application/views/zonechecker/index.php:10 msgid "Callsign: " msgstr "呼号: " @@ -9018,8 +9170,8 @@ msgstr "请先设置用户名及密码,并且启用台站的日志上传功能 #: application/views/clublog/export.php:34 #: application/views/hrdlog/export.php:34 -#: application/views/logbookadvanced/index.php:1020 -#: application/views/logbookadvanced/useroptions.php:323 +#: application/views/logbookadvanced/index.php:1033 +#: application/views/logbookadvanced/useroptions.php:329 #: application/views/qrz/export.php:39 #: application/views/qslprint/qslprint.php:32 #: application/views/qslprint/qsolist.php:15 @@ -9324,7 +9476,7 @@ msgstr "ADIF 名称" #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:43 #: application/views/contesting/edit.php:46 -#: application/views/debug/index.php:424 application/views/debug/index.php:435 +#: application/views/debug/index.php:463 application/views/debug/index.php:474 #: application/views/interface_assets/header.php:586 #: application/views/mode/create.php:46 application/views/mode/create.php:48 #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 @@ -9394,7 +9546,7 @@ msgstr "创建" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:34 #: application/views/qso/edit_ajax.php:688 -#: application/views/view_log/qso.php:381 +#: application/views/view_log/qso.php:393 msgid "Contest Name" msgstr "竞赛名称" @@ -9470,8 +9622,8 @@ msgid "Locator" msgstr "定位地图" #: application/views/contesting/index.php:69 -#: application/views/logbookadvanced/index.php:927 -#: application/views/logbookadvanced/useroptions.php:91 +#: application/views/logbookadvanced/index.php:940 +#: application/views/logbookadvanced/useroptions.php:97 #: application/views/qso/edit_ajax.php:177 msgid "QTH" msgstr "QTH" @@ -9585,11 +9737,11 @@ msgstr "标识符" #: application/views/options/appearance.php:84 #: application/views/station_profile/create.php:311 #: application/views/station_profile/edit.php:337 -#: application/views/stationsetup/stationsetup.php:76 +#: application/views/stationsetup/stationsetup.php:78 #: application/views/user/edit.php:450 application/views/user/edit.php:451 #: application/views/user/edit.php:504 application/views/user/edit.php:513 #: application/views/user/edit.php:668 application/views/user/edit.php:678 -#: application/views/user/edit.php:982 +#: application/views/user/edit.php:990 msgid "Enabled" msgstr "已启用" @@ -9680,7 +9832,8 @@ msgid "Cron List" msgstr "Cron 列表" #: application/views/cron/index.php:65 -#: application/views/stationsetup/stationsetup.php:126 +#: application/views/stationsetup/stationsetup.php:33 +#: application/views/stationsetup/stationsetup.php:128 msgid "ID" msgstr "ID" @@ -9860,9 +10013,9 @@ msgstr "待通联" #: application/views/dashboard/index.php:433 #: application/views/oqrs/qsolist.php:51 application/views/oqrs/qsolist.php:131 #: application/views/oqrs/qsolist.php:160 -#: application/views/qslprint/qsolist.php:62 -#: application/views/qslprint/qsolist.php:142 -#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:78 +#: application/views/qslprint/qsolist.php:158 +#: application/views/qslprint/qsolist.php:187 #: application/views/qso/edit_ajax.php:441 #: application/views/qso/edit_ajax.php:502 #: application/views/qso/edit_ajax.php:547 @@ -9884,10 +10037,10 @@ msgstr "待通联" #: application/views/visitor/index.php:291 #: application/views/visitor/index.php:314 #: application/views/visitor/index.php:332 -#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:408 -#: src/QSLManager/QSO.php:509 src/QSLManager/QSO.php:563 -#: src/QSLManager/QSO.php:652 src/QSLManager/QSO.php:709 -#: src/QSLManager/QSO.php:798 +#: application/views/widgets/qsos.php:19 src/QSLManager/QSO.php:420 +#: src/QSLManager/QSO.php:521 src/QSLManager/QSO.php:575 +#: src/QSLManager/QSO.php:664 src/QSLManager/QSO.php:721 +#: src/QSLManager/QSO.php:810 msgid "Sent" msgstr "已发送" @@ -9897,9 +10050,9 @@ msgstr "已发送" #: application/views/dashboard/index.php:439 #: application/views/oqrs/qsolist.php:93 application/views/oqrs/qsolist.php:144 #: application/views/oqrs/qsolist.php:175 -#: application/views/qslprint/qsolist.php:104 -#: application/views/qslprint/qsolist.php:155 -#: application/views/qslprint/qsolist.php:186 +#: application/views/qslprint/qsolist.php:120 +#: application/views/qslprint/qsolist.php:171 +#: application/views/qslprint/qsolist.php:202 #: application/views/qso/edit_ajax.php:474 #: application/views/qso/edit_ajax.php:515 #: application/views/qso/edit_ajax.php:560 @@ -9920,10 +10073,10 @@ msgstr "已发送" #: application/views/view_log/partial/log_ajax.php:628 #: application/views/visitor/index.php:296 #: application/views/visitor/index.php:319 -#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:453 -#: src/QSLManager/QSO.php:536 src/QSLManager/QSO.php:613 -#: src/QSLManager/QSO.php:679 src/QSLManager/QSO.php:759 -#: src/QSLManager/QSO.php:826 +#: application/views/visitor/index.php:337 src/QSLManager/QSO.php:465 +#: src/QSLManager/QSO.php:548 src/QSLManager/QSO.php:625 +#: src/QSLManager/QSO.php:691 src/QSLManager/QSO.php:771 +#: src/QSLManager/QSO.php:838 msgid "Received" msgstr "已收到" @@ -9931,17 +10084,17 @@ msgstr "已收到" #: application/views/logbookadvanced/edit.php:170 #: application/views/logbookadvanced/edit.php:177 #: application/views/logbookadvanced/edit.php:203 -#: application/views/logbookadvanced/index.php:554 -#: application/views/logbookadvanced/index.php:565 -#: application/views/logbookadvanced/index.php:598 -#: application/views/logbookadvanced/index.php:609 -#: application/views/logbookadvanced/index.php:621 -#: application/views/logbookadvanced/index.php:632 -#: application/views/logbookadvanced/index.php:645 -#: application/views/logbookadvanced/index.php:656 +#: application/views/logbookadvanced/index.php:564 +#: application/views/logbookadvanced/index.php:575 +#: application/views/logbookadvanced/index.php:608 +#: application/views/logbookadvanced/index.php:619 +#: application/views/logbookadvanced/index.php:631 +#: application/views/logbookadvanced/index.php:642 +#: application/views/logbookadvanced/index.php:655 +#: application/views/logbookadvanced/index.php:666 #: application/views/oqrs/qsolist.php:57 application/views/oqrs/qsolist.php:99 -#: application/views/qslprint/qsolist.php:68 -#: application/views/qslprint/qsolist.php:110 +#: application/views/qslprint/qsolist.php:84 +#: application/views/qslprint/qsolist.php:126 #: application/views/qso/edit_ajax.php:446 #: application/views/qso/edit_ajax.php:479 #: application/views/qso/edit_ajax.php:507 @@ -9964,18 +10117,18 @@ msgstr "已收到" #: application/views/view_log/partial/log_ajax.php:474 #: application/views/view_log/partial/log_ajax.php:611 #: application/views/view_log/partial/log_ajax.php:634 -#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:414 -#: src/QSLManager/QSO.php:459 src/QSLManager/QSO.php:521 -#: src/QSLManager/QSO.php:544 src/QSLManager/QSO.php:658 -#: src/QSLManager/QSO.php:685 src/QSLManager/QSO.php:810 -#: src/QSLManager/QSO.php:835 +#: application/views/visitor/index.php:301 src/QSLManager/QSO.php:426 +#: src/QSLManager/QSO.php:471 src/QSLManager/QSO.php:533 +#: src/QSLManager/QSO.php:556 src/QSLManager/QSO.php:670 +#: src/QSLManager/QSO.php:697 src/QSLManager/QSO.php:822 +#: src/QSLManager/QSO.php:847 msgid "Requested" msgstr "已(被)请求" #: application/views/dashboard/index.php:386 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" -msgstr "Logbook of the World(LoTW)" +msgstr "Logbook of the World (LoTW)" #: application/views/dashboard/index.php:449 msgid "VUCC-Grids" @@ -9994,6 +10147,38 @@ msgstr "上次更新时间:%s。" msgid "Data provided by HAMqsl." msgstr "数据由 HAMqsl 提供。" +#: application/views/dashboard/index.php:527 +msgid "K-index: Planetary geomagnetic activity (0-9)" +msgstr "K-index: 行星地磁活动指数 (0-9)" + +#: application/views/dashboard/index.php:528 +msgid "A-index: Daily geomagnetic activity index" +msgstr "A-index: 日地磁活动指数" + +#: application/views/dashboard/index.php:529 +msgid "Solar Flux Index" +msgstr "太阳通量指数" + +#: application/views/dashboard/index.php:530 +msgid "Solar Wind speed (km/s)" +msgstr "太阳风速度 (km/s)" + +#: application/views/dashboard/index.php:531 +msgid "Signal Noise ratio" +msgstr "信噪比" + +#: application/views/dashboard/index.php:532 +msgid "X-Ray solar flux level" +msgstr "X射线太阳通量等级" + +#: application/views/dashboard/index.php:533 +msgid "Sunspot Number" +msgstr "太阳黑子数" + +#: application/views/dashboard/index.php:534 +msgid "Aurora activity level (Kp borealis)" +msgstr "极光活动等级(Kp 指数)" + #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" msgstr "一周内每日通联 QSO 数" @@ -10073,7 +10258,7 @@ msgstr "开始时间" #: application/views/dayswithqso/index.php:160 #: application/views/dayswithqso/index.php:182 #: application/views/lotw/satupdate.php:7 -#: application/views/timeline/index.php:202 +#: application/views/timeline/index.php:205 msgid "End Date" msgstr "结束时间" @@ -10401,7 +10586,8 @@ msgstr "成功" #: application/views/debug/index.php:141 application/views/debug/index.php:152 #: application/views/debug/index.php:163 application/views/debug/index.php:174 -#: application/views/debug/index.php:186 application/views/debug/index.php:426 +#: application/views/debug/index.php:186 application/views/debug/index.php:465 +#: application/views/debug/index.php:476 msgid "Failed" msgstr "失败" @@ -10476,107 +10662,126 @@ msgstr "模块" #: application/views/debug/index.php:257 application/views/debug/index.php:268 #: application/views/debug/index.php:279 application/views/debug/index.php:290 #: application/views/debug/index.php:301 application/views/debug/index.php:312 +#: application/views/debug/index.php:324 application/views/debug/index.php:337 +#: application/views/debug/index.php:350 msgid "Installed" msgstr "已安装" #: application/views/debug/index.php:259 application/views/debug/index.php:270 #: application/views/debug/index.php:281 application/views/debug/index.php:292 #: application/views/debug/index.php:303 application/views/debug/index.php:314 +#: application/views/debug/index.php:326 application/views/debug/index.php:339 +#: application/views/debug/index.php:352 msgid "Not Installed" msgstr "未安装" -#: application/views/debug/index.php:413 +#: application/views/debug/index.php:452 msgid "Cache Information" msgstr "缓存信息" -#: application/views/debug/index.php:417 +#: application/views/debug/index.php:456 msgid "Current Configuration" msgstr "当前配置" -#: application/views/debug/index.php:420 +#: application/views/debug/index.php:459 msgctxt "Cache Adapter" msgid "Primary adapter" msgstr "主连接器" -#: application/views/debug/index.php:431 +#: application/views/debug/index.php:470 msgctxt "Cache Backup Adapter (Fallback)" msgid "Backup adapter" msgstr "备连接器" -#: application/views/debug/index.php:440 +#: application/views/debug/index.php:481 #, php-format msgctxt "Cache Path" msgid "Path for %s adapter" msgstr "连接器路径%s" -#: application/views/debug/index.php:444 +#: application/views/debug/index.php:485 msgctxt "Cache Key Prefix" msgid "Key Prefix" -msgstr "" +msgstr "键前缀" -#: application/views/debug/index.php:450 -msgid "" -"Cache is currently using the backup adapter because the primary is " -"unavailable." -msgstr "由于主设备不可用,目前缓存系统正在使用备用适配器。" - -#: application/views/debug/index.php:454 -msgid "Cache is working properly. Everything okay!" -msgstr "缓存运行正常。一切就绪!" - -#: application/views/debug/index.php:459 +#: application/views/debug/index.php:491 msgid "Cache Details" msgstr "缓存详情" -#: application/views/debug/index.php:462 +#: application/views/debug/index.php:494 msgctxt "Cache Details" msgid "Total Size" msgstr "总容量" -#: application/views/debug/index.php:468 +#: application/views/debug/index.php:500 msgctxt "Cache Key" msgid "Number of Keys" -msgstr "" +msgstr "键数量" -#: application/views/debug/index.php:479 +#: application/views/debug/index.php:510 +msgid "Cache is working properly. Everything okay!" +msgstr "缓存运行正常。一切就绪!" + +#: application/views/debug/index.php:514 +msgid "" +"Cache is currently using the backup adapter because the primary is " +"unavailable. Check your file permissions, PHP extensions, and/or your " +"network connection to the services (if using redis/memcached)." +msgstr "" +"因主适配器不可用缓存启用备用适配器。请检查文件权限、PHP 扩展,以及 redis/" +"memcached 服务的网络连接(如使用该缓存服务)。" + +#: application/views/debug/index.php:518 +#, php-format +msgid "" +"Cache does not work! Currently the system is using a %s adapter. Check your " +"file permissions, PHP extensions and/or your network connection to the " +"services (if using redis/memcached). You can continue using Wavelog, but no " +"values will be cached (which is bad)." +msgstr "" +"缓存失效!当前系统正在使用 %s 适配器。检查你的文件权限、PHP 扩展或者到网络连" +"接(如使用 redis/memcached)。你可以继续使用 Wavelog,但不会缓存任何数据(这会有" +"一些影响)。" + +#: application/views/debug/index.php:526 msgid "Available Adapters" msgstr "可用的连接器" -#: application/views/debug/index.php:496 +#: application/views/debug/index.php:543 msgid "Clear Cache" msgstr "清理缓存" -#: application/views/debug/index.php:543 +#: application/views/debug/index.php:590 msgid "Git Information" msgstr "Git 信息" -#: application/views/debug/index.php:547 +#: application/views/debug/index.php:594 msgid "Branch" msgstr "分支" -#: application/views/debug/index.php:558 application/views/debug/index.php:569 -#: application/views/debug/index.php:579 +#: application/views/debug/index.php:605 application/views/debug/index.php:616 +#: application/views/debug/index.php:626 #: application/views/lotw_views/index.php:95 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:564 +#: application/views/debug/index.php:611 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:621 msgid "Tag" msgstr "标签" -#: application/views/debug/index.php:584 +#: application/views/debug/index.php:631 msgid "Last Fetch" msgstr "上次抓取" -#: application/views/debug/index.php:596 +#: application/views/debug/index.php:643 msgid "Check for new version" msgstr "检查新版本" -#: application/views/debug/index.php:597 +#: application/views/debug/index.php:644 #: application/views/logbookadvanced/checkresult.php:52 #: application/views/logbookadvanced/checkresult.php:68 #: application/views/logbookadvanced/checkresult.php:78 @@ -10584,217 +10789,217 @@ msgstr "检查新版本" msgid "Update now" msgstr "现在升级" -#: application/views/debug/index.php:615 +#: application/views/debug/index.php:662 msgid "File download date" msgstr "文件下载日期" -#: application/views/debug/index.php:619 +#: application/views/debug/index.php:666 msgid "File" msgstr "文件" -#: application/views/debug/index.php:620 +#: application/views/debug/index.php:667 msgid "Last update" msgstr "上次更新" -#: application/views/debug/index.php:624 +#: application/views/debug/index.php:671 msgid "DXCC update from Club Log" msgstr "DXCC 更新(ClubLog)" -#: application/views/debug/index.php:627 application/views/debug/index.php:634 -#: application/views/debug/index.php:640 application/views/debug/index.php:646 -#: application/views/debug/index.php:652 application/views/debug/index.php:658 -#: application/views/debug/index.php:664 application/views/debug/index.php:670 -#: application/views/debug/index.php:676 application/views/debug/index.php:682 -#: application/views/debug/index.php:688 +#: application/views/debug/index.php:674 application/views/debug/index.php:681 +#: application/views/debug/index.php:687 application/views/debug/index.php:693 +#: application/views/debug/index.php:699 application/views/debug/index.php:705 +#: application/views/debug/index.php:711 application/views/debug/index.php:717 +#: application/views/debug/index.php:723 application/views/debug/index.php:729 +#: application/views/debug/index.php:735 #: application/views/station_profile/edit.php:53 msgid "Update" msgstr "更新" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:678 msgid "DOK file download" msgstr "下载 DOK 文件" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:684 msgid "LoTW users download" msgstr "下载 LoTW 用户状态" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:690 msgid "POTA file download" msgstr "下载 POTA 文件" -#: application/views/debug/index.php:649 +#: application/views/debug/index.php:696 msgid "SCP file download" msgstr "下载 SCP 文件" -#: application/views/debug/index.php:655 +#: application/views/debug/index.php:702 msgid "SOTA file download" msgstr "下载 SOTA 文件" -#: application/views/debug/index.php:661 +#: application/views/debug/index.php:708 msgid "WWFF file download" msgstr "下载 WWFF 文件" -#: application/views/debug/index.php:667 +#: application/views/debug/index.php:714 msgid "TLE update" msgstr "TLE 更新" -#: application/views/debug/index.php:673 +#: application/views/debug/index.php:720 msgid "Hams Of Note update" msgstr "更新 Hams of Note" -#: application/views/debug/index.php:679 +#: application/views/debug/index.php:726 msgid "HAMqsl" msgstr "HAMqsl" -#: application/views/debug/index.php:685 +#: application/views/debug/index.php:732 msgid "VUCC Grids" msgstr "VUCC 网格" -#: application/views/debug/index.php:695 +#: application/views/debug/index.php:742 msgid "QSO-DB Maintenance" msgstr "QSO-DB 维护" -#: application/views/debug/index.php:699 +#: application/views/debug/index.php:746 #, 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:737 +#: application/views/debug/index.php:784 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "请标记 QSO 并将其重新分配到现有的电台位置:" -#: application/views/debug/index.php:745 +#: application/views/debug/index.php:792 msgctxt "Stationlocation" msgid "Target Location" msgstr "目标位置" -#: application/views/debug/index.php:746 application/views/debug/index.php:757 +#: application/views/debug/index.php:793 application/views/debug/index.php:804 msgid "Reassign" msgstr "重新分配" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "数据库中的所有 QSO 都有台站相关联" -#: application/views/debug/index.php:766 +#: application/views/debug/index.php:813 msgid "Everything ok" msgstr "一切正常" -#: application/views/debug/index.php:791 +#: application/views/debug/index.php:838 msgid "Albanian" msgstr "阿尔巴尼亚语" -#: application/views/debug/index.php:792 +#: application/views/debug/index.php:839 msgid "Armenian" msgstr "亚美尼亚语" -#: application/views/debug/index.php:793 +#: application/views/debug/index.php:840 msgid "Bosnian" msgstr "波斯尼亚语" -#: application/views/debug/index.php:794 +#: application/views/debug/index.php:841 msgid "Bulgarian" msgstr "保加利亚语" -#: application/views/debug/index.php:795 +#: application/views/debug/index.php:842 msgid "Chinese (Simplified)" msgstr "简体中文" -#: application/views/debug/index.php:796 +#: application/views/debug/index.php:843 msgid "Croatian" msgstr "克罗地亚语" -#: application/views/debug/index.php:797 +#: application/views/debug/index.php:844 msgid "Czech" msgstr "捷克语" -#: application/views/debug/index.php:798 +#: application/views/debug/index.php:845 msgid "Dutch" msgstr "荷兰语" -#: application/views/debug/index.php:799 +#: application/views/debug/index.php:846 msgid "English" msgstr "英语" -#: application/views/debug/index.php:800 +#: application/views/debug/index.php:847 msgid "Estonian" msgstr "爱沙尼亚语" -#: application/views/debug/index.php:801 +#: application/views/debug/index.php:848 msgid "Finnish" msgstr "芬兰语" -#: application/views/debug/index.php:802 +#: application/views/debug/index.php:849 msgid "French" msgstr "法语" -#: application/views/debug/index.php:803 +#: application/views/debug/index.php:850 msgid "German" msgstr "德语" -#: application/views/debug/index.php:804 +#: application/views/debug/index.php:851 msgid "Greek" msgstr "希腊语" -#: application/views/debug/index.php:805 +#: application/views/debug/index.php:852 msgid "Hungarian" msgstr "匈牙利语" -#: application/views/debug/index.php:806 +#: application/views/debug/index.php:853 msgid "Italian" msgstr "意大利语" -#: application/views/debug/index.php:807 +#: application/views/debug/index.php:854 msgid "Japanese" msgstr "日语" -#: application/views/debug/index.php:808 +#: application/views/debug/index.php:855 msgid "Latvian" msgstr "拉脱维亚语" -#: application/views/debug/index.php:809 +#: application/views/debug/index.php:856 msgid "Lithuanian" msgstr "立陶宛语" -#: application/views/debug/index.php:810 +#: application/views/debug/index.php:857 msgid "Montenegrin" msgstr "黑山语" -#: application/views/debug/index.php:811 +#: application/views/debug/index.php:858 msgid "Polish" msgstr "波兰语" -#: application/views/debug/index.php:812 +#: application/views/debug/index.php:859 msgid "Portuguese" msgstr "葡萄牙语" -#: application/views/debug/index.php:813 +#: application/views/debug/index.php:860 msgid "Russian" msgstr "俄语" -#: application/views/debug/index.php:814 +#: application/views/debug/index.php:861 msgid "Serbian" msgstr "塞尔维亚语" -#: application/views/debug/index.php:815 +#: application/views/debug/index.php:862 msgid "Slovak" msgstr "斯洛伐克语" -#: application/views/debug/index.php:816 +#: application/views/debug/index.php:863 msgid "Slovenian" msgstr "斯洛文尼亚语" -#: application/views/debug/index.php:817 +#: application/views/debug/index.php:864 msgid "Spanish" msgstr "西班牙语" -#: application/views/debug/index.php:818 +#: application/views/debug/index.php:865 msgid "Swedish" msgstr "瑞典语" -#: application/views/debug/index.php:819 +#: application/views/debug/index.php:866 msgid "Turkish" msgstr "土耳其语" @@ -10852,7 +11057,7 @@ msgid "Only QSOs with a gridsquare defined will be exported!" msgstr "只有有网格座标的 QSO 才会被导出!" #: application/views/dxcalendar/index.php:13 -#: application/views/view_log/qso.php:495 +#: application/views/view_log/qso.php:507 msgid "QSL Info" msgstr "QSL 信息" @@ -11093,7 +11298,7 @@ msgstr "以下是已在 eQSL 上确认但尚未下载 QSL 卡片图像的 QSO #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 -#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:562 msgid "QSL Message" msgstr "QSL 消息" @@ -11220,31 +11425,32 @@ msgid "QSL Date" msgstr "QSL 日期" #: application/views/eqslcard/index.php:64 -#: application/views/interface_assets/footer.php:2670 -#: application/views/interface_assets/footer.php:2688 -#: application/views/interface_assets/footer.php:2709 -#: application/views/interface_assets/footer.php:2727 +#: application/views/interface_assets/footer.php:2644 +#: application/views/interface_assets/footer.php:2662 +#: application/views/interface_assets/footer.php:2683 +#: application/views/interface_assets/footer.php:2701 #: application/views/qslcard/index.php:77 -#: application/views/view_log/qso.php:786 +#: application/views/view_log/qso.php:798 msgid "View" msgstr "查看" #: application/views/gridmap/index.php:58 -#: application/views/logbookadvanced/index.php:319 -#: application/views/logbookadvanced/index.php:344 +#: application/views/logbookadvanced/index.php:325 #: application/views/logbookadvanced/index.php:350 -#: application/views/logbookadvanced/index.php:421 -#: application/views/logbookadvanced/index.php:435 -#: application/views/logbookadvanced/index.php:445 -#: application/views/logbookadvanced/index.php:449 -#: application/views/logbookadvanced/index.php:453 -#: application/views/logbookadvanced/index.php:457 -#: application/views/logbookadvanced/index.php:475 -#: application/views/logbookadvanced/index.php:479 -#: application/views/logbookadvanced/index.php:483 -#: application/views/logbookadvanced/index.php:504 -#: application/views/logbookadvanced/index.php:508 -#: application/views/logbookadvanced/index.php:683 +#: application/views/logbookadvanced/index.php:356 +#: application/views/logbookadvanced/index.php:427 +#: application/views/logbookadvanced/index.php:441 +#: application/views/logbookadvanced/index.php:451 +#: application/views/logbookadvanced/index.php:455 +#: application/views/logbookadvanced/index.php:459 +#: application/views/logbookadvanced/index.php:463 +#: application/views/logbookadvanced/index.php:481 +#: application/views/logbookadvanced/index.php:485 +#: application/views/logbookadvanced/index.php:489 +#: application/views/logbookadvanced/index.php:510 +#: application/views/logbookadvanced/index.php:514 +#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:693 msgid "Empty" msgstr "空" @@ -11323,7 +11529,7 @@ msgstr "QSO 已标记为导出至 HRDLog Logbook。" #: application/views/search/search_result_ajax.php:456 #: application/views/view_log/partial/log.php:136 #: application/views/view_log/partial/log_ajax.php:670 -#: application/views/view_log/qso.php:598 +#: application/views/view_log/qso.php:610 msgid "Edit QSO" msgstr "编辑 QSO" @@ -11707,76 +11913,76 @@ msgstr "版本信息" msgid "Failed to load the modal. Please try again." msgstr "加载模式失败。请重试。" -#: application/views/interface_assets/footer.php:532 +#: application/views/interface_assets/footer.php:536 msgid "Description:" msgstr "说明:" -#: application/views/interface_assets/footer.php:535 +#: application/views/interface_assets/footer.php:539 msgid "Query description" msgstr "查询说明" -#: application/views/interface_assets/footer.php:551 +#: application/views/interface_assets/footer.php:555 msgid "Your query has been saved!" msgstr "查询已储存!" -#: application/views/interface_assets/footer.php:553 +#: application/views/interface_assets/footer.php:557 #: application/views/search/filter.php:43 msgid "Edit queries" msgstr "编辑查询" -#: application/views/interface_assets/footer.php:555 +#: application/views/interface_assets/footer.php:559 msgid "Stored queries:" msgstr "存储的查询:" -#: application/views/interface_assets/footer.php:560 +#: application/views/interface_assets/footer.php:564 #: application/views/search/filter.php:57 msgid "Run Query" msgstr "执行查询" -#: application/views/interface_assets/footer.php:572 -#: application/views/interface_assets/footer.php:708 -#: application/views/interface_assets/footer.php:778 +#: application/views/interface_assets/footer.php:576 +#: application/views/interface_assets/footer.php:712 +#: application/views/interface_assets/footer.php:782 msgid "Stored Queries" msgstr "存储的查询" -#: application/views/interface_assets/footer.php:577 -#: application/views/interface_assets/footer.php:783 +#: application/views/interface_assets/footer.php:581 +#: application/views/interface_assets/footer.php:787 msgid "You need to make a query before you search!" msgstr "你需要创建查询来进行搜索!" -#: application/views/interface_assets/footer.php:598 -#: application/views/interface_assets/footer.php:735 +#: application/views/interface_assets/footer.php:602 +#: application/views/interface_assets/footer.php:739 #: application/views/search/filter.php:76 msgid "Export to ADIF" msgstr "导出 ADIF" -#: application/views/interface_assets/footer.php:599 -#: application/views/interface_assets/footer.php:736 +#: application/views/interface_assets/footer.php:603 +#: application/views/interface_assets/footer.php:740 #: application/views/search/main.php:31 msgid "Open in the Advanced Logbook" msgstr "在详细日志中打开" -#: application/views/interface_assets/footer.php:643 +#: application/views/interface_assets/footer.php:647 msgid "Warning! Are you sure you want delete this stored query?" msgstr "警告!确定要删除存储的查询?" -#: application/views/interface_assets/footer.php:657 +#: application/views/interface_assets/footer.php:661 msgid "The stored query has been deleted!" msgstr "存储的查询已删除!" -#: application/views/interface_assets/footer.php:666 +#: application/views/interface_assets/footer.php:670 msgid "The stored query could not be deleted. Please try again!" msgstr "无法删除存储的查询,请重试!" -#: application/views/interface_assets/footer.php:692 +#: application/views/interface_assets/footer.php:696 msgid "The query description has been updated!" msgstr "查询说明已更新!" -#: application/views/interface_assets/footer.php:696 +#: application/views/interface_assets/footer.php:700 msgid "Something went wrong with the save. Please try again!" msgstr "存储出错,请重试!" -#: application/views/interface_assets/footer.php:825 +#: application/views/interface_assets/footer.php:829 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -11785,15 +11991,15 @@ msgstr "" "请稍等,你选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果你十分确认,请忽" "略该警告。" -#: application/views/interface_assets/footer.php:879 +#: application/views/interface_assets/footer.php:883 msgid "Count: " msgstr "总数: " -#: application/views/interface_assets/footer.php:880 +#: application/views/interface_assets/footer.php:884 msgid "Grids: " msgstr "网格: " -#: application/views/interface_assets/footer.php:1103 +#: application/views/interface_assets/footer.php:1107 #: application/views/logbookadvanced/index.php:13 #: application/views/map/qso_map.php:7 #: application/views/satellite/flightpath.php:11 @@ -11801,57 +12007,61 @@ msgctxt "Map Options" msgid "Gridsquares" msgstr "网格" -#: application/views/interface_assets/footer.php:1478 -#: application/views/interface_assets/footer.php:1482 -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1622 -#: application/views/interface_assets/footer.php:1626 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1301 +msgid "Location Lookup failed. Please check browser console." +msgstr "位置查询失败,请检查浏览器控制台。" + +#: application/views/interface_assets/footer.php:1452 +#: application/views/interface_assets/footer.php:1456 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1596 +#: application/views/interface_assets/footer.php:1600 +#: application/views/interface_assets/footer.php:1603 msgid "grid square" msgstr "网格" -#: application/views/interface_assets/footer.php:1485 -#: application/views/interface_assets/footer.php:1629 +#: application/views/interface_assets/footer.php:1459 +#: application/views/interface_assets/footer.php:1603 msgid "Total count" msgstr "总数" -#: application/views/interface_assets/footer.php:2407 +#: application/views/interface_assets/footer.php:2381 msgid "QSL Card for " msgstr "QSL 卡片至 " -#: application/views/interface_assets/footer.php:2427 +#: application/views/interface_assets/footer.php:2401 msgid "Warning! Are you sure you want to delete this QSL card?" msgstr "警告!确定要删除这个 QSL 卡片吗?" -#: application/views/interface_assets/footer.php:2467 +#: application/views/interface_assets/footer.php:2441 #: application/views/view_log/qso.php:43 msgid "eQSL Card" msgstr "电子 QSL 卡片" -#: application/views/interface_assets/footer.php:2469 +#: application/views/interface_assets/footer.php:2443 msgid "eQSL Card for " msgstr "eQSL 卡片至 " -#: application/views/interface_assets/footer.php:2681 -#: application/views/interface_assets/footer.php:2720 -#: application/views/view_log/qso.php:776 +#: application/views/interface_assets/footer.php:2655 +#: application/views/interface_assets/footer.php:2694 +#: application/views/view_log/qso.php:788 msgid "QSL image file" msgstr "QSL 图片文件" -#: application/views/interface_assets/footer.php:2700 +#: application/views/interface_assets/footer.php:2674 msgid "Front QSL Card:" msgstr "QSL 卡片正面:" -#: application/views/interface_assets/footer.php:2738 +#: application/views/interface_assets/footer.php:2712 msgid "Back QSL Card:" msgstr "QSL 卡片背面:" -#: application/views/interface_assets/footer.php:2749 -#: application/views/interface_assets/footer.php:2774 +#: application/views/interface_assets/footer.php:2723 +#: application/views/interface_assets/footer.php:2748 msgid "Add additional QSOs to a QSL Card" msgstr "向一张卡片添加额外的 QSO" -#: application/views/interface_assets/footer.php:2785 +#: application/views/interface_assets/footer.php:2759 msgid "Something went wrong. Please try again!" msgstr "出现了错误,请重试!" @@ -12005,7 +12215,7 @@ msgid "Satellite Pass" msgstr "卫星过境" #: application/views/interface_assets/header.php:321 -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Admin" msgstr "管理员" @@ -12030,7 +12240,7 @@ msgid "Log" msgstr "日志" #: application/views/interface_assets/header.php:398 -#: application/views/logbookadvanced/index.php:739 +#: application/views/logbookadvanced/index.php:749 #: application/views/oqrs/index.php:28 application/views/user/edit.php:492 #: application/views/visitor/layout/header.php:95 msgid "Search Callsign" @@ -12127,7 +12337,7 @@ msgid "Gridsquare Zone checker" msgstr "网格分区检查器" #: application/views/interface_assets/header.php:548 -#: application/views/logbookadvanced/index.php:880 +#: application/views/logbookadvanced/index.php:890 msgid "Help" msgstr "帮助" @@ -12258,7 +12468,7 @@ msgid "Total height of one label" msgstr "单个标签的垂直高度" #: application/views/labels/create.php:105 -#: application/views/labels/edit.php:107 application/views/labels/index.php:80 +#: application/views/labels/edit.php:107 application/views/labels/index.php:81 msgid "Font Size" msgstr "字体大小" @@ -12316,14 +12526,14 @@ msgstr "纸张方向" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Landscape" msgstr "水平" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 -#: application/views/labels/index.php:60 +#: application/views/labels/index.php:61 msgctxt "Orientation" msgid "Portrait" msgstr "垂直" @@ -12340,47 +12550,52 @@ msgid "" msgstr "用于展示用途的标签名称,建议选择一个有明确含义的名称。" #: application/views/labels/index.php:2 -#: application/views/logbookadvanced/startatform.php:39 +#: application/views/logbookadvanced/startatform.php:92 msgid "Mark QSL as printed" msgstr "标记 QSL 已打印" -#: application/views/labels/index.php:3 application/views/labels/index.php:128 +#: application/views/labels/index.php:3 application/views/labels/index.php:129 msgid "Print" msgstr "打印" -#: application/views/labels/index.php:33 +#: application/views/labels/index.php:4 +#: application/views/logbookadvanced/index.php:82 +msgid "Label Print Options" +msgstr "标签打印选项" + +#: application/views/labels/index.php:34 msgid "Create New Label Type" msgstr "创建新标签" -#: application/views/labels/index.php:34 +#: application/views/labels/index.php:35 msgid "Create New Paper Type" msgstr "创建新纸张" -#: application/views/labels/index.php:37 +#: application/views/labels/index.php:38 msgid "Paper types" msgstr "纸张" -#: application/views/labels/index.php:43 application/views/labels/index.php:78 +#: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Width" msgstr "宽度" -#: application/views/labels/index.php:44 application/views/labels/index.php:79 +#: application/views/labels/index.php:45 application/views/labels/index.php:80 msgid "Height" msgstr "长度" -#: application/views/labels/index.php:45 +#: application/views/labels/index.php:46 msgid "Used by labels" msgstr "已被标签使用" -#: application/views/labels/index.php:46 +#: application/views/labels/index.php:47 msgid "Orientation" msgstr "方向" -#: application/views/labels/index.php:71 +#: application/views/labels/index.php:72 msgid "Label types" msgstr "标签类型" -#: application/views/labels/index.php:81 +#: application/views/labels/index.php:82 #: application/views/logbookadvanced/statecheckresult.php:12 #: application/views/map/qso_map.php:21 #: application/views/statistics/index.php:108 @@ -12388,54 +12603,64 @@ msgstr "标签类型" msgid "QSOs" msgstr "QSO" -#: application/views/labels/index.php:82 +#: application/views/labels/index.php:83 msgid "Use For Print" msgstr "使用它来打印" -#: application/views/labels/index.php:92 +#: application/views/labels/index.php:93 msgid "No paper assigned" msgstr "未选定纸张" -#: application/views/labels/index.php:117 +#: application/views/labels/index.php:118 msgid "QSL Card Labels Pending" msgstr "待打印的 QSL 卡片标签" -#: application/views/labels/index.php:126 +#: application/views/labels/index.php:127 msgid "QSOs Waiting" msgstr "QSO 等待中" -#: application/views/labels/index.php:127 +#: application/views/labels/index.php:128 msgid "View QSOs" msgstr "查看 QSO" -#: application/views/labels/startatform.php:4 -#: application/views/logbookadvanced/startatform.php:3 +#: application/views/labels/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:20 +msgid "Include my call?" +msgstr "包含我的呼号?" + +#: application/views/labels/startatform.php:33 +#: application/views/logbookadvanced/startatform.php:32 msgid "Include Grid?" msgstr "包含网格?" -#: application/views/labels/startatform.php:10 -#: application/views/logbookadvanced/startatform.php:9 +#: application/views/labels/startatform.php:45 +#: application/views/logbookadvanced/startatform.php:44 msgid "" "Include reference? (SIG, SOTA, POTA, IOTA, WWFF; If available in location)" msgstr "包含编号?(SIG, SOTA, POTA, IOTA, WWFF; 如存在则显示)" -#: application/views/labels/startatform.php:16 +#: application/views/labels/startatform.php:57 msgid "Include Via (if filled)?" msgstr "包含 Via(如提供)?" -#: application/views/labels/startatform.php:22 +#: application/views/labels/startatform.php:69 msgid "Include QSLMSG (if filled)?" msgstr "是否包含 QSLMSG (如果已经填写)?" -#: application/views/labels/startatform.php:28 +#: application/views/labels/startatform.php:81 msgid "Include TNX message?" msgstr "是否包含 TNX 信息?" -#: application/views/labels/startatform.php:34 -#: application/views/logbookadvanced/startatform.php:33 +#: application/views/labels/startatform.php:94 +#: application/views/logbookadvanced/startatform.php:105 msgid "Start printing at?" msgstr "开始打印编号?" +#: application/views/labels/startatform.php:100 +#: application/views/logbookadvanced/startatform.php:111 +msgid "Enter the starting position for label printing" +msgstr "输入标签打印的起始位置" + #: application/views/logbookadvanced/callbookdialog.php:5 msgid "" "If a QSO has a 4‑char locator (e.g., JO90), try to refine it using callbook " @@ -12583,21 +12808,21 @@ msgstr "DXCC CQ 分区" #: application/views/user/edit.php:530 #: application/views/view_log/partial/log.php:22 #: application/views/view_log/partial/log_ajax.php:228 -#: application/views/view_log/qso.php:668 -#: application/views/view_log/qso.php:672 -#: application/views/view_log/qso.php:676 #: application/views/view_log/qso.php:680 -#: application/views/view_log/qso.php:686 -#: application/views/view_log/qso.php:693 -#: application/views/view_log/qso.php:700 -#: application/views/view_log/qso.php:707 -#: application/views/view_log/qso.php:714 -#: application/views/view_log/qso.php:721 -#: application/views/view_log/qso.php:728 -#: application/views/view_log/qso.php:735 -#: application/views/view_log/qso.php:742 -#: application/views/view_log/qso.php:749 +#: application/views/view_log/qso.php:684 +#: application/views/view_log/qso.php:688 +#: application/views/view_log/qso.php:692 +#: application/views/view_log/qso.php:698 +#: application/views/view_log/qso.php:705 +#: application/views/view_log/qso.php:712 +#: application/views/view_log/qso.php:719 +#: application/views/view_log/qso.php:726 +#: application/views/view_log/qso.php:733 +#: application/views/view_log/qso.php:740 +#: application/views/view_log/qso.php:747 #: application/views/view_log/qso.php:754 +#: application/views/view_log/qso.php:761 +#: application/views/view_log/qso.php:766 msgid "Station" msgstr "电台站" @@ -12664,7 +12889,7 @@ msgstr "数据修复工具" #: application/views/logbookadvanced/dbtoolsdialog.php:6 msgid "Wiki Help" -msgstr "Wiki帮助" +msgstr "Wiki 帮助" #: application/views/logbookadvanced/dbtoolsdialog.php:8 msgid "" @@ -12674,88 +12899,92 @@ msgstr "" "警告。此工具可能会对你的数据造成危险,只有在你知道如何操作的情况下才应该使" "用。" -#: application/views/logbookadvanced/dbtoolsdialog.php:12 +#: application/views/logbookadvanced/dbtoolsdialog.php:19 +msgid "All Station Locations" +msgstr "全部电台位置" + +#: application/views/logbookadvanced/dbtoolsdialog.php:33 msgid "Check all QSOs in the logbook for incorrect CQ Zones" msgstr "检查日志簿中所有 QSO 是否存在错误的 CQ 分区" -#: application/views/logbookadvanced/dbtoolsdialog.php:13 +#: application/views/logbookadvanced/dbtoolsdialog.php:34 msgid "Use Wavelog to determine CQ Zone for all QSOs." msgstr "使用 Wavelog 确定所有 QSO 的 CQ 分区。" -#: application/views/logbookadvanced/dbtoolsdialog.php:17 -#: application/views/logbookadvanced/dbtoolsdialog.php:28 -#: application/views/logbookadvanced/dbtoolsdialog.php:39 -#: application/views/logbookadvanced/dbtoolsdialog.php:50 -#: application/views/logbookadvanced/dbtoolsdialog.php:61 -#: application/views/logbookadvanced/dbtoolsdialog.php:72 -#: application/views/logbookadvanced/dbtoolsdialog.php:83 -#: application/views/logbookadvanced/dbtoolsdialog.php:96 -#: application/views/logbookadvanced/dbtoolsdialog.php:108 +#: application/views/logbookadvanced/dbtoolsdialog.php:38 +#: application/views/logbookadvanced/dbtoolsdialog.php:49 +#: application/views/logbookadvanced/dbtoolsdialog.php:60 +#: application/views/logbookadvanced/dbtoolsdialog.php:71 +#: application/views/logbookadvanced/dbtoolsdialog.php:82 +#: application/views/logbookadvanced/dbtoolsdialog.php:93 +#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:117 +#: application/views/logbookadvanced/dbtoolsdialog.php:129 msgid "Check" msgstr "检查" -#: application/views/logbookadvanced/dbtoolsdialog.php:23 +#: application/views/logbookadvanced/dbtoolsdialog.php:44 msgid "Check all QSOs in the logbook for incorrect ITU Zones" msgstr "检查日志簿中所有 QSO 是否存在错误的 ITU 分区" -#: application/views/logbookadvanced/dbtoolsdialog.php:24 +#: application/views/logbookadvanced/dbtoolsdialog.php:45 msgid "Use Wavelog to determine ITU Zone for all QSOs." msgstr "使用 Wavelog 确定所有 QSO 的 ITU 分区。" -#: application/views/logbookadvanced/dbtoolsdialog.php:34 +#: application/views/logbookadvanced/dbtoolsdialog.php:55 msgid "Check Gridsquares" msgstr "检查网格" -#: application/views/logbookadvanced/dbtoolsdialog.php:35 +#: application/views/logbookadvanced/dbtoolsdialog.php:56 msgid "Check gridsquares that does not match the DXCC" msgstr "检查不匹配 DXCC 的网格" -#: application/views/logbookadvanced/dbtoolsdialog.php:45 +#: application/views/logbookadvanced/dbtoolsdialog.php:66 msgid "Fix Continent" msgstr "修正大洲" -#: application/views/logbookadvanced/dbtoolsdialog.php:46 +#: application/views/logbookadvanced/dbtoolsdialog.php:67 msgid "Update missing or incorrect continent information" msgstr "更新缺失或不正确的大洲信息" -#: application/views/logbookadvanced/dbtoolsdialog.php:57 +#: application/views/logbookadvanced/dbtoolsdialog.php:78 msgid "Update missing state/province information" msgstr "更新缺失的州/省信息" -#: application/views/logbookadvanced/dbtoolsdialog.php:67 +#: application/views/logbookadvanced/dbtoolsdialog.php:88 #: application/views/logbookadvanced/index.php:68 msgid "Update Distances" msgstr "更新距离" -#: application/views/logbookadvanced/dbtoolsdialog.php:68 +#: application/views/logbookadvanced/dbtoolsdialog.php:89 msgid "Calculate and update distance information for QSOs" msgstr "计算并更新 QSO 的距离信息" -#: application/views/logbookadvanced/dbtoolsdialog.php:78 +#: application/views/logbookadvanced/dbtoolsdialog.php:99 msgid "Check all QSOs in the logbook for incorrect DXCC" msgstr "检查日志簿中所有 QSO 的 DXCC 正确性" -#: application/views/logbookadvanced/dbtoolsdialog.php:79 +#: application/views/logbookadvanced/dbtoolsdialog.php:100 msgid "Use Wavelog to determine DXCC for all QSOs." msgstr "使用 Wavelog 确定所有 QSO 的 DXCC。" -#: application/views/logbookadvanced/dbtoolsdialog.php:90 +#: application/views/logbookadvanced/dbtoolsdialog.php:111 msgid "Lookup QSOs with missing grid in callbook" msgstr "查找呼号簿中缺少网格的 QSO" -#: application/views/logbookadvanced/dbtoolsdialog.php:91 +#: application/views/logbookadvanced/dbtoolsdialog.php:112 msgid "Use callbook lookup to set gridsquare" msgstr "使用呼号簿查找来设置网格" -#: application/views/logbookadvanced/dbtoolsdialog.php:92 +#: application/views/logbookadvanced/dbtoolsdialog.php:113 msgid "This is limited to 150 callsigns for each run!" msgstr "每次执行限制 150 个呼号!" -#: application/views/logbookadvanced/dbtoolsdialog.php:103 +#: application/views/logbookadvanced/dbtoolsdialog.php:124 msgid "Check IOTA against DXCC" msgstr "检查 IOTA 是否符合 DXCC" -#: application/views/logbookadvanced/dbtoolsdialog.php:104 +#: application/views/logbookadvanced/dbtoolsdialog.php:125 msgid "Use Wavelog to check IOTA against DXCC" msgstr "使用 Wavelog 检查 IOTA 是否符合 DXCC" @@ -12800,10 +13029,10 @@ msgid "DARC DOK" msgstr "DARC DOK" #: application/views/logbookadvanced/edit.php:31 -#: application/views/logbookadvanced/index.php:990 -#: application/views/logbookadvanced/useroptions.php:250 +#: application/views/logbookadvanced/index.php:1003 +#: application/views/logbookadvanced/useroptions.php:256 #: application/views/qso/edit_ajax.php:328 application/views/qso/index.php:497 -#: application/views/view_log/qso.php:481 +#: application/views/view_log/qso.php:493 msgid "Region" msgstr "区" @@ -12872,9 +13101,9 @@ msgid "QSL Sent Method" msgstr "QSL 发送方式" #: application/views/logbookadvanced/edit.php:53 -#: application/views/logbookadvanced/index.php:682 -#: application/views/logbookadvanced/index.php:930 -#: application/views/logbookadvanced/useroptions.php:97 +#: application/views/logbookadvanced/index.php:692 +#: application/views/logbookadvanced/index.php:943 +#: application/views/logbookadvanced/useroptions.php:103 msgid "QSL via" msgstr "QSL Via" @@ -12898,84 +13127,84 @@ msgstr "接收频段" #: application/views/logbookadvanced/edit.php:191 #: application/views/logbookadvanced/edit.php:197 #: application/views/logbookadvanced/edit.php:204 -#: application/views/logbookadvanced/index.php:497 -#: application/views/logbookadvanced/index.php:850 +#: application/views/logbookadvanced/index.php:503 +#: application/views/logbookadvanced/index.php:860 msgid "Invalid" msgstr "无效" #: application/views/logbookadvanced/edit.php:179 #: application/views/logbookadvanced/edit.php:205 -#: application/views/logbookadvanced/index.php:567 -#: application/views/logbookadvanced/index.php:611 -#: application/views/logbookadvanced/index.php:634 -#: application/views/logbookadvanced/index.php:658 +#: application/views/logbookadvanced/index.php:577 +#: application/views/logbookadvanced/index.php:621 +#: application/views/logbookadvanced/index.php:644 +#: application/views/logbookadvanced/index.php:668 msgid "Verified" msgstr "已验证" #: application/views/logbookadvanced/edit.php:210 -#: application/views/logbookadvanced/index.php:575 #: application/views/logbookadvanced/index.php:585 +#: application/views/logbookadvanced/index.php:595 #: application/views/oqrs/qsolist.php:73 application/views/oqrs/qsolist.php:115 #: application/views/oqrs/showrequests.php:8 #: application/views/qslprint/qslprint.php:7 -#: application/views/qslprint/qsolist.php:84 -#: application/views/qslprint/qsolist.php:126 -#: application/views/qslprint/qsolist.php:215 +#: application/views/qslprint/qsolist.php:100 +#: application/views/qslprint/qsolist.php:142 +#: application/views/qslprint/qsolist.php:231 #: application/views/qso/edit_ajax.php:458 #: application/views/qso/edit_ajax.php:491 application/views/qso/index.php:735 #: application/views/search/search_result_ajax.php:205 #: application/views/search/search_result_ajax.php:247 #: application/views/view_log/partial/log_ajax.php:307 #: application/views/view_log/partial/log_ajax.php:345 -#: src/QSLManager/QSO.php:437 src/QSLManager/QSO.php:480 +#: src/QSLManager/QSO.php:449 src/QSLManager/QSO.php:492 msgid "Direct" msgstr "直邮" #: application/views/logbookadvanced/edit.php:211 -#: application/views/logbookadvanced/index.php:574 #: application/views/logbookadvanced/index.php:584 +#: application/views/logbookadvanced/index.php:594 #: application/views/oqrs/qsolist.php:70 application/views/oqrs/qsolist.php:112 #: application/views/oqrs/request.php:45 #: application/views/oqrs/request_grouped.php:48 #: application/views/oqrs/showrequests.php:7 #: application/views/qslprint/qslprint.php:6 -#: application/views/qslprint/qsolist.php:81 -#: application/views/qslprint/qsolist.php:123 -#: application/views/qslprint/qsolist.php:214 +#: application/views/qslprint/qsolist.php:97 +#: application/views/qslprint/qsolist.php:139 +#: application/views/qslprint/qsolist.php:230 #: application/views/qso/edit_ajax.php:459 #: application/views/qso/edit_ajax.php:492 application/views/qso/index.php:736 #: application/views/search/search_result_ajax.php:202 #: application/views/search/search_result_ajax.php:244 #: application/views/view_log/partial/log_ajax.php:304 #: application/views/view_log/partial/log_ajax.php:342 -#: src/QSLManager/QSO.php:434 src/QSLManager/QSO.php:477 +#: src/QSLManager/QSO.php:446 src/QSLManager/QSO.php:489 msgid "Bureau" msgstr "卡片局" #: application/views/logbookadvanced/edit.php:212 -#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:586 +#: application/views/logbookadvanced/index.php:596 #: application/views/oqrs/qsolist.php:79 application/views/oqrs/qsolist.php:121 #: application/views/oqrs/showrequests.php:9 #: application/views/qslprint/qslprint.php:8 -#: application/views/qslprint/qsolist.php:90 -#: application/views/qslprint/qsolist.php:132 -#: application/views/qslprint/qsolist.php:216 +#: application/views/qslprint/qsolist.php:106 +#: application/views/qslprint/qsolist.php:148 +#: application/views/qslprint/qsolist.php:232 #: application/views/qso/edit_ajax.php:460 #: application/views/qso/edit_ajax.php:493 application/views/qso/index.php:737 #: application/views/search/search_result_ajax.php:211 #: application/views/search/search_result_ajax.php:253 #: application/views/view_log/partial/log_ajax.php:313 #: application/views/view_log/partial/log_ajax.php:351 -#: src/QSLManager/QSO.php:443 src/QSLManager/QSO.php:486 +#: src/QSLManager/QSO.php:455 src/QSLManager/QSO.php:498 msgid "Electronic" msgstr "电子" #: application/views/logbookadvanced/edit.php:213 -#: application/views/logbookadvanced/index.php:577 #: application/views/logbookadvanced/index.php:587 +#: application/views/logbookadvanced/index.php:597 #: application/views/oqrs/qsolist.php:118 -#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:145 #: application/views/qso/edit_ajax.php:461 #: application/views/qso/edit_ajax.php:494 application/views/qso/index.php:738 #: application/views/search/search_result_ajax.php:250 @@ -13322,76 +13551,92 @@ msgstr "网格" msgid "Non DXCC matching gridsquare" msgstr "DXCC 匹配失败的网格" -#: application/views/logbookadvanced/index.php:310 +#: application/views/logbookadvanced/index.php:316 msgid "From" msgstr "开始日期" -#: application/views/logbookadvanced/index.php:314 +#: application/views/logbookadvanced/index.php:320 msgid "To" msgstr "截止日期" -#: application/views/logbookadvanced/index.php:318 -#: application/views/logbookadvanced/index.php:903 -#: application/views/logbookadvanced/useroptions.php:34 +#: application/views/logbookadvanced/index.php:324 +#: application/views/logbookadvanced/index.php:916 +#: application/views/logbookadvanced/useroptions.php:40 msgid "Dx" msgstr "对方呼号(Dx)" -#: application/views/logbookadvanced/index.php:396 +#: application/views/logbookadvanced/index.php:402 msgctxt "Propagation Mode" msgid "None/Empty" msgstr "无/空" -#: application/views/logbookadvanced/index.php:507 +#: application/views/logbookadvanced/index.php:513 msgid "" "Distance in kilometers. Search will look for distances greater than or equal " "to this value." msgstr "距离(公里)。搜索将查找大于或等于此值的项目。" -#: application/views/logbookadvanced/index.php:513 +#: application/views/logbookadvanced/index.php:517 +#: application/views/logbookadvanced/index.php:907 +#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/satellite/passtable.php:9 +#: application/views/satellite/skedtable.php:10 +#: application/views/satellite/skedtable.php:37 +#: application/views/sattimers/index.php:46 +msgid "Duration" +msgstr "持续时间" + +#: application/views/logbookadvanced/index.php:517 +msgid "" +"Duration in minutes. Search will look for durations greater than or equal to " +"this value." +msgstr "时长(分钟)。搜索将查找大于或等于该值的时长。" + +#: application/views/logbookadvanced/index.php:523 msgid "Sort column" msgstr "排序列" -#: application/views/logbookadvanced/index.php:515 +#: application/views/logbookadvanced/index.php:525 #: application/views/oqrs/showrequests.php:87 msgid "QSO Time" msgstr "QSO 时间" -#: application/views/logbookadvanced/index.php:518 +#: application/views/logbookadvanced/index.php:528 msgid "QSO Modified" msgstr "QSO 已修改" -#: application/views/logbookadvanced/index.php:522 +#: application/views/logbookadvanced/index.php:532 msgid "Sort direction" msgstr "排序方向" -#: application/views/logbookadvanced/index.php:524 +#: application/views/logbookadvanced/index.php:534 msgid "Descending" msgstr "降序" -#: application/views/logbookadvanced/index.php:525 +#: application/views/logbookadvanced/index.php:535 msgid "Ascending" msgstr "升序" -#: application/views/logbookadvanced/index.php:533 -#: application/views/logbookadvanced/index.php:715 +#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:725 msgid "Apply filters" msgstr "应用筛选器" -#: application/views/logbookadvanced/index.php:543 +#: application/views/logbookadvanced/index.php:553 msgid "QSL Filters" msgstr "筛选 QSL" -#: application/views/logbookadvanced/index.php:549 +#: application/views/logbookadvanced/index.php:559 msgid "QSL sent" msgstr "QSL 已发送" -#: application/views/logbookadvanced/index.php:555 -#: application/views/logbookadvanced/index.php:599 -#: application/views/logbookadvanced/index.php:622 -#: application/views/logbookadvanced/index.php:646 +#: application/views/logbookadvanced/index.php:565 +#: application/views/logbookadvanced/index.php:609 +#: application/views/logbookadvanced/index.php:632 +#: application/views/logbookadvanced/index.php:656 #: application/views/oqrs/qsolist.php:54 application/views/oqrs/qsolist.php:96 -#: application/views/qslprint/qsolist.php:65 -#: application/views/qslprint/qsolist.php:107 +#: application/views/qslprint/qsolist.php:81 +#: application/views/qslprint/qsolist.php:123 #: application/views/qso/edit_ajax.php:447 #: application/views/qso/edit_ajax.php:508 #: application/views/qso/edit_ajax.php:553 @@ -13408,32 +13653,32 @@ msgstr "QSL 已发送" #: application/views/view_log/partial/log_ajax.php:562 #: application/views/view_log/partial/log_ajax.php:608 #: application/views/view_log/partial/log_ajax.php:631 -#: src/QSLManager/QSO.php:411 src/QSLManager/QSO.php:456 -#: src/QSLManager/QSO.php:517 src/QSLManager/QSO.php:580 -#: src/QSLManager/QSO.php:655 src/QSLManager/QSO.php:682 -#: src/QSLManager/QSO.php:726 src/QSLManager/QSO.php:806 +#: src/QSLManager/QSO.php:423 src/QSLManager/QSO.php:468 +#: src/QSLManager/QSO.php:529 src/QSLManager/QSO.php:592 +#: src/QSLManager/QSO.php:667 src/QSLManager/QSO.php:694 +#: src/QSLManager/QSO.php:738 src/QSLManager/QSO.php:818 msgid "Queued" msgstr "已排队" -#: application/views/logbookadvanced/index.php:556 #: application/views/logbookadvanced/index.php:566 -#: application/views/logbookadvanced/index.php:600 +#: application/views/logbookadvanced/index.php:576 #: application/views/logbookadvanced/index.php:610 -#: application/views/logbookadvanced/index.php:623 +#: application/views/logbookadvanced/index.php:620 #: application/views/logbookadvanced/index.php:633 -#: application/views/logbookadvanced/index.php:647 +#: application/views/logbookadvanced/index.php:643 #: application/views/logbookadvanced/index.php:657 #: application/views/logbookadvanced/index.php:667 -#: application/views/logbookadvanced/index.php:676 -#: application/views/logbookadvanced/index.php:699 -#: application/views/logbookadvanced/index.php:708 +#: application/views/logbookadvanced/index.php:677 +#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:709 +#: application/views/logbookadvanced/index.php:718 #: application/views/oqrs/qsolist.php:60 application/views/oqrs/qsolist.php:102 #: application/views/oqrs/qsolist.php:167 #: application/views/oqrs/qsolist.php:182 -#: application/views/qslprint/qsolist.php:71 -#: application/views/qslprint/qsolist.php:113 -#: application/views/qslprint/qsolist.php:178 -#: application/views/qslprint/qsolist.php:193 +#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:129 +#: application/views/qslprint/qsolist.php:194 +#: application/views/qslprint/qsolist.php:209 #: application/views/qso/edit_ajax.php:448 #: application/views/qso/edit_ajax.php:480 #: application/views/qso/edit_ajax.php:509 @@ -13462,279 +13707,279 @@ msgstr "已排队" #: application/views/view_log/partial/log_ajax.php:588 #: application/views/view_log/partial/log_ajax.php:614 #: application/views/view_log/partial/log_ajax.php:637 -#: src/QSLManager/QSO.php:417 src/QSLManager/QSO.php:462 -#: src/QSLManager/QSO.php:513 src/QSLManager/QSO.php:540 -#: src/QSLManager/QSO.php:572 src/QSLManager/QSO.php:621 -#: src/QSLManager/QSO.php:661 src/QSLManager/QSO.php:688 -#: src/QSLManager/QSO.php:718 src/QSLManager/QSO.php:767 -#: src/QSLManager/QSO.php:802 src/QSLManager/QSO.php:831 +#: src/QSLManager/QSO.php:429 src/QSLManager/QSO.php:474 +#: src/QSLManager/QSO.php:525 src/QSLManager/QSO.php:552 +#: src/QSLManager/QSO.php:584 src/QSLManager/QSO.php:633 +#: src/QSLManager/QSO.php:673 src/QSLManager/QSO.php:700 +#: src/QSLManager/QSO.php:730 src/QSLManager/QSO.php:779 +#: src/QSLManager/QSO.php:814 src/QSLManager/QSO.php:843 msgid "Invalid (Ignore)" msgstr "无效(忽略)" -#: application/views/logbookadvanced/index.php:560 +#: application/views/logbookadvanced/index.php:570 msgid "QSL received" msgstr "QSL 接收" -#: application/views/logbookadvanced/index.php:571 +#: application/views/logbookadvanced/index.php:581 msgid "QSL send. method" msgstr "QSL 发送方式" -#: application/views/logbookadvanced/index.php:581 +#: application/views/logbookadvanced/index.php:591 msgid "QSL recv. method" msgstr "QSL 接收方式" -#: application/views/logbookadvanced/index.php:593 +#: application/views/logbookadvanced/index.php:603 msgid "LoTW sent" msgstr "LoTW 已发送" -#: application/views/logbookadvanced/index.php:604 +#: application/views/logbookadvanced/index.php:614 msgid "LoTW received" msgstr "LoTW 接收" -#: application/views/logbookadvanced/index.php:616 +#: application/views/logbookadvanced/index.php:626 msgid "Clublog sent" msgstr "Clublog 已发送" -#: application/views/logbookadvanced/index.php:627 +#: application/views/logbookadvanced/index.php:637 msgid "Clublog received" msgstr "Clublog 已收到" -#: application/views/logbookadvanced/index.php:640 +#: application/views/logbookadvanced/index.php:650 msgid "eQSL sent" msgstr "eQSL 已发送" -#: application/views/logbookadvanced/index.php:651 +#: application/views/logbookadvanced/index.php:661 msgid "eQSL received" msgstr "eQSL 接收" -#: application/views/logbookadvanced/index.php:662 +#: application/views/logbookadvanced/index.php:672 msgid "DCL sent" msgstr "DCL 发送" -#: application/views/logbookadvanced/index.php:671 +#: application/views/logbookadvanced/index.php:681 msgid "DCL received" msgstr "DCL 接收" -#: application/views/logbookadvanced/index.php:686 +#: application/views/logbookadvanced/index.php:696 msgid "QSL Images" msgstr "QSL 图片" -#: application/views/logbookadvanced/index.php:694 +#: application/views/logbookadvanced/index.php:704 msgid "QRZ sent" msgstr "QRZ 已发送" -#: application/views/logbookadvanced/index.php:703 +#: application/views/logbookadvanced/index.php:713 msgid "QRZ received" msgstr "QRZ 已接收" -#: application/views/logbookadvanced/index.php:726 +#: application/views/logbookadvanced/index.php:736 msgid "Quickfilters" msgstr "快速筛选" -#: application/views/logbookadvanced/index.php:731 +#: application/views/logbookadvanced/index.php:741 msgid "Quicksearch with selected: " msgstr "用选中行的条件进行快速搜索: " -#: application/views/logbookadvanced/index.php:736 +#: application/views/logbookadvanced/index.php:746 msgid "Search Date" msgstr "按照日期搜索" -#: application/views/logbookadvanced/index.php:742 +#: application/views/logbookadvanced/index.php:752 msgid "Search DXCC" msgstr "搜索 DXCC" -#: application/views/logbookadvanced/index.php:745 +#: application/views/logbookadvanced/index.php:755 msgid "Search State" msgstr "搜索 州/省" -#: application/views/logbookadvanced/index.php:748 +#: application/views/logbookadvanced/index.php:758 msgid "Search Gridsquare" msgstr "搜索 网格" -#: application/views/logbookadvanced/index.php:751 +#: application/views/logbookadvanced/index.php:761 msgid "Search CQ Zone" msgstr "搜索 CQ 分区" -#: application/views/logbookadvanced/index.php:754 +#: application/views/logbookadvanced/index.php:764 msgid "Search ITU Zone" msgstr "搜索 ITU 分区" -#: application/views/logbookadvanced/index.php:757 +#: application/views/logbookadvanced/index.php:767 msgid "Search Mode" msgstr "搜索 模式" -#: application/views/logbookadvanced/index.php:760 +#: application/views/logbookadvanced/index.php:770 msgid "Search Band" msgstr "搜索 频段" -#: application/views/logbookadvanced/index.php:763 +#: application/views/logbookadvanced/index.php:773 msgid "Search IOTA" msgstr "搜索 IOTA" -#: application/views/logbookadvanced/index.php:766 +#: application/views/logbookadvanced/index.php:776 msgid "Search SOTA" msgstr "搜索 SOTA" -#: application/views/logbookadvanced/index.php:769 +#: application/views/logbookadvanced/index.php:779 msgid "Search POTA" msgstr "搜索 POTA" -#: application/views/logbookadvanced/index.php:772 +#: application/views/logbookadvanced/index.php:782 msgid "Search WWFF" msgstr "搜索 WWFF" -#: application/views/logbookadvanced/index.php:775 +#: application/views/logbookadvanced/index.php:785 msgid "Search Operator" msgstr "搜索操作符" -#: application/views/logbookadvanced/index.php:794 +#: application/views/logbookadvanced/index.php:804 msgid "Warning! Are you sure you want to delete the marked QSO(s)?" msgstr "警告!确定要删除选中的 QSO 吗?" -#: application/views/logbookadvanced/index.php:795 +#: application/views/logbookadvanced/index.php:805 msgid " QSO(s) will be deleted" msgstr " 通联将被删除" -#: application/views/logbookadvanced/index.php:799 +#: application/views/logbookadvanced/index.php:809 msgid "With selected: " msgstr "用选中行进行: " -#: application/views/logbookadvanced/index.php:803 +#: application/views/logbookadvanced/index.php:813 #: application/views/qso/edit_ajax.php:726 msgid "Update from Callbook" msgstr "从呼号簿更新" -#: application/views/logbookadvanced/index.php:804 +#: application/views/logbookadvanced/index.php:814 msgid "Queue Bureau" msgstr "卡片局队列" -#: application/views/logbookadvanced/index.php:805 +#: application/views/logbookadvanced/index.php:815 msgid "Queue Direct" msgstr "直邮卡片队列" -#: application/views/logbookadvanced/index.php:806 +#: application/views/logbookadvanced/index.php:816 msgid "Queue Electronic" msgstr "电子卡片队列" -#: application/views/logbookadvanced/index.php:807 +#: application/views/logbookadvanced/index.php:817 msgid "Sent (Bureau)" msgstr "已发送(卡片局)" -#: application/views/logbookadvanced/index.php:808 +#: application/views/logbookadvanced/index.php:818 msgid "Sent (Direct)" msgstr "已发送(直邮)" -#: application/views/logbookadvanced/index.php:809 +#: application/views/logbookadvanced/index.php:819 msgid "Sent (Electronic)" msgstr "已发送(电子)" -#: application/views/logbookadvanced/index.php:810 +#: application/views/logbookadvanced/index.php:820 msgid "Not Sent" msgstr "未发送" -#: application/views/logbookadvanced/index.php:811 +#: application/views/logbookadvanced/index.php:821 msgid "QSL Not Required" msgstr "未获取 QSL" -#: application/views/logbookadvanced/index.php:812 +#: application/views/logbookadvanced/index.php:822 msgid "Not Received" msgstr "未收到" -#: application/views/logbookadvanced/index.php:813 +#: application/views/logbookadvanced/index.php:823 msgid "Received (Bureau)" msgstr "已接收(卡片局)" -#: application/views/logbookadvanced/index.php:814 +#: application/views/logbookadvanced/index.php:824 msgid "Received (Direct)" msgstr "已接收(直邮)" -#: application/views/logbookadvanced/index.php:815 +#: application/views/logbookadvanced/index.php:825 msgid "Received (Electronic)" msgstr "已接收(电子)" -#: application/views/logbookadvanced/index.php:816 +#: application/views/logbookadvanced/index.php:826 msgid "Create ADIF" msgstr "生成 ADIF" -#: application/views/logbookadvanced/index.php:817 +#: application/views/logbookadvanced/index.php:827 msgid "Print Label" msgstr "打印标签" -#: application/views/logbookadvanced/index.php:818 +#: application/views/logbookadvanced/index.php:828 msgid "QSL Slideshow" msgstr "QSL 展示窗" -#: application/views/logbookadvanced/index.php:826 +#: application/views/logbookadvanced/index.php:836 #: application/views/oqrs/showrequests.php:58 msgid "# Results" msgstr "每页结果数" -#: application/views/logbookadvanced/index.php:847 +#: application/views/logbookadvanced/index.php:857 msgid "Dupes" msgstr "重复的 QSO" -#: application/views/logbookadvanced/index.php:863 +#: application/views/logbookadvanced/index.php:873 msgid "Globe map" msgstr "全球地图" -#: application/views/logbookadvanced/index.php:870 +#: application/views/logbookadvanced/index.php:880 msgid "Database Tools" msgstr "数据库工具" -#: application/views/logbookadvanced/index.php:897 -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/index.php:910 +#: application/views/logbookadvanced/useroptions.php:342 msgid "Last modified" msgstr "上次修改" -#: application/views/logbookadvanced/index.php:900 -#: application/views/logbookadvanced/useroptions.php:28 +#: application/views/logbookadvanced/index.php:913 +#: application/views/logbookadvanced/useroptions.php:34 msgid "De" msgstr "本台呼号(De)" -#: application/views/logbookadvanced/index.php:945 -#: application/views/logbookadvanced/useroptions.php:136 +#: application/views/logbookadvanced/index.php:958 +#: application/views/logbookadvanced/useroptions.php:142 #: application/views/qso/edit_ajax.php:429 #: application/views/timeline/index.php:72 application/views/user/edit.php:628 msgid "QRZ" msgstr "QRZ" -#: application/views/logbookadvanced/index.php:951 -#: application/views/logbookadvanced/useroptions.php:148 +#: application/views/logbookadvanced/index.php:964 +#: application/views/logbookadvanced/useroptions.php:154 #: application/views/qso/edit_ajax.php:528 msgid "QSL Msg (S)" msgstr "QSL 消息(发送)" -#: application/views/logbookadvanced/index.php:954 -#: application/views/logbookadvanced/useroptions.php:154 +#: application/views/logbookadvanced/index.php:967 +#: application/views/logbookadvanced/useroptions.php:160 #: application/views/qso/edit_ajax.php:537 msgid "QSL Msg (R)" msgstr "QSL 消息(接收)" -#: application/views/logbookadvanced/index.php:1005 -#: application/views/logbookadvanced/useroptions.php:289 +#: application/views/logbookadvanced/index.php:1018 +#: application/views/logbookadvanced/useroptions.php:295 msgid "My Refs" msgstr "电台网格" -#: application/views/logbookadvanced/index.php:1014 +#: application/views/logbookadvanced/index.php:1027 msgid "Ant az" msgstr "天线方向角" -#: application/views/logbookadvanced/index.php:1014 -#: application/views/logbookadvanced/useroptions.php:311 +#: application/views/logbookadvanced/index.php:1027 +#: application/views/logbookadvanced/useroptions.php:317 msgid "Antenna azimuth" msgstr "天线方向角" -#: application/views/logbookadvanced/index.php:1017 +#: application/views/logbookadvanced/index.php:1030 msgid "Ant el" msgstr "天线仰角" -#: application/views/logbookadvanced/index.php:1017 -#: application/views/logbookadvanced/useroptions.php:317 +#: application/views/logbookadvanced/index.php:1030 +#: application/views/logbookadvanced/useroptions.php:323 msgid "Antenna elevation" msgstr "天线仰角" -#: application/views/logbookadvanced/index.php:1023 -#: application/views/logbookadvanced/useroptions.php:329 +#: application/views/logbookadvanced/index.php:1036 +#: application/views/logbookadvanced/useroptions.php:335 msgid "Station power" msgstr "台站功率" @@ -13814,15 +14059,15 @@ msgstr "网格更新结果:" msgid "The number of QSOs updated for gridsquare is" msgstr "网格更新的 QSO 数量为" -#: application/views/logbookadvanced/startatform.php:15 +#: application/views/logbookadvanced/startatform.php:56 msgid "Include Via" msgstr "包含通过" -#: application/views/logbookadvanced/startatform.php:21 +#: application/views/logbookadvanced/startatform.php:68 msgid "Include QSLMSG" msgstr "包含 QSLMSG" -#: application/views/logbookadvanced/startatform.php:27 +#: application/views/logbookadvanced/startatform.php:80 msgid "Include TNX message" msgstr "包含 TNX 信息" @@ -13881,41 +14126,41 @@ msgstr "当前支持的国家" msgid "Basic QSO Information" msgstr "基本 QSO 信息" -#: application/views/logbookadvanced/useroptions.php:72 +#: application/views/logbookadvanced/useroptions.php:78 msgid "Station Details" msgstr "台站详情" -#: application/views/logbookadvanced/useroptions.php:105 +#: application/views/logbookadvanced/useroptions.php:111 msgid "Confirmation Services" msgstr "确认服务" -#: application/views/logbookadvanced/useroptions.php:162 +#: application/views/logbookadvanced/useroptions.php:168 msgid "Geographic Information" msgstr "地理信息" -#: application/views/logbookadvanced/useroptions.php:207 +#: application/views/logbookadvanced/useroptions.php:213 msgid "Awards Programs" msgstr "奖状程序" -#: application/views/logbookadvanced/useroptions.php:258 +#: application/views/logbookadvanced/useroptions.php:264 msgid "Additional Information" msgstr "额外信息" -#: application/views/logbookadvanced/useroptions.php:297 +#: application/views/logbookadvanced/useroptions.php:303 msgid "Technical Details" msgstr "技术细节" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "For debugging only" msgstr "仅为调试" -#: application/views/logbookadvanced/useroptions.php:336 +#: application/views/logbookadvanced/useroptions.php:342 msgid "" "This is meant for debugging purposes only and not designed to be displayed " "by default" msgstr "此功能仅用于调试目的,并非默认显示内容" -#: application/views/logbookadvanced/useroptions.php:347 +#: application/views/logbookadvanced/useroptions.php:353 msgid "Map Layers" msgstr "地图图层" @@ -14036,7 +14281,7 @@ msgid "Date Expires" msgstr "过期日期" #: application/views/lotw_views/index.php:39 -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "Last Upload" msgstr "最后一次上传是" @@ -14653,7 +14898,7 @@ msgstr "有额外的信息需要记录吗?" #: application/views/oqrs/showrequests.php:92 #: application/views/qso/edit_ajax.php:275 application/views/qso/index.php:663 #: application/views/user/index.php:29 application/views/user/index.php:154 -#: application/views/user/profile.php:24 application/views/view_log/qso.php:488 +#: application/views/user/profile.php:24 application/views/view_log/qso.php:500 msgid "E-mail" msgstr "电子邮件" @@ -14670,11 +14915,11 @@ msgstr "发送“未记录日志”请求" #: application/views/oqrs/qsolist.php:76 #: application/views/qslprint/qslprint.php:30 #: application/views/qslprint/qsolist.php:16 -#: application/views/qslprint/qsolist.php:87 +#: application/views/qslprint/qsolist.php:103 #: application/views/qso/index.php:744 #: application/views/search/search_result_ajax.php:208 #: application/views/view_log/partial/log_ajax.php:310 -#: src/QSLManager/QSO.php:440 +#: src/QSLManager/QSO.php:452 msgid "Via" msgstr "通过" @@ -14684,7 +14929,7 @@ msgstr "未找到 QSO 。似乎你在此时间段并未进行过通联。" #: application/views/oqrs/qsolist.php:203 #: application/views/oqrs/showrequests.php:72 -#: application/views/qslprint/qsolist.php:200 +#: application/views/qslprint/qsolist.php:216 msgid "Add to print queue" msgstr "添加到打印队列中" @@ -15082,7 +15327,7 @@ msgstr "标记被请求的 QSL 为'已发送'" msgid "No QSLs to print were found!" msgstr "没有找到需要打印的 QSL 信息!" -#: application/views/qslprint/qsolist.php:209 +#: application/views/qslprint/qsolist.php:225 msgid "" "No additional QSOs were found. That means they are probably already in the " "queue." @@ -15224,7 +15469,7 @@ msgstr "以 W 为单位的功率(只需要填写数值)。" #: application/views/qso/edit_ajax.php:136 application/views/qso/index.php:447 #: application/views/reg1test/index.php:114 -#: application/views/view_log/qso.php:707 +#: application/views/view_log/qso.php:719 msgid "Transmit Power (W)" msgstr "发射功率 (W)" @@ -15286,9 +15531,9 @@ msgid "Station County" msgstr "台站县区" #: application/views/qso/edit_ajax.php:397 application/views/qso/index.php:352 -#: application/views/qso/index.php:648 application/views/user/edit.php:712 -#: application/views/view_log/qso.php:447 -#: application/views/view_log/qso.php:754 +#: application/views/qso/index.php:648 application/views/user/edit.php:720 +#: application/views/view_log/qso.php:459 +#: application/views/view_log/qso.php:766 msgid "SIG Info" msgstr "SIG 信息" @@ -15336,7 +15581,7 @@ msgstr "注:不可编辑。仅在此处显示。" #: application/views/qso/edit_ajax.php:584 #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:734 +#: src/QSLManager/QSO.php:600 src/QSLManager/QSO.php:746 msgid "Modified" msgstr "已更改" @@ -15460,16 +15705,16 @@ msgstr "在 DXCluster 搜索最新 Spot" #: application/views/qso/index.php:293 application/views/qso/index.php:587 #: application/views/station_profile/create.php:187 #: application/views/station_profile/edit.php:212 -#: application/views/user/edit.php:696 application/views/view_log/qso.php:388 -#: application/views/view_log/qso.php:721 +#: application/views/user/edit.php:704 application/views/view_log/qso.php:400 +#: application/views/view_log/qso.php:733 msgid "IOTA Reference" msgstr "IOTA 编号" #: application/views/qso/index.php:309 application/views/qso/index.php:604 #: application/views/station_profile/create.php:213 #: application/views/station_profile/edit.php:238 -#: application/views/user/edit.php:700 application/views/view_log/qso.php:395 -#: application/views/view_log/qso.php:728 +#: application/views/user/edit.php:708 application/views/view_log/qso.php:407 +#: application/views/view_log/qso.php:740 msgid "SOTA Reference" msgstr "SOTA 编号" @@ -15509,11 +15754,11 @@ msgstr "例如: Q03" msgid "E-mail address of QSO-partner" msgstr "对方 QSO 的电子邮件地址" -#: application/views/qso/index.php:675 application/views/view_log/qso.php:302 +#: application/views/qso/index.php:675 application/views/view_log/qso.php:314 msgid "Satellite Name" msgstr "卫星名称" -#: application/views/qso/index.php:685 application/views/view_log/qso.php:316 +#: application/views/qso/index.php:685 application/views/view_log/qso.php:328 msgid "Satellite Mode" msgstr "卫星模式" @@ -15615,22 +15860,36 @@ msgstr "可用的电台" msgid "Below is a list of active radios that are connected to Wavelog." msgstr "下方展示已连接到 Wavelog 的可用电台。" -#: application/views/radio/index.php:24 +#: application/views/radio/index.php:23 msgid "" "If you haven't connected any radios yet, see the API page to generate API " "keys." msgstr "如果你尚未配置电台,请查看 API 页面来生成 API Key。" -#: application/views/radio/index.php:26 application/views/search/filter.php:66 +#: application/views/radio/index.php:25 +msgid "" +"As a clubstation operator, you can set a default radio which applies only to " +"you. This allows you to have a default radio that is automatically selected " +"when you log in, while still being able to use other radios if you want." +msgstr "" +"作为俱乐部台操作员,你可以为自己设置默认电台。登录时会自动选中该电台,同时也" +"可按需使用其他电台。" + +#: application/views/radio/index.php:27 +msgid "" +"As a normal user, you can set a default radio for yourself. This allows you " +"to have a default radio that is automatically selected when you log in, " +"while still being able to use other radios if you want." +msgstr "" +"作为普通用户,你可以为自己设置默认电台。登录时会自动选中该电台,同时也可按需" +"使用其他电台。" + +#: application/views/radio/index.php:30 #, php-format -msgid "You can find out how to use the %s in the wiki." -msgstr "你可以在 Wiki 上查看使用说明 %s。" +msgid "You can find out how to use the %sradio functions%s in the wiki." +msgstr "你可在 Wiki 中了解如何使用%s电台功能%s。" -#: application/views/radio/index.php:26 -msgid "radio functions" -msgstr "电台功能" - -#: application/views/radio/index.php:31 +#: application/views/radio/index.php:35 msgid "Please wait..." msgstr "请稍等…" @@ -15962,13 +16221,6 @@ msgstr "AOS 时间" msgid "LOS Time" msgstr "LOS 时间" -#: application/views/satellite/passtable.php:9 -#: application/views/satellite/skedtable.php:10 -#: application/views/satellite/skedtable.php:37 -#: application/views/sattimers/index.php:46 -msgid "Duration" -msgstr "持续时间" - #: application/views/satellite/passtable.php:10 msgid "Path" msgstr "卫星路径" @@ -16081,6 +16333,11 @@ msgstr "保存查询" msgid "Stored queries" msgstr "存储的查询" +#: application/views/search/filter.php:66 +#, php-format +msgid "You can find out how to use the %s in the wiki." +msgstr "你可以在 Wiki 上查看使用说明 %s。" + #: application/views/search/filter.php:66 msgid "search filter functions" msgstr "搜索筛选器功能" @@ -16156,35 +16413,35 @@ msgstr "标记 已发送卡片(直邮)" #: application/views/search/search_result_ajax.php:471 #: application/views/view_log/partial/log.php:150 #: application/views/view_log/partial/log_ajax.php:688 -#: application/views/view_log/qso.php:824 +#: application/views/view_log/qso.php:836 msgid "Mark QSL Received (Bureau)" msgstr "标记 已收到卡片(卡片局)" #: application/views/search/search_result_ajax.php:472 #: application/views/view_log/partial/log.php:151 #: application/views/view_log/partial/log_ajax.php:689 -#: application/views/view_log/qso.php:826 +#: application/views/view_log/qso.php:838 msgid "Mark QSL Received (Direct)" msgstr "标记 已收到卡片(直邮)" #: application/views/search/search_result_ajax.php:473 #: application/views/view_log/partial/log.php:152 #: application/views/view_log/partial/log_ajax.php:679 -#: application/views/view_log/qso.php:834 +#: application/views/view_log/qso.php:846 msgid "Mark QSL Card Requested (Bureau)" msgstr "标记 被请求发送卡片(卡片局)" #: application/views/search/search_result_ajax.php:474 #: application/views/view_log/partial/log.php:153 #: application/views/view_log/partial/log_ajax.php:680 -#: application/views/view_log/qso.php:836 +#: application/views/view_log/qso.php:848 msgid "Mark QSL Card Requested (Direct)" msgstr "标记 被请求发送卡片(直邮)" #: application/views/search/search_result_ajax.php:475 #: application/views/view_log/partial/log.php:154 #: application/views/view_log/partial/log_ajax.php:681 -#: application/views/view_log/qso.php:838 +#: application/views/view_log/qso.php:850 msgid "Mark QSL Card Not Required" msgstr "标记 不被请求发送卡片" @@ -16694,7 +16951,7 @@ msgstr "电台兴趣组标识(如:DA/NW-357)。" #: application/views/station_profile/create.php:275 #: application/views/station_profile/edit.php:300 -#: application/views/user/edit.php:914 +#: application/views/user/edit.php:922 #, php-format msgid "Trouble? Check the %swiki%s." msgstr "遇到麻烦了?请参考%s维基%s。" @@ -16903,7 +17160,7 @@ msgid "Link Location" msgstr "链接的台站位置" #: application/views/stationsetup/linkedlocations.php:31 -#: application/views/stationsetup/stationsetup.php:127 +#: application/views/stationsetup/stationsetup.php:129 msgid "Profile Name" msgstr "名称" @@ -16922,57 +17179,57 @@ msgstr "" "话期间的所有位置。当您在多个位置操作,但这些位置都属于同一个 DXCC 或 VUCC " "时,此功能非常有用。" -#: application/views/stationsetup/stationsetup.php:35 +#: application/views/stationsetup/stationsetup.php:36 msgid "Edit Linked locations" msgstr "编辑绑定的地址" -#: application/views/stationsetup/stationsetup.php:37 +#: application/views/stationsetup/stationsetup.php:38 msgid "Visitor site" msgstr "外部链接" -#: application/views/stationsetup/stationsetup.php:94 +#: application/views/stationsetup/stationsetup.php:96 msgid "Station Locations" msgstr "台站地址" -#: application/views/stationsetup/stationsetup.php:98 +#: application/views/stationsetup/stationsetup.php:100 msgid "" "Station Locations define operating locations, such as your QTH, a friends " "QTH, or a portable station." msgstr "台站地址为电台使用地址,如你或朋友的 QTH,或移动台的地址。" -#: application/views/stationsetup/stationsetup.php:99 +#: application/views/stationsetup/stationsetup.php:101 msgid "Similar to logbooks, a station profile keeps a set of QSOs together." msgstr "和日志簿类似,一个台站地址会和其产生的 QSO 关联起来。" -#: application/views/stationsetup/stationsetup.php:100 +#: application/views/stationsetup/stationsetup.php:102 msgid "" "Only one station may be active at a time. In the table below this is shown " "with the -Active Station- badge." msgstr "同一时间只允许启用一个台站地址,详见如下表格中的 “启用” 标志。" -#: application/views/stationsetup/stationsetup.php:101 +#: application/views/stationsetup/stationsetup.php:103 msgid "" "The 'Linked' column shows if the station location is linked with the Active " "Logbook selected above." msgstr "上方的已启用日志,会显示在关联的台站地址的 “已绑定” 栏中。" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Create a Station Location" msgstr "创建一个台站地址" -#: application/views/stationsetup/stationsetup.php:104 +#: application/views/stationsetup/stationsetup.php:106 msgid "Show only locations from the active logbook" msgstr "仅显示当前日志中的位置" -#: application/views/stationsetup/stationsetup.php:105 +#: application/views/stationsetup/stationsetup.php:107 msgid "Show all locations" msgstr "显示全部位置" -#: application/views/stationsetup/stationsetup.php:106 +#: application/views/stationsetup/stationsetup.php:108 msgid "Show a location list" msgstr "显示位置列表" -#: application/views/stationsetup/stationsetup.php:110 +#: application/views/stationsetup/stationsetup.php:112 msgid "" "Attention: You need to set an active station location. Go to Callsign-" ">Station Location to select one." @@ -16980,29 +17237,29 @@ msgstr "" "警告:应事先设置一个 “启用” 中的台站地址,请在右上角 “你的呼号” -> “台站地" "址” 中选择一个。" -#: application/views/stationsetup/stationsetup.php:116 +#: application/views/stationsetup/stationsetup.php:118 msgid "" "Due to recent changes within Wavelog you need to reassign QSOs to your " "station profiles." msgstr "由于 Wavelog 设置更改,你需要重新在电台设置中重新分配 QSO。" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Maintenance" msgstr "维护" -#: application/views/stationsetup/stationsetup.php:118 +#: application/views/stationsetup/stationsetup.php:120 msgid "Please reassign them at " msgstr "重新分配 " -#: application/views/stationsetup/stationsetup.php:133 +#: application/views/stationsetup/stationsetup.php:135 msgid "Linked" msgstr "已绑定" -#: application/views/stationsetup/stationsetup.php:140 +#: application/views/stationsetup/stationsetup.php:142 msgid "Favorite" msgstr "喜爱的" -#: application/views/stationsetup/stationsetup.php:187 +#: application/views/stationsetup/stationsetup.php:189 msgid "mark/unmark as favorite" msgstr "标记/取消 为喜爱的" @@ -17717,59 +17974,63 @@ msgstr "这会切换仪表板上的太阳和传播数据显示。" msgid "Show Fields on QSO Tab" msgstr "在 QSO 选项卡上显示字段" -#: application/views/user/edit.php:693 +#: application/views/user/edit.php:692 +msgid "Show map at QSO-Window" +msgstr "在QSO窗口显示地图" + +#: application/views/user/edit.php:701 msgid "" "The enabled items will be shown on the QSO tab rather than the General tab." msgstr "启用后在 QSO 页面显示(非通用页面)。" -#: application/views/user/edit.php:735 +#: application/views/user/edit.php:743 msgid "Online QSL request (OQRS) settings" msgstr "在线 QSL 请求(OQRS)设置" -#: application/views/user/edit.php:739 +#: application/views/user/edit.php:747 msgid "Global text" msgstr "全局文本" -#: application/views/user/edit.php:741 +#: application/views/user/edit.php:749 msgid "" "This text is an optional text that can be displayed on top of the OQRS page." msgstr "该文本是一个可选文本,可以显示在 OQRS 页面的顶部。" -#: application/views/user/edit.php:744 +#: application/views/user/edit.php:752 msgid "Grouped search" msgstr "分组搜索" -#: application/views/user/edit.php:746 application/views/user/edit.php:755 -#: application/views/user/edit.php:764 application/views/user/edit.php:773 +#: application/views/user/edit.php:754 application/views/user/edit.php:763 +#: application/views/user/edit.php:772 application/views/user/edit.php:781 msgid "Off" msgstr "关闭" -#: application/views/user/edit.php:747 application/views/user/edit.php:756 -#: application/views/user/edit.php:765 application/views/user/edit.php:774 +#: application/views/user/edit.php:755 application/views/user/edit.php:764 +#: application/views/user/edit.php:773 application/views/user/edit.php:782 msgid "On" msgstr "开启" -#: application/views/user/edit.php:749 +#: application/views/user/edit.php:757 msgid "" "When this is on, all station locations with OQRS active, will be searched at " "once." msgstr "当此选项打开时,所有具有 OQRS 活动的电台位置将同时搜索。" -#: application/views/user/edit.php:753 +#: application/views/user/edit.php:761 msgid "Show station location name in grouped search results" msgstr "在分组搜索结果中显示台站名称" -#: application/views/user/edit.php:758 +#: application/views/user/edit.php:766 msgid "" "If grouped search is ON, you can decide if the name of the station location " "shall be shown in the results table." msgstr "如果分组搜索被启用,台站名称将会显示在表格当中。" -#: application/views/user/edit.php:762 +#: application/views/user/edit.php:770 msgid "Automatic OQRS matching" msgstr "自动 OQRS 匹配" -#: application/views/user/edit.php:767 +#: application/views/user/edit.php:775 msgid "" "If this is on, automatic OQRS matching will happen, and the system will try " "to match incoming requests with existing logs automatically." @@ -17777,67 +18038,67 @@ msgstr "" "如果此功能启用,系统将自动进行OQRS匹配,并尝试将传入的请求与现有日志自动匹" "配。" -#: application/views/user/edit.php:771 +#: application/views/user/edit.php:779 msgid "Automatic OQRS matching for direct requests" msgstr "对于直接请求的自动OQRS匹配" -#: application/views/user/edit.php:776 +#: application/views/user/edit.php:784 msgid "If this is on, automatic OQRS matching for direct request will happen." msgstr "如果此功能启用,直接请求将自动进行OQRS匹配。" -#: application/views/user/edit.php:792 +#: application/views/user/edit.php:800 msgid "Default Values" msgstr "默认值" -#: application/views/user/edit.php:800 +#: application/views/user/edit.php:808 msgid "Settings for Default Band and Confirmation" msgstr "默认频段和 QSL 确认方式设置" -#: application/views/user/edit.php:803 +#: application/views/user/edit.php:811 msgid "Default Band" msgstr "默认频段" -#: application/views/user/edit.php:813 +#: application/views/user/edit.php:821 msgid "Default QSL-Methods" msgstr "默认 QSL 方式" -#: application/views/user/edit.php:878 +#: application/views/user/edit.php:886 msgid "Third Party Services" msgstr "第三方服务" -#: application/views/user/edit.php:889 +#: application/views/user/edit.php:897 msgid "Logbook of The World (LoTW) Username" msgstr "Logbook of The World (LoTW) 用户名" -#: application/views/user/edit.php:895 +#: application/views/user/edit.php:903 msgid "Logbook of The World (LoTW) Password" msgstr "Logbook of The World (LoTW) 密码" -#: application/views/user/edit.php:899 +#: application/views/user/edit.php:907 msgid "Test Login" msgstr "登录测试" -#: application/views/user/edit.php:917 +#: application/views/user/edit.php:925 msgid "eQSL.cc Username" msgstr "eQSL.cc 用户名" -#: application/views/user/edit.php:923 +#: application/views/user/edit.php:931 msgid "eQSL.cc Password" msgstr "eQSL.cc 密码" -#: application/views/user/edit.php:940 +#: application/views/user/edit.php:948 msgid "Club Log" msgstr "Clublog" -#: application/views/user/edit.php:943 +#: application/views/user/edit.php:951 msgid "Club Log Email" msgstr "Club Log 电子邮件" -#: application/views/user/edit.php:949 +#: application/views/user/edit.php:957 msgid "Club Log Password" msgstr "Clublog 密码" -#: application/views/user/edit.php:954 +#: application/views/user/edit.php:962 #, php-format msgid "" "If you have 2FA enabled at Clublog, you have to generate an App. Password to " @@ -17846,44 +18107,44 @@ msgstr "" "如在 Clublog 启用了双因素验证,则需要在 Clublog 为 Wavelog 创建一个 App. " "Password,创建地址 %s %s。" -#: application/views/user/edit.php:971 +#: application/views/user/edit.php:979 msgid "Widgets" msgstr "插件" -#: application/views/user/edit.php:979 +#: application/views/user/edit.php:987 msgid "On-Air widget" msgstr "On-Air 插件" -#: application/views/user/edit.php:989 +#: application/views/user/edit.php:997 msgid "" "Note: In order to use this widget, you need to have at least one CAT radio " "configured and working." msgstr "注意:为了使用这个插件,你至少需要设置一个 CAT 电台并使其正常工作。" -#: application/views/user/edit.php:993 +#: application/views/user/edit.php:1001 #, php-format msgid "When enabled, widget will be available at %s." msgstr "当激活时,插件将可以从 %s 访问。" -#: application/views/user/edit.php:998 +#: application/views/user/edit.php:1006 msgid "Display \"Last seen\" time" msgstr "展示 “上次出现” 时间" -#: application/views/user/edit.php:1004 +#: application/views/user/edit.php:1012 msgid "" "This setting control whether the 'Last seen' time is displayed in widget or " "not." msgstr "这个设置控制是否在插件上显示 “上次出现” 时间。" -#: application/views/user/edit.php:1007 +#: application/views/user/edit.php:1015 msgid "Display only most recently updated radio" msgstr "仅显示最近更新的电台" -#: application/views/user/edit.php:1011 +#: application/views/user/edit.php:1019 msgid "No, show all radios" msgstr "不,显示所有电台" -#: application/views/user/edit.php:1013 +#: application/views/user/edit.php:1021 msgid "" "If you have multiple CAT radios configured, this setting controls whether " "the widget should display all on-air radios of the user, or just the most " @@ -17893,79 +18154,79 @@ msgstr "" "如果你配置了多个 CAT 无线电,则此设置控制小部件是否应显示用户的所有电台,还是" "仅显示最近更新的电台。如果你只有一个电台,则此设置无效。" -#: application/views/user/edit.php:1023 +#: application/views/user/edit.php:1031 msgid "QSOs widget" msgstr "QSO 小部件" -#: application/views/user/edit.php:1026 +#: application/views/user/edit.php:1034 msgid "Display exact QSO time" msgstr "显示确切通联时间" -#: application/views/user/edit.php:1032 +#: application/views/user/edit.php:1040 msgid "" "This setting control whether exact QSO time should displayed in the QSO " "widget or not." msgstr "此设置控制 QSO 小部件中是否显示确切的通联时间。" -#: application/views/user/edit.php:1045 +#: application/views/user/edit.php:1053 msgid "Miscellaneous" msgstr "其它" -#: application/views/user/edit.php:1053 +#: application/views/user/edit.php:1061 msgid "AMSAT Status Upload" msgstr "上传 AMSAT" -#: application/views/user/edit.php:1056 +#: application/views/user/edit.php:1064 msgid "Upload status of SAT QSOs to" msgstr "上传卫星状态到" -#: application/views/user/edit.php:1070 +#: application/views/user/edit.php:1078 msgid "Mastodonserver" msgstr "Mastodon 服务器" -#: application/views/user/edit.php:1073 +#: application/views/user/edit.php:1081 msgid "URL of Mastodonserver" msgstr "Mastodon 地址" -#: application/views/user/edit.php:1075 +#: application/views/user/edit.php:1083 #, php-format msgid "Main URL of your Mastodon server, e.g. %s" msgstr "你的 Mastodon 服务器地址,例如 %s" -#: application/views/user/edit.php:1084 +#: application/views/user/edit.php:1092 msgid "Winkeyer" msgstr "Winkeyer" -#: application/views/user/edit.php:1087 +#: application/views/user/edit.php:1095 msgid "Winkeyer Features Enabled" msgstr "启用 Winkeyer 功能" -#: application/views/user/edit.php:1093 +#: application/views/user/edit.php:1101 #, php-format msgid "" "Winkeyer support in Wavelog is very experimental. Read the wiki first at %s " "before enabling." msgstr "Wavelog 对 Winkeyer 的支持是实验性的,请在使用前阅读说明 %s。" -#: application/views/user/edit.php:1104 +#: application/views/user/edit.php:1112 msgid "Hams.at" msgstr "Hams.at" -#: application/views/user/edit.php:1107 +#: application/views/user/edit.php:1115 msgid "Private Feed Key" msgstr "Private Feed Key" -#: application/views/user/edit.php:1109 +#: application/views/user/edit.php:1117 #, php-format msgctxt "Hint for Hamsat API Key; uses Link" msgid "See your profile at %s." msgstr "在 %s 查看个人资料。" -#: application/views/user/edit.php:1112 +#: application/views/user/edit.php:1120 msgid "Show Workable Passes Only" msgstr "只显示可通联的过境" -#: application/views/user/edit.php:1118 +#: application/views/user/edit.php:1126 msgid "" "If enabled shows only workable passes based on the gridsquare set in your " "hams.at account. Requires private feed key to be set." @@ -17973,7 +18234,7 @@ msgstr "" "如果启用,仅显示基于在 hams.at 设置好的位置信息计算过境,需要设置好 Private " "Feed Key。" -#: application/views/user/edit.php:1130 +#: application/views/user/edit.php:1138 msgid "Save Account" msgstr "保存账户更改" @@ -18374,7 +18635,7 @@ msgstr "显示该日志簿下全部 QSO" #: application/views/view_log/partial/log_ajax.php:510 #: application/views/view_log/partial/log_ajax.php:567 -#: src/QSLManager/QSO.php:592 src/QSLManager/QSO.php:738 +#: src/QSLManager/QSO.php:604 src/QSLManager/QSO.php:750 msgid "last sent" msgstr "上次发送" @@ -18402,119 +18663,125 @@ msgstr "总计距离" msgid "Other Path" msgstr "其他路径" -#: application/views/view_log/qso.php:323 +#: application/views/view_log/qso.php:190 +msgid "" +"A single gridsquare was entered into the VUCC gridsquares field which should " +"contain two or four gridsquares instead of a single grid." +msgstr "VUCC 网格字段仅输入了单个网格,该字段应输入两个或四个网格。" + +#: application/views/view_log/qso.php:335 msgid "Antenna Azimuth" msgstr "天线方位" -#: application/views/view_log/qso.php:330 +#: application/views/view_log/qso.php:342 msgid "Antenna Elevation" msgstr "天线仰角" -#: application/views/view_log/qso.php:499 +#: application/views/view_log/qso.php:511 msgid "QSL Card has been sent via the bureau" msgstr "QSL 卡片已由卡片局发出" -#: application/views/view_log/qso.php:501 +#: application/views/view_log/qso.php:513 msgid "QSL Card has been sent via direct" msgstr "QSL 卡片已直邮发出" -#: application/views/view_log/qso.php:503 +#: application/views/view_log/qso.php:515 msgid "QSL Card has been sent electronically" msgstr "QSL 卡片已以电子形式发出" -#: application/views/view_log/qso.php:505 +#: application/views/view_log/qso.php:517 msgid "QSL Card has been sent via manager" msgstr "QSL 卡片已由卡片管理员发出" -#: application/views/view_log/qso.php:507 +#: application/views/view_log/qso.php:519 msgid "QSL Card has been sent" msgstr "QSL 卡片已发出" -#: application/views/view_log/qso.php:516 +#: application/views/view_log/qso.php:528 msgid "QSL Card has been received via the bureau" msgstr "QSL 卡片已由卡片局收妥" -#: application/views/view_log/qso.php:518 +#: application/views/view_log/qso.php:530 msgid "QSL Card has been received via direct" msgstr "QSL 卡片已直邮收妥" -#: application/views/view_log/qso.php:520 +#: application/views/view_log/qso.php:532 msgid "QSL Card has been received electronically" msgstr "eQSL 卡片已经收妥" -#: application/views/view_log/qso.php:522 +#: application/views/view_log/qso.php:534 msgid "QSL Card has been received via manager" msgstr "QSL 卡片已经由卡片管理员收妥" -#: application/views/view_log/qso.php:524 +#: application/views/view_log/qso.php:536 msgid "QSL Card has been received" msgstr "QSL 卡已被接收" -#: application/views/view_log/qso.php:533 +#: application/views/view_log/qso.php:545 msgid "This station uses LoTW." msgstr "此电台使用 LOTW。" -#: application/views/view_log/qso.php:538 -#: application/views/view_log/qso.php:548 -#: application/views/view_log/qso.php:562 -#: application/views/view_log/qso.php:572 -#: application/views/view_log/qso.php:582 +#: application/views/view_log/qso.php:550 +#: application/views/view_log/qso.php:560 +#: application/views/view_log/qso.php:574 +#: application/views/view_log/qso.php:584 +#: application/views/view_log/qso.php:594 msgid "This QSO was confirmed on" msgstr "此 QSO 确认于" -#: application/views/view_log/qso.php:543 +#: application/views/view_log/qso.php:555 msgid "This QSO is confirmed on LoTW." msgstr "此 QSO 已在 LoTW 上确认。" -#: application/views/view_log/qso.php:557 +#: application/views/view_log/qso.php:569 msgid "This QSO is confirmed on eQSL." msgstr "此 QSO已在 eQSL 上确认。" -#: application/views/view_log/qso.php:567 +#: application/views/view_log/qso.php:579 msgid "This QSO is confirmed on QRZ.com." msgstr "此 QSO 已在 QRZ.com 上确认。" -#: application/views/view_log/qso.php:577 +#: application/views/view_log/qso.php:589 msgid "This QSO is confirmed on Clublog." msgstr "此 QSO 已在 Cludlog 上确认。" -#: application/views/view_log/qso.php:587 +#: application/views/view_log/qso.php:599 msgid "This QSO is confirmed on DCL." msgstr "此 QSO 已在 DCL 上确认。" -#: application/views/view_log/qso.php:600 +#: application/views/view_log/qso.php:612 msgid "More QSOs" msgstr "更多 QSO" -#: application/views/view_log/qso.php:662 +#: application/views/view_log/qso.php:674 msgid "Share" msgstr "分享" -#: application/views/view_log/qso.php:668 +#: application/views/view_log/qso.php:680 msgid "Details" msgstr "详情" -#: application/views/view_log/qso.php:802 +#: application/views/view_log/qso.php:814 msgid "Uploaded QSL Card front image" msgstr "上传 QSL 卡片正面图像" -#: application/views/view_log/qso.php:807 +#: application/views/view_log/qso.php:819 msgid "Upload QSL Card image" msgstr "上传 QSL 卡片图像" -#: application/views/view_log/qso.php:812 +#: application/views/view_log/qso.php:824 msgid "Uploaded QSL Card back image" msgstr "上传 QSL 卡片背面图像" -#: application/views/view_log/qso.php:828 +#: application/views/view_log/qso.php:840 msgid "Mark QSL Received (Electronic)" msgstr "标记 已收到卡片(电子)" -#: application/views/view_log/qso.php:851 +#: application/views/view_log/qso.php:863 msgid "eQSL picture" msgstr "eQSL 图片" -#: application/views/view_log/qso.php:923 +#: application/views/view_log/qso.php:945 msgid "QSO not found" msgstr "QSO 未找到" @@ -18695,6 +18962,17 @@ msgstr "CQz" msgid "CQz geojson" msgstr "CQz geojson" +#~ msgid "" +#~ "Cache is currently using the backup adapter because the primary is " +#~ "unavailable." +#~ msgstr "由于主设备不可用,目前缓存系统正在使用备用适配器。" + +#~ msgid "Error obtaining a session key for HamQTH query" +#~ msgstr "获取 HamQTH 查询会话密钥错误" + +#~ msgid "radio functions" +#~ msgstr "电台功能" + #~ msgid "Incorrectly logged CQ zones" #~ msgstr "CQ 分区记录错误" diff --git a/application/migrations/001_add_lotw_credentials.php b/application/migrations/001_add_lotw_credentials.php deleted file mode 100644 index ab1608c51..000000000 --- a/application/migrations/001_add_lotw_credentials.php +++ /dev/null @@ -1,21 +0,0 @@ -dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_lotw_name'); - $this->dbforge->drop_column('users', 'user_lotw_password'); - } -} -?> diff --git a/application/migrations/002_add_config_table.php b/application/migrations/002_add_config_table.php deleted file mode 100644 index 9173bafb1..000000000 --- a/application/migrations/002_add_config_table.php +++ /dev/null @@ -1,41 +0,0 @@ -dbforge->add_field('id'); - - $this->dbforge->add_field(array( - 'lotw_download_url' => array( - 'type' => 'VARCHAR', - 'constraint' => 255, - ), - 'lotw_upload_url' => array( - 'type' => 'VARCHAR', - 'constraint' => 255, - ), - 'lotw_rcvd_mark' => array( - 'type' => 'VARCHAR', - 'constraint' => 1, - ), - )); - - - $this->dbforge->create_table('config'); - - $data = array( - 'lotw_download_url' => 'https://p1k.arrl.org/lotwuser/lotwreport.adi', - 'lotw_upload_url' => 'https://p1k.arrl.org/lotwuser/upload', - 'lotw_rcvd_mark' => 'Y' - ); - - $this->db->insert('config', $data); - } - - public function down() - { - $this->dbforge->drop_table('config'); - } -} -?> \ No newline at end of file diff --git a/application/migrations/003_add_lotw_login_url.php b/application/migrations/003_add_lotw_login_url.php deleted file mode 100644 index c3ad57f0b..000000000 --- a/application/migrations/003_add_lotw_login_url.php +++ /dev/null @@ -1,21 +0,0 @@ -dbforge->add_column('config', $fields); - - $sql = "UPDATE config SET lotw_login_url = 'https://p1k.arrl.org/lotwuser/default' WHERE id=1"; - - $this->db->query($sql); - } - - public function down() - { - $this->dbforge->drop_column('config', 'lotw_login_url'); - } -} -?> diff --git a/application/migrations/004_add_eQSL_login_and_url.php b/application/migrations/004_add_eQSL_login_and_url.php deleted file mode 100644 index 32536e8c9..000000000 --- a/application/migrations/004_add_eQSL_login_and_url.php +++ /dev/null @@ -1,32 +0,0 @@ -dbforge->add_column('users', $user_fields); - - - $config_fields = array('eqsl_download_url VARCHAR(244) DEFAULT NULL','eqsl_rcvd_mark VARCHAR(1) DEFAULT NULL'); - $this->dbforge->add_column('config', $config_fields); - - $sql = "UPDATE config SET eqsl_download_url = 'http://www.eqsl.cc/qslcard/DownloadInBox.cfm' WHERE id=1"; - $this->db->query($sql); - - $sql = "UPDATE config SET eqsl_rcvd_mark = 'Y' WHERE id=1"; - $this->db->query($sql); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_eqsl_name'); - $this->dbforge->drop_column('users', 'user_eqsl_password'); - $this->dbforge->drop_column('config', 'eqsl_download_url'); - $this->dbforge->drop_column('config', 'eqsl_rcvd_mark'); - } -} -?> diff --git a/application/migrations/005_add_dxcc_enddate.php b/application/migrations/005_add_dxcc_enddate.php deleted file mode 100644 index 0d827e426..000000000 --- a/application/migrations/005_add_dxcc_enddate.php +++ /dev/null @@ -1,22 +0,0 @@ - array('type' => 'datetime') - ); - - $this->dbforge->add_column('dxcc', $fields); - - } - - - public function down() - { - $this->dbforge->drop_column('dxcc', 'end_date'); - } -} -?> \ No newline at end of file diff --git a/application/migrations/007_add_dxcc_delete.php b/application/migrations/007_add_dxcc_delete.php deleted file mode 100644 index e3ae9baad..000000000 --- a/application/migrations/007_add_dxcc_delete.php +++ /dev/null @@ -1,25 +0,0 @@ - array( - 'type' => 'VARCHAR', - 'constraint' => '100', - ) - ); - - $this->dbforge->add_column('dxcc', $fields); - - } - - - public function down() - { - $this->dbforge->drop_column('dxcc', 'deleted'); - } -} -?> \ No newline at end of file diff --git a/application/migrations/008_add_dxcc_entities.php b/application/migrations/008_add_dxcc_entities.php deleted file mode 100644 index 41cabb740..000000000 --- a/application/migrations/008_add_dxcc_entities.php +++ /dev/null @@ -1,52 +0,0 @@ -dbforge->add_field(array( - 'adif' => array( - 'type' => 'smallint', - 'Null' => FALSE - ), - 'name' => array( - 'type' => 'varchar(150)', - 'null' => TRUE - ), - 'prefix' => array( - 'type' => 'varchar(10)', - 'null' => FALSE - ), - 'cqz' => array( - 'type' => 'smallint', - 'null' => FALSE - ), - 'ituz' => array( - 'type' => 'smallint', - 'null' => FALSE - ), - 'cont' => array( - 'type' => 'varchar(5)', - 'null' => FALSE - ), - 'long' => array( - 'type' => 'float', - 'null' => FALSE - ), - 'lat' => array( - 'type' => 'float', - 'null' => FALSE - ), - 'end' => array( - 'type' => 'date', - 'null' => TRUE - ) - )); - - $this->dbforge->add_key('adif', TRUE); - $this->dbforge->create_table('dxcc_entities'); - } - - public function down(){ - $this->dbforge->drop_table('dxcc_entities'); - } -} diff --git a/application/migrations/009_add_dxcc_exceptions.php b/application/migrations/009_add_dxcc_exceptions.php deleted file mode 100644 index ff87512a7..000000000 --- a/application/migrations/009_add_dxcc_exceptions.php +++ /dev/null @@ -1,53 +0,0 @@ -dbforge->add_field(array( - 'record' => array( - 'type' => 'int', - 'Null' => FALSE - ), - 'call' => array( - 'type' => 'varchar(10)', - 'null' => TRUE - ), - 'entity' => array( - 'type' => 'varchar(255)', - 'null' => FALSE - ), - 'adif' => array( - 'type' => 'smallint', - 'null' => FALSE - ), - 'cqz' => array( - 'type' => 'smallint', - 'null' => FALSE - ), - 'cont' => array( - 'type' => 'varchar(5)', - ), - 'long' => array( - 'type' => 'float', - ), - 'lat' => array( - 'type' => 'float', - ), - 'start' => array( - 'type' => 'date', - 'null' => TRUE - ), - 'end' => array( - 'type' => 'date', - 'null' => TRUE - ) - )); - - $this->dbforge->add_key('record', TRUE); - $this->dbforge->create_table('dxcc_exceptions'); - } - - public function down(){ - $this->dbforge->drop_table('dxcc_exceptions'); - } -} diff --git a/application/migrations/010_add_dxcc_prefixes.php b/application/migrations/010_add_dxcc_prefixes.php deleted file mode 100644 index bfa4225d7..000000000 --- a/application/migrations/010_add_dxcc_prefixes.php +++ /dev/null @@ -1,45 +0,0 @@ -dbforge->add_field(array( - 'record' => array( - 'type' => 'int', - 'Null' => FALSE - ), - 'call' => array( - 'type' => 'varchar(10)', - 'null' => TRUE - ), - 'entity' => array( - 'type' => 'varchar(255)', - 'null' => FALSE - ), - 'adif' => array( - 'type' => 'smallint', - 'null' => FALSE - ), - 'cqz' => array( - 'type' => 'smallint', - 'null' => FALSE - ), - 'cont' => array( - 'type' => 'varchar(5)', - ), - 'long' => array( - 'type' => 'float', - ), - 'lat' => array( - 'type' => 'float', - ), - )); - - $this->dbforge->add_key('record', TRUE); - $this->dbforge->create_table('dxcc_prefixes'); - } - - public function down(){ - $this->dbforge->drop_table('dxcc_prefixes'); - } -} diff --git a/application/migrations/011_add_dxcc_prefixes_start_end.php b/application/migrations/011_add_dxcc_prefixes_start_end.php deleted file mode 100644 index db01bd411..000000000 --- a/application/migrations/011_add_dxcc_prefixes_start_end.php +++ /dev/null @@ -1,23 +0,0 @@ - array( - 'type' => 'date', - 'Null' => TRUE - ), - 'end' => array( - 'type' => 'date', - 'Null' => TRUE - ), - )); - - $this->dbforge->add_column('dxcc_prefixes', $fields); - } - - public function down(){ - $this->dbforge->drop_table('dxcc_prefixes'); - } -} diff --git a/application/migrations/012_add_dxcc_entities_start.php b/application/migrations/012_add_dxcc_entities_start.php deleted file mode 100644 index f73b2a57d..000000000 --- a/application/migrations/012_add_dxcc_entities_start.php +++ /dev/null @@ -1,19 +0,0 @@ - array( - 'type' => 'date', - 'Null' => TRUE - ), - )); - - $this->dbforge->add_column('dxcc_entities', $fields); - } - - public function down(){ - $this->dbforge->drop_table('dxcc_entities'); - } -} diff --git a/application/migrations/013_add_dxcc_stored_proc.php b/application/migrations/013_add_dxcc_stored_proc.php deleted file mode 100644 index e490719d6..000000000 --- a/application/migrations/013_add_dxcc_stored_proc.php +++ /dev/null @@ -1,46 +0,0 @@ -db->query("drop procedure if exists `find_country`"); - if (!$res){ - print ("Error dropping stored proc"); - exit(0); - } - - $sql = <<0 do - select `entity`, `adif` into country, dxcc_id - from dxcc_prefixes - where `call`= substring(callsign, 1, calllen) - and (`start` <= qso_date or `start`='0000-00-00') - and (`end` >= qso_date or `end`='0000-00-00'); - if (FOUND_ROWS() >0) THEN - LEAVE L1; - else - set calllen = calllen - 1; - end IF; - end WHILE; -end -EOF; - - $res = $this->db->query($sql); - if (!$res){ - print ("Error setting stored proc"); - exit(0); - } - } - - public function down(){ - $this->db->query("drop procedure if exists `find_country`"); - } -} diff --git a/application/migrations/014_migration.php b/application/migrations/014_migration.php deleted file mode 100644 index 021b9cd50..000000000 --- a/application/migrations/014_migration.php +++ /dev/null @@ -1,97 +0,0 @@ -db->db_debug = false; - - $this->db->query("ALTER TABLE cat CHANGE COLUMN frequency frequency bigint(13) NOT NULL; # was int(11) NOT NULL"); - $this->db->query("ALTER TABLE cat CHANGE COLUMN uplink_freq uplink_freq bigint(13) DEFAULT NULL; # was int(11) NOT NULL"); - $this->db->query("ALTER TABLE cat CHANGE COLUMN downlink_freq downlink_freq bigint(13) DEFAULT NULL; # was int(11) NOT NULL"); - $this->db->query("ALTER TABLE cat CHANGE COLUMN downlink_mode downlink_mode varchar(255) DEFAULT NULL; # was varchar(255) NOT NULL"); - $this->db->query("ALTER TABLE cat CHANGE COLUMN sat_name sat_name varchar(255) DEFAULT NULL; # was varchar(255) NOT NULL"); - $this->db->query("ALTER TABLE cat CHANGE COLUMN uplink_mode uplink_mode varchar(255) DEFAULT NULL; # was varchar(255) NOT NULL"); - $this->db->query("ALTER TABLE cat ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; # was ENGINE=InnoDB DEFAULT CHARSET=latin1"); - $this->db->query("ALTER TABLE config ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; # was ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8"); - $this->db->query("ALTER TABLE dxcc ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;"); - $this->db->query("ALTER TABLE dxccexceptions ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8mb4; # was ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8"); - $this->db->query("ALTER TABLE notes ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; # was ENGINE=InnoDB DEFAULT CHARSET=latin1"); - - $this->db->query( "ALTER TABLE `station_profile` MODIFY COLUMN `station_id` int(11) NOT NULL AUTO_INCREMENT FIRST , ADD PRIMARY KEY (`station_id`); # was int(11) NOT NULL" ); - - - $this->db->query("ALTER TABLE station_profile ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; # was ENGINE=InnoDB DEFAULT CHARSET=latin1"); - $this->db->query("ALTER TABLE timezones CHANGE COLUMN name name varchar(120) COLLATE utf8mb4_bin NOT NULL; # was varchar(120) COLLATE utf8_bin NOT NULL"); - $this->db->query("ALTER TABLE timezones ENGINE=InnoDB AUTO_INCREMENT=151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;"); - $this->db->query("ALTER TABLE users CHANGE COLUMN user_callsign user_callsign varchar(32) NOT NULL COMMENT 'User''s callsign'; # was varchar(255) NOT NULL"); - $this->db->query("ALTER TABLE users CHANGE COLUMN user_firstname user_firstname varchar(32) NOT NULL COMMENT 'User''s first name'; # was varchar(255) NOT NULL"); - $this->db->query("ALTER TABLE users CHANGE COLUMN user_locator user_locator varchar(16) NOT NULL COMMENT 'User''s locator'; # was varchar(255) NOT NULL"); - $this->db->query("ALTER TABLE users CHANGE COLUMN user_timezone user_timezone int(3) NOT NULL DEFAULT 0; # was char(255) NOT NULL"); - $this->db->query("ALTER TABLE users CHANGE COLUMN user_lastname user_lastname varchar(32) NOT NULL COMMENT 'User''s last name'; # was varchar(255) NOT NULL"); - - $this->db->query("ALTER TABLE users ADD COLUMN user_eqsl_qth_nickname varchar(32) DEFAULT NULL;"); - - $this->db->query("ALTER TABLE users ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4;"); - $this->db->query("CREATE TABLE IF NOT EXISTS contest_template ( - id int(11) NOT NULL AUTO_INCREMENT, - name varchar(255) NOT NULL, - band_160 varchar(20) NOT NULL, - band_80 varchar(20) NOT NULL, - band_40 varchar(20) NOT NULL, - band_20 varchar(20) NOT NULL, - band_15 varchar(20) NOT NULL, - band_10 varchar(20) NOT NULL, - band_6m varchar(20) NOT NULL, - band_4m varchar(20) NOT NULL, - band_2m varchar(20) NOT NULL, - band_70cm varchar(20) NOT NULL, - band_23cm varchar(20) NOT NULL, - mode_ssb varchar(20) NOT NULL, - mode_cw varchar(20) NOT NULL, - serial varchar(20) NOT NULL, - point_per_km int(20) NOT NULL, - qra varchar(20) NOT NULL, - other_exch varchar(255) NOT NULL, - scoring varchar(255) NOT NULL, - PRIMARY KEY (id), - KEY name (name) - ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;"); - - $this->db->query("CREATE TABLE IF NOT EXISTS contests ( - id int(11) NOT NULL AUTO_INCREMENT, - name varchar(255) NOT NULL, - start datetime NOT NULL, - end datetime NOT NULL, - template int(11) NOT NULL, - serial_num tinyint(11) NOT NULL, - PRIMARY KEY (id) - ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;"); - - $this->db->query("CREATE TABLE IF NOT EXISTS `station_profile` ( - `station_id` int(11) NOT NULL AUTO_INCREMENT, - `station_profile_name` varchar(200) CHARACTER SET utf8mb4 NOT NULL, - `station_gridsquare` varchar(100) CHARACTER SET utf8mb4 NOT NULL, - `station_city` varchar(100) CHARACTER SET utf8mb4 NOT NULL, - `station_iota` varchar(100) CHARACTER SET utf8mb4 NOT NULL, - `station_sota` varchar(10) CHARACTER SET utf8mb4 NOT NULL, - `station_callsign` varchar(50) CHARACTER SET utf8mb4 DEFAULT NULL, - `station_dxcc` int(10) DEFAULT NULL, - `station_country` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL, - `station_cnty` varchar(200) CHARACTER SET utf8mb4 DEFAULT NULL, - `station_cq` int(5) DEFAULT NULL, - `station_itu` int(5) DEFAULT NULL, - PRIMARY KEY (`station_id`) - ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4; - "); - - $this->db->query("ALTER TABLE ".$this->config->item('table_name')." CHANGE COLUMN COL_FREQ_RX COL_FREQ_RX bigint(13) DEFAULT NULL; # was int(11) DEFAULT NULL"); - $this->db->query("ALTER TABLE ".$this->config->item('table_name')." CHANGE COLUMN COL_FREQ COL_FREQ bigint(13) DEFAULT NULL; # was int(11) DEFAULT NULL"); - - $this->db->db_debug = true; - } - - public function down(){ - echo "Not possible, sorry."; - } -} diff --git a/application/migrations/015_extenddxccprefix.php b/application/migrations/015_extenddxccprefix.php deleted file mode 100644 index a608616a0..000000000 --- a/application/migrations/015_extenddxccprefix.php +++ /dev/null @@ -1,19 +0,0 @@ -db->query("ALTER TABLE dxcc CHANGE COLUMN `prefix` `prefix` varchar(32) NOT NULL; # was varchar(10) NOT NULL"); - $this->db->query("ALTER TABLE dxcc_entities CHANGE COLUMN `prefix` `prefix` varchar(32) NOT NULL; # was varchar(10) NOT NULL"); - $this->db->query("ALTER TABLE dxcc_exceptions CHANGE COLUMN `call` `call` varchar(32) NOT NULL; # was varchar(10) NOT NULL"); - $this->db->query("ALTER TABLE dxcc_prefixes CHANGE COLUMN `call` `call` varchar(32) NOT NULL; # was varchar(10) NOT NULL"); - } - - public function down(){ - $this->db->query("ALTER TABLE dxcc CHANGE COLUMN `prefix` `prefix` varchar(10) NOT NULL; # was varchar(10) NOT NULL"); - $this->db->query("ALTER TABLE dxcc_entities CHANGE COLUMN `prefix` `prefix` varchar(10) NOT NULL; # was varchar(10) NOT NULL"); - $this->db->query("ALTER TABLE dxcc_exceptions CHANGE COLUMN `call` `call` varchar(10) NOT NULL; # was varchar(10) NOT NULL"); - $this->db->query("ALTER TABLE dxcc_prefixes CHANGE COLUMN `call` `call` varchar(10) NOT NULL; # was varchar(10) NOT NULL"); - } -} diff --git a/application/migrations/016_lotwusers.php b/application/migrations/016_lotwusers.php deleted file mode 100644 index 59f99104e..000000000 --- a/application/migrations/016_lotwusers.php +++ /dev/null @@ -1,33 +0,0 @@ -dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 5, - 'unsigned' => TRUE, - 'auto_increment' => TRUE - ), - 'callsign' => array( - 'type' => 'VARCHAR', - 'constraint' => '100', - ), - 'upload_date' => array( - 'type' => 'datetime', - 'null' => TRUE, - ), - )); - $this->dbforge->add_key('id', TRUE); - $this->dbforge->create_table('lotw_userlist'); - } - - public function down() - { - $this->dbforge->drop_table('lotw_userlist'); - } -} \ No newline at end of file diff --git a/application/migrations/017_qslviavarchar.php b/application/migrations/017_qslviavarchar.php deleted file mode 100644 index 99965a8ae..000000000 --- a/application/migrations/017_qslviavarchar.php +++ /dev/null @@ -1,18 +0,0 @@ -db->db_debug = false; - $this->db->query("ALTER TABLE ".$this->config->item('table_name')." CHANGE COLUMN COL_QSL_VIA COL_QSL_VIA varchar(255) DEFAULT NULL;"); - $this->db->db_debug = true; - } - - public function down() - { - echo "Not possible, sorry."; - } -} \ No newline at end of file diff --git a/application/migrations/018_clubloguserfields.php b/application/migrations/018_clubloguserfields.php deleted file mode 100644 index 9fc21e142..000000000 --- a/application/migrations/018_clubloguserfields.php +++ /dev/null @@ -1,23 +0,0 @@ -dbforge->add_column('users', $user_fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_clublog_name'); - $this->dbforge->drop_column('users', 'user_clublog_password'); - $this->dbforge->drop_column('users', 'user_clublog_callsign'); - } -} \ No newline at end of file diff --git a/application/migrations/019_forceint_wrongtype.php b/application/migrations/019_forceint_wrongtype.php deleted file mode 100644 index 94b935b24..000000000 --- a/application/migrations/019_forceint_wrongtype.php +++ /dev/null @@ -1,29 +0,0 @@ - array( - 'name' => 'COL_FORCE_INIT', - 'type' => 'VARCHAR', - 'constraint' => '2', - ), - - 'COL_SWL' => array( - 'name' => 'COL_SWL', - 'type' => 'VARCHAR', - 'constraint' => '2', - ), - ); - $this->dbforge->modify_column($this->config->item('table_name'), $fields); - } - - public function down() - { - echo "Not possible, sorry."; - } -} \ No newline at end of file diff --git a/application/migrations/020_apikeydesc.php b/application/migrations/020_apikeydesc.php deleted file mode 100644 index edcc6c7f7..000000000 --- a/application/migrations/020_apikeydesc.php +++ /dev/null @@ -1,19 +0,0 @@ -dbforge->add_column('api', $user_fields); - } - - public function down() - { - $this->dbforge->drop_column('api', 'description'); - } -} \ No newline at end of file diff --git a/application/migrations/021_latlng_wrongtype.php b/application/migrations/021_latlng_wrongtype.php deleted file mode 100644 index 90f5c0dcb..000000000 --- a/application/migrations/021_latlng_wrongtype.php +++ /dev/null @@ -1,29 +0,0 @@ - array( - 'name' => 'COL_LAT', - 'type' => 'VARCHAR', - 'constraint' => '15', - ), - - 'COL_LON' => array( - 'name' => 'COL_LON', - 'type' => 'VARCHAR', - 'constraint' => '15', - ), - ); - $this->dbforge->modify_column($this->config->item('table_name'), $fields); - } - - public function down() - { - echo "Not possible, sorry."; - } -} \ No newline at end of file diff --git a/application/migrations/022_mylatlng_wrongtype.php b/application/migrations/022_mylatlng_wrongtype.php deleted file mode 100644 index c02d1cb4f..000000000 --- a/application/migrations/022_mylatlng_wrongtype.php +++ /dev/null @@ -1,29 +0,0 @@ - array( - 'name' => 'COL_MY_LAT', - 'type' => 'VARCHAR', - 'constraint' => '15', - ), - - 'COL_MY_LON' => array( - 'name' => 'COL_MY_LON', - 'type' => 'VARCHAR', - 'constraint' => '15', - ), - ); - $this->dbforge->modify_column($this->config->item('table_name'), $fields); - } - - public function down() - { - echo "Not possible, sorry."; - } -} \ No newline at end of file diff --git a/application/migrations/023_col_email_tooshort.php b/application/migrations/023_col_email_tooshort.php deleted file mode 100644 index 820943ba8..000000000 --- a/application/migrations/023_col_email_tooshort.php +++ /dev/null @@ -1,23 +0,0 @@ - array( - 'name' => 'COL_EMAIL', - 'type' => 'VARCHAR', - 'constraint' => '255', - ) - ); - $this->dbforge->modify_column($this->config->item('table_name'), $fields); - } - - public function down() - { - echo "Not possible, sorry."; - } -} \ No newline at end of file diff --git a/application/migrations/024_add_column_logbookid.php b/application/migrations/024_add_column_logbookid.php deleted file mode 100644 index a1a811a11..000000000 --- a/application/migrations/024_add_column_logbookid.php +++ /dev/null @@ -1,20 +0,0 @@ -dbforge->add_column($this->config->item('table_name'), $fields); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/025_create_logbook_table.php b/application/migrations/025_create_logbook_table.php deleted file mode 100644 index d04d42bc9..000000000 --- a/application/migrations/025_create_logbook_table.php +++ /dev/null @@ -1,33 +0,0 @@ -dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 5, - 'unsigned' => TRUE, - 'auto_increment' => TRUE - ), - 'logbook_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '250', - ), - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ), - )); - $this->dbforge->add_key('id', TRUE); - $this->dbforge->create_table('logbooks'); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/026_addfield_to_logbooks_default.php b/application/migrations/026_addfield_to_logbooks_default.php deleted file mode 100644 index c90b3bb9c..000000000 --- a/application/migrations/026_addfield_to_logbooks_default.php +++ /dev/null @@ -1,20 +0,0 @@ -dbforge->add_column('logbooks', $fields); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/027_addfield_to_logbooks_active.php b/application/migrations/027_addfield_to_logbooks_active.php deleted file mode 100644 index aeeea0e2f..000000000 --- a/application/migrations/027_addfield_to_logbooks_active.php +++ /dev/null @@ -1,20 +0,0 @@ -dbforge->add_column('logbooks', $fields); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/028_logbooks_setkeys.php b/application/migrations/028_logbooks_setkeys.php deleted file mode 100644 index 12b5e155c..000000000 --- a/application/migrations/028_logbooks_setkeys.php +++ /dev/null @@ -1,20 +0,0 @@ -db->db_debug = false; - $this->db->query("ALTER TABLE `logbooks` ADD UNIQUE(`id`);"); - $this->db->query("ALTER TABLE `logbooks` ADD INDEX(`id`);"); - $this->db->query("ALTER TABLE `logbooks` ADD INDEX(`logbook_name`);"); - $this->db->db_debug = true; - } - - public function down() - { - echo "Not possible, sorry."; - } -} \ No newline at end of file diff --git a/application/migrations/029_delete_logbooks_table.php b/application/migrations/029_delete_logbooks_table.php deleted file mode 100644 index 5c3fa3183..000000000 --- a/application/migrations/029_delete_logbooks_table.php +++ /dev/null @@ -1,16 +0,0 @@ -dbforge->drop_table('logbooks'); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/030_delete_logbookid.php b/application/migrations/030_delete_logbookid.php deleted file mode 100644 index 2f2c92c3e..000000000 --- a/application/migrations/030_delete_logbookid.php +++ /dev/null @@ -1,17 +0,0 @@ -dbforge->drop_column($this->config->item('table_name'), 'logbook_id'); - - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/031_add_station_id_to_logbook.php b/application/migrations/031_add_station_id_to_logbook.php deleted file mode 100644 index eccb617e2..000000000 --- a/application/migrations/031_add_station_id_to_logbook.php +++ /dev/null @@ -1,21 +0,0 @@ -dbforge->add_column($this->config->item('table_name'), $fields); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/032_add_station_active.php b/application/migrations/032_add_station_active.php deleted file mode 100644 index 9645ae7c7..000000000 --- a/application/migrations/032_add_station_active.php +++ /dev/null @@ -1,16 +0,0 @@ -db->db_debug = false; - $this->db->query("ALTER TABLE ".$this->config->item('table_name')." ADD INDEX(`station_id`);"); - $this->db->db_debug = true; - } - - public function down() - { - echo "Not possible, sorry."; - } -} \ No newline at end of file diff --git a/application/migrations/034_add_eqslqthnickname_to_stationprofile.php b/application/migrations/034_add_eqslqthnickname_to_stationprofile.php deleted file mode 100644 index c4c7233d7..000000000 --- a/application/migrations/034_add_eqslqthnickname_to_stationprofile.php +++ /dev/null @@ -1,16 +0,0 @@ - array( - 'name' => 'COL_MODE', - 'type' => 'VARCHAR', - 'constraint' => '12', - ) - ); - $this->dbforge->modify_column($this->config->item('table_name'), $fields); - } - public function down() - { - echo "Not possible, sorry."; - } -} diff --git a/application/migrations/036_create_eqsl_images_table.php b/application/migrations/036_create_eqsl_images_table.php deleted file mode 100644 index 8d6ce3984..000000000 --- a/application/migrations/036_create_eqsl_images_table.php +++ /dev/null @@ -1,37 +0,0 @@ -dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 5, - 'unsigned' => TRUE, - 'auto_increment' => TRUE - ), - 'qso_id' => array( - 'type' => 'VARCHAR', - 'constraint' => '250', - ), - 'image_file' => array( - 'type' => 'VARCHAR', - 'constraint' => '250', - ), - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ), - )); - $this->dbforge->add_key('id', TRUE); - $this->dbforge->create_table('eQSL_images'); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/037_update_lotw_url.php b/application/migrations/037_update_lotw_url.php deleted file mode 100644 index 379ab45e8..000000000 --- a/application/migrations/037_update_lotw_url.php +++ /dev/null @@ -1,22 +0,0 @@ -db->query($sql); - - $sql = "UPDATE config SET lotw_upload_url = 'https://lotw.arrl.org/lotwuser/upload' WHERE id=1"; - $this->db->query($sql); - - $sql = "UPDATE config SET lotw_login_url = 'https://lotw.arrl.org/lotwuser/default' WHERE id=1"; - $this->db->query($sql); - } - - public function down() - { - - } -} -?> diff --git a/application/migrations/038_create_iota_tables.php b/application/migrations/038_create_iota_tables.php deleted file mode 100644 index 310af9527..000000000 --- a/application/migrations/038_create_iota_tables.php +++ /dev/null @@ -1,1210 +0,0 @@ -db->query("CREATE TABLE `iota` (`Tag` VARCHAR(8) NOT NULL, `Name` LONGTEXT, `Prefix` VARCHAR(16), `DXCCID` INTEGER DEFAULT 0, `Lat1` FLOAT NULL DEFAULT 0, `Lat2` FLOAT NULL DEFAULT 0, `Lon1` FLOAT NULL DEFAULT 0, `Lon2` FLOAT NULL DEFAULT 0, `Status` VARCHAR(1), `Notes` VARCHAR(50), INDEX (`DXCCID`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;"); - - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-001', 'Agalega Islands', '3B6', 4, 10, 10.75, 56.25, 57, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-002', 'Amsterdam & St Paul Islands', 'FT*Z', 10, 37.75, 39, 77.25, 77.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-003', 'Ascension Island', 'ZD8', 205, 7.75, 8, -14.25, -14.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-004', 'Canary Islands', 'EA8', 29, -27.5, -29.5, -13.25, -18.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-005', 'Cape Verde - Leeward Islands', 'D4', 409, -14.5, -15.75, -22, -26, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-006', 'Diego Garcia Island', 'VQ9', 33, 7, 7.75, 72.25, 72.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-007', 'Comoro Islands', 'D6', 411, 11.25, 12.5, 43, 44.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-008', 'Crozet Islands', 'FT*W', 41, 45.75, 46.75, 50, 52.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-009', 'Europa Island', 'FT*E', 124, 22.25, 22.5, 40.25, 40.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-010', 'Bioco (Fernando Poo) Island', '3C', 49, -3, -4, 8.25, 9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-011', 'Glorioso Islands', 'FT*G', 99, 11.25, 11.75, 47, 47.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-012', 'Juan De Nova Island', 'FT*J', 124, 16.83333, 17.16667, 42.5, 43, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-013', 'Madagascar (main island only)', '5R', 438, 11.75, 26, 43, 51, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-014', 'Madeira Archipelago', 'CT3', 256, -32.58333, -33.25, -16, -17.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-015', 'Saint Brandon Islands', '3B7', 4, 16, 17, 59, 60, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-016', 'Reunion Island', 'FR', 453, 20.75, 21.5, 55, 56, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-017', 'Rodrigues Island', '3B9', 207, 19.5, 20, 63.25, 63.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-018', 'Pantelleria Island', 'IH9', 248, -36.71667, -36.85, 11.9, 12.08333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-019', 'Pelagie Islands', 'IG9', 248, -35.41667, -35.91667, 12.25, 12.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-020', 'Bijagos Archipelago', 'J5', 109, -10.83333, -11.66667, -15.5, -16.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-021', 'Prince Edward & Marion Islands', 'ZS8', 201, 46.5, 47, 37.5, 38.08333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-022', 'St Helena Island', 'ZD7', 250, 15.83333, 16.08333, -5.583333, -5.833333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-023', 'Sao Tome Island', 'S9', 219, -.5, .5, 6.4, 6.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-024', 'Seychelles - Inner Islands', 'S7', 379, 3.5, 7.5, 55, 57, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-025', 'Aldabra Islands', 'S7', 379, 9.25, 10, 46, 47, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-026', 'Cosmoledo Islands', 'S7', 379, 9.5, 10.25, 47, 48, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-027', 'Mayotte Island', 'FH', 169, 12.5, 13.25, 44.75, 45.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-028', 'Socotra group', '7O', 492, -12, -13, 52, 54.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-029', 'Tristan Da Cunha Islands', 'ZD9', 274, 37, 37.58333, -12, -13, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-030', 'Gough Island', 'ZD9', 274, 40, 41, -9.75, -10.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-031', 'Tromelin Island', 'FR/T', 276, 15.66667, 16, 54.25, 54.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-032', 'Zanzibar Island', '5H', 470, 5.583333, 7.083333, 39.08333, 40, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-033', 'Amirante Islands', 'S7', 379, 4.5, 7.5, 52, 55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-034', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-035', 'Farquhar Islands', 'S7', 379, 8.5, 10.5, 50.5, 52, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-036', 'Chafarinas Islands', 'EA9', 32, -35.13334, -35.21667, -2.333333, -2.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-037', 'Northern / Western Province group', '9L', 458, -8.083333, -9.05, -13, -13.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-038', 'Dahlak Archipelago', 'E3', 51, -15.28333, -16.91667, 39.25, 41, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-039', 'Annobon (Pagalu) Island', '3C0', 195, 1.366667, 1.45, 5.566667, 5.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-040', 'Coast Province North group', '5Z', 430, 1.716667, 3.066667, 40.13334, 41.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-041', 'Egmont group', 'VQ9', 33, 6, 6.75, 71.16666, 71.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-042', 'Alboran Island', 'EA9', 32, -35.91667, -35.96667, -3.016667, -3.116667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-043', 'Estuaire Province group', 'TR', 420, -1, .75, 9.16, 9.76, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-044', 'Principe Island', 'S9', 219, -1.416667, -1.833333, 7.25, 7.583333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-045', 'Senegal North group', '6W', 456, -13.58333, -16.05, -16.5, -17.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-046', 'Desertas Islands', 'CT3', 256, -32.33333, -32.58333, -16.33333, -16.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-047', 'Selvagens Islands', 'CT3', 256, -30, -30.25, -15.75, -16.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-048', 'Kerguelen Islands', 'FT*X', 131, 48.25, 50.25, 68.25, 71, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-049', 'Mauritius Island', '3B8', 165, 19.75, 20.58333, 57.25, 58, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-050', 'Dakhlet Nouadhibou / Inchiri Region group', '5T', 444, -19.06667, -21.13333, -16.21667, -17.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-051', 'Guinee-Maritime Province South group', '3X', 107, -9.05, -9.866667, -13.33333, -14, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-052', 'Indian Ocean Coast South group', 'T5', 232, .75, 1.7, 41.6, 43.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-053', 'Gulf Of Tadjoura group', 'J2', 382, -11.45, -12, 42.7, 43.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-054', 'Mafia Island', '5H', 470, 7.5, 8.166667, 39.58333, 40, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-055', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-056', 'Southern Province group', '9L', 458, -6.916667, -8.25, -11.5, -13.13333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-057', 'Madagascar\'s Coastal Islands West', '5R', 438, 11.75, 26, 43, 49.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-058', 'Salomon group', 'VQ9', 33, 5, 6, 71.58334, 72.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-059', 'Strait of Mandab group', 'J2', 382, -12, -12.71667, 43.13334, 43.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-060', 'The Gambia group', 'C5', 422, -13.06667, -13.58333, -16.53333, -17, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-061', 'Cabo Delgado District group', 'C9', 181, 10.5, 13.53333, 40.33333, 40.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-062', 'Suakin Archipelago', 'ST', 466, -18.25, -19.41667, 37.35, 39, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-063', 'Pemba Island', '5H', 470, 4.75, 5.583333, 39.58333, 40, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-064', 'Western Cape Province South West group', 'ZS', 462, 33, 34.91667, 17.86667, 20, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-065', 'Safi / Essaouira / Agadir Region group', 'CN', 446, -29.96667, -32.83333, -9, -10, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-066', 'Gaza / Maputo District group', 'C9', 181, 24.83333, 26.83333, 32.58333, 34.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-067', 'Coast Province South group', '5Z', 430, 3.066667, 4.733333, 39.2, 40.18333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-068', 'Western Sahara South group', 'CN,S0', 302, -20.88333, -25, -14.83333, -17.25, 'H', 'Herne & Virginia Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-069', 'Alhucemas Island', 'EA9', 32, -35.2, -35.23333, -3.883333, -3.916667, 'H', 'Perejil Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-070', 'Karas Region group', 'V5', 464, 24.93333, 28.66667, 14.71667, 16.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-071', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-072', 'Inhambane District group', 'C9', 181, 21, 24.83333, 34.58333, 35.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-073', 'Sfax Region group', '3V', 474, -34.08333, -35.03333, 10, 11.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-074', 'Lindi / Mtwara Region group', '5H', 470, 8.333333, 10.5, 39.25, 40.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-075', 'Dar Es Salaam / Pwani Region group', '5H', 470, 6, 8.333333, 38.78333, 39.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-076', 'Bayelsa / Rivers / Akwa Ibom etc States group', '5N', 450, -4.25, -5.133333, 5.45, 8.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-077', 'Western Cape Province South group', 'ZS', 462, 34, 34.91667, 20, 23.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-078', 'Senegal South group', '6W', 456, -12.33333, -13.06667, -16.66667, -16.86667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-079', 'Eastern Cape Province group', 'ZS', 462, 31.11667, 34.33333, 23.58333, 30.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-080', 'Red Sea Coast North group', 'E3', 51, -14.88333, -18, 38.58333, 40.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-081', 'Red Sea Coast South group', 'E3', 51, -12.71667, -14.88333, 40.66667, 43.13334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-082', 'Rio Muni Province group', '3C', 49, -.8666667, -2.333333, 9.166667, 9.833333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-083', 'Gabes / Medenine Region group', '3V', 474, -33.18333, -34.08333, 10, 11.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-084', 'Ghana group', '9G', 424, -4.666667, -6.083333, -3.083333, 1.2, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-085', 'Western Cape Province North West group', 'ZS', 462, 31.16667, 33, 17.78333, 18.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-086', 'Cape Verde - Windward Islands', 'D4', 409, -15.75, -17.5, -22, -26, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-087', 'Tanga Region group', '5H', 470, 4.683333, 6, 38.78333, 39.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-088', 'Nampula District group', 'C9', 181, 13.53333, 16.83333, 39.11666, 40.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-089', 'Ogooue-Maritime Province group', 'TR', 420, .25, 2.833333, 8.583333, 10.03333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-090', 'Madagascar\'s Coastal Islands East', '5R', 438, 11.75, 26, 45.16667, 51, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-091', 'Jendouba / Bizerte / Tunis / Nabeul Reg group', '3V', 474, -36.33333, -37.66667, 8.666667, 11.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-092', 'Sousse / Monastir / Mahdia Region group', '3V', 474, -35.03333, -36.33333, 10.5, 11.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-093', 'Guinea-Bissau Coastal Region group', 'J5', 109, -10.83333, -12.33333, -15, -16.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-094', 'Mediterranean Sea Coast West Group', '7X', 400, -35, -36.58333, -2.216667, 1.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-095', 'Cameroon Group', 'TJ', 406, -2.35, -4.75, 8.5, 10, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-096', 'Guinee-Maritime Province North Group', '3X', 107, -9.866667, -10.83333, -13.75, -15.08333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-001', 'Graham Land West (Adelaide Island) group', 'Various', 13, 66.58334, 68.5, -66, -70, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-002', 'Bouvet Island', '3Y', 24, 54.33333, 54.5, 3.283333, 3.466667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-003', 'Heard Island', 'VK0', 111, 52.75, 53.5, 73.16666, 73.91666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-004', 'Peter 1 Island', '3Y', 199, 68.75, 69.08334, -90.5, -91, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-005', 'Macquarie Island', 'VK0', 153, 54, 55.25, 158.5, 159.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-006', 'Graham Land West (Biscoe Islands) group', 'Various', 13, 65, 66.58334, -63.5, -67.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-007', 'South Georgia Island', 'VP8', 235, 53.83333, 55.25, -34.25, -39, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-008', 'South Orkney Islands', 'Various', 238, 60.25, 61, -44, -47.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-009', 'South Sandwich Islands', 'VP8', 240, 56, 60, -26, -28, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-010', 'South Shetland Islands', 'Various', 13, 60.75, 63.5, -53.75, -63, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-011', 'Ross Island group', 'Various', 13, 76, 78, 165, 170, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-012', 'Graham Land West (Palmer Archipelago) group', 'Various', 13, 63.5, 65, -59, -65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-013', 'Trinity Peninsula group', 'Various', 13, 62.5, 64.5, -53.75, -59, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-014', 'Berkner Island', 'Various', 13, 77.5, 81.5, -43, -55, 'D', 'DELETED');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-015', 'Queen Maud Land (Prince Harald etc) group', 'Various', 13, 67.5, 70, 35, 45, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-016', 'Antarctica (main island only)', 'Various', 13, 70, 90, 180, -180, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-017', 'Adelie Land group', 'Various', 13, 66, 67, 136, 142, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-018', 'Palmer Land West (Alexander Island) group', 'Various', 13, 68.5, 73, -67.75, -77, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-001', 'Andaman Islands', 'VU', 11, -10.33333, -13.83333, 92, 94.33334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-002', 'Bahrain Island', 'A9', 304, -25.53333, -26.33333, 50.33333, 50.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-003', 'Sri Lanka Island (main island only)', '4S', 315, -5.833333, -10, 79.5, 82, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-004', 'Cyprus Island (main island only)', '5B,ZC', NULL, -34.5, -35.75, 32.23333, 34.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-005', 'Kara Sea Coast West group', 'R0B', 15, -71.68333, -74.75, 78.5, 82, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-006', 'Hong Kong group', 'VR2', 321, -22.11667, -22.56667, 113.8167, 114.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-007', 'Honshu Island (main island only)', 'JA1', 339, -33.4, -41.58333, 130.8333, 142.1333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-008', 'North Izu Islands', 'JA1', 339, -33.5, -34.86666, 139, 139.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-009', 'Red Sea Coast group', '7O', 492, -12.71667, -16.41667, 41.75, 43.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-010', 'Zufar Region group', 'A4', 370, -16.65, -17.93333, 53.1, 56.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-011', 'Laccadive Islands', 'VU', 142, -9.916667, -13.91667, 71.58334, 74, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-012', 'Kyushu\'s Coastal Islands', 'JA6', 339, -30.9, -34, 129.2167, 132.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-013', 'Maldive Islands', '8Q', 159, -7.25, .7, 72.5, 74, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-014', 'Ash Sharqiyah / Al Wusta Region group', 'A4', 370, -17.93333, -23, 56.33333, 59.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-015', 'Pinang State group', '9M2', 299, -5.116667, -5.583333, 100.1167, 100.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-016', 'Gulf Of Aden West group', '7O', 492, -12.58333, -13.55, 43.33333, 47, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-017', 'Okinawa Islands', 'JA6', 339, -26, -28, 126.5833, 128.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-018', 'Sakhalin Island (main island only)', 'R0F', 15, -45.83333, -54.58333, 141.5, 144.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-019', 'Singapore Island', '9V', 381, -1.133333, -1.483333, 103.6167, 104.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-020', 'Taiwan Island (main island only)', 'BV', 386, -21.83333, -25.35, 120, 122, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-021', 'Trucial Coast group', 'A6', 391, -23.96667, -26.08333, 51.5, 56.08333, 'H', 'Abu Dhabi Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-022', 'Medvezh\'I (Bear) Islands', 'R0Q', 15, -70.55, -71, 160.25, 162.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-023', 'Amami Islands', 'JA6', 339, -26.96667, -28.58333, 128.3667, 130.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-024', 'Yaeyama Islands', 'JA6', 339, -24, -24.66667, 122.8333, 124.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-025', 'Kuril\'skiye (Kuril) Islands South', 'R0F', 15, -43.58333, -46.7833, 145.3333, 151.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-026', 'Cheju-do Province (Cheju Island) group', 'HL4', 137, -33, -33.75, 126, 127, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-027', 'Vrangelya (Wrangel) Island', 'R0K', 15, -70.66666, -71.75, 178.25, -175.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-028', 'Anzhu Islands', 'R0Q', 15, -74.41666, -76.41666, 135.1667, 151.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-029', 'Lyakhovskiye Islands', 'R0Q', 15, -73.08334, -74.41666, 135.1667, 143.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-030', 'Kazan (Volcano) Islands', 'JD', 192, -24.13333, -25.58333, 141.1667, 141.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-031', 'Chichi/ Haha/ Muko (Bonin) Islands', 'JD', 192, -26.41667, -27.83333, 140.8333, 142.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-032', 'Osumi Islands', 'JA6', 339, -30.16667, -30.9, 129.8333, 131.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-033', 'Nicobar Islands', 'VU', 11, -6.583333, -9.333333, 92.5, 94, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-034', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-035', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-036', 'Iki / Tsushima Islands', 'JA6', 339, -33.66667, -34.75, 129.0833, 130.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-037', 'Koshikijima Islands', 'JA6', 339, -31.53333, -31.96667, 129.5833, 130.0333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-038', 'East Siberian Sea Coast group', 'R0K', 15, -68.76667, -70.16666, 162.5, 172.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-039', 'Komandorskiye (Commander) Islands', 'R0Z', 15, -54.25, -55.58333, 165.3333, 168.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-040', 'Goto Islands', 'JA6', 339, -32.5, -33.38334, 128.5, 129.2167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-041', 'Oki Islands', 'JA4', 339, -35.95, -36.38334, 132.8333, 133.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-042', 'Severnaya Zemlya (North Land)', 'R0B', 15, -77.83334, -81.5, 89.83334, 108, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-043', 'South Izu Islands', 'JA1', 339, -29.66667, -33.25, 139.5833, 140.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-044', 'Sea of Okhotsk Coast Centre group', 'R0C', 15, -53.55, -56, 135.2, 139, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-045', 'Kyongsang-bukto Prov (Ullung Island)', 'HL5', 137, -37.08333, -37.58333, 130.75, 131.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-046', 'Pahang / Johor State East group', '9M2', 299, -1.333333, -4.166667, 103.3333, 104.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-047', 'Daito Islands', 'JA6', 339, -24.41667, -26, 131.1167, 131.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-048', 'De Longa Islands', 'R0Q', 15, -75.66666, -77.08334, 148.1667, 158.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-049', 'Tokara Islands', 'JA6', 339, -28.71667, -30.03333, 128.8333, 130, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-050', 'Sergeya Kirova Islands', 'R0B', 15, -76.83334, -77.75, 88.25, 92.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-051', 'Spratly Islands', 'various', 247, -6, -12, 111, 117, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-052', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-053', 'Malay Peninsula West group', 'HS', 387, -7, -9.966666, 97.5, 99.66666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-054', 'Laptev Sea Coast West group', 'R0B', 15, -76.45, -77.83334, 100, 109, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-055', 'Vize Island', 'R0B', 15, -79.33334, -79.75, 75.5, 78, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-056', 'Danjo Islands', 'JA6', 339, -31.93333, -32.13334, 128.2667, 128.5333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-057', 'Uyedineniya Island', 'R0B', 15, -77.41666, -77.58334, 82, 83, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-058', 'Perlis / Kedah State group', '9M2', 299, -5.583333, -6.5, 99.16666, 100.35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-059', 'Sea of Okhotsk Coast group', 'R0I', 15, -58.93333, -59.8, 146.9333, 154, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-060', 'Cholla-namdo Province group', 'HL4', 137, -33.91667, -35.43333, 125.4167, 128, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-061', 'Ratmanova (Big Diomede) Island', 'R0K', 15, -65.71667, -65.85, -169, -169.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-062', 'Habomai Islands', 'R0F', 15, -43.33333, -43.91667, 145.85, 147, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-063', 'Laptev Sea Coast East group', 'R0B', 15, -72.73333, -76.91666, 105.3333, 114, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-064', 'Bering Sea Coast Centre group', 'R0X', 15, -57.33333, -60.5833, 162, 170.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-065', 'Chukchi Sea Coast East group', 'R0K', 15, -66.08334, -68.13333, -169.5833, -177, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-066', 'Sea of Japan Coast group', 'R0L', 15, -42.25, -47.33333, 130.6667, 139, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-067', 'Uji & Kusagaki Islands', 'JA6', 339, -30.75, -31.33333, 129.3333, 129.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-068', 'Kara Sea Coast Centre group', 'R0B', 15, -73.61667, -75.83334, 82, 91, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-069', 'Iony Island', 'R0C', 15, -56.36666, -56.48333, 143.3167, 143.4667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-070', 'East Siberian Sea Coast East group', 'R0Q', 15, -69.33334, -71.16666, 152.5, 162.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-071', 'Bering Sea Coast North group', 'R0K', 15, -64.16666, -66.08334, -169.5833, -177, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-072', 'Perak State group', '9M2', 299, -3.833333, -5.116667, 100.3333, 100.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-073', 'Kelantan / Terengganu State group', '9M2', 299, -4.166667, -6.233333, 102.0833, 103.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-074', 'Selangor / Negeri Sembilan State group', '9M2', 299, -2.383333, -3.833333, 100.75, 101.9667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-075', 'Macau group', 'XX', 152, -22.06667, -22.26667, 113.5333, 113.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-076', 'Shikoku Island', 'JA5', 339, -32.66667, -34.58333, 132, 134.8667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-077', 'Kyushu Island (main island only)', 'JA6', 339, -30.95, -33.98333, 129.55, 132.1167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-078', 'Hokkaido Island (main island only)', 'JA8', 339, -41.33333, -45.58333, 139.75, 145.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-079', 'Miyako Islands', 'JA6', 339, -24.5, -25, 124.5, 125.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-080', 'Ch\'ungch\'ong-namdo Province group', 'HL3', 137, -35.98333, -37.08333, 125.5, 126.7833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-081', 'Kyongsang-bukto / Kyongsang-namdo Prov group', 'HL5', 137, -34.5, -37.15, 127.75, 129.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-082', 'Laptev Sea Coast Centre group', 'R0Q', 15, -70.71667, -74, 121.5, 132.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-083', 'Kara Sea Coast East group', 'R9K', 15, -70.91666, -73.66666, 69.5, 78.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-084', 'Cheju-do Province (Ch\'uja Islands) group', 'HL4', 137, -33.88334, -34.05, 126.25, 126.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-085', 'Cholla-namdo Province (Soan Islands) group', 'HL4', 137, -34.05, -34.25, 126.3667, 126.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-086', 'Izvestiy TS.I.K. Islands', 'R0B', 15, -75.66666, -76.08334, 81.25, 83.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-087', 'Arkticheskogo Instituta Islands', 'R0B', 15, -75, -75.66666, 81.25, 82.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-088', 'Qatar group', 'A7', 376, -24.63333, -26.2, 50.7, 52.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-089', 'Kara Sea Coast West group', 'R9K', 15, -68.2, -73, 65.1, 69.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-090', 'Kyonggi-do Province (Tokchok Islands)', 'HL2', 137, -36.9, -37.3, 125.75, 126.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-091', 'Sea of Okhotsk Coast group', 'R0X', 15, -55.81667, -62.68333, 155.5, 165.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-092', 'Bering Sea Coast South group', 'R0K', 15, -61.81667, -66.33334, 174.5, -177, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-093', 'Cholla-namdo Province (Huksan Islands) group', 'HL4', 137, -34, -34.83333, 125, 125.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-094', 'Hainan Province (Hainan Island) group', 'BY7', 318, -18, -20.2, 108.5, 111.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-095', 'Bering Sea Coast South group', 'R0Z', 15, -50.85, -57.33333, 156.6667, 163.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-096', 'Karnataka State group', 'VU', 324, -12.7, -14.91667, 74.01667, 74.88333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-097', 'Melaka / Johor State West group', '9M2', 299, -1.25, -2.383333, 101.9667, 103.6167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-098', 'Aydin / Mugla Province group', 'TA', 390, -36.28333, -37.88334, 27, 29.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-099', 'Canakkale / Balikesir / Izmir Province group', 'TA', 390, -37.88334, -40.01667, 25.91667, 27.25, 'H', 'Alibey, Gokceada Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-100', 'Israel group', '4X', 336, -31.58333, -33.08333, 34.48333, 35.11666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-101', 'Malay Peninsula East group', 'HS', 387, -9, -12, 99.13333, 100.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-102', 'Kinmen (Quemoy) Island', 'BV', 386, -24.35, -24.51667, 118.2, 118.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-103', 'P\'enghu (Pescadores) Islands', 'BV', 386, -23.13333, -23.8, 119.25, 119.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-104', 'Kara Sea Coast East group', 'R0B', 15, -75.63333, -76.5, 91, 100, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-105', 'Kyonggi-do Province group', 'HL2', 137, -37, -37.83333, 125.5833, 126.8, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-106', 'Minicoy Island', 'VU', 142, -8.183333, -8.366667, 72.95, 73.11667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-107', 'Gulf of Thailand North group', 'HS', 387, -12, -13.5, 99.95, 102, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-108', 'Lebanon group', 'OD', 354, -33.08333, -34.63334, 35.11666, 35.98333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-109', 'Obskaya Gulf group', 'R9K', 15, -66.23333, -70.91666, 69.13333, 78.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-110', 'Tungsha (Pratas) Island', 'BQ9', 505, -20.58333, -20.83333, 116.5833, 116.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-111', 'The Gulf group', 'HZ', 378, -24.23333, -28.56667, 48.36666, 51.58333, 'H', 'Tarut Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-112', 'Al Batinah / Masqat Region group', 'A4', 370, -23, -24.96667, 56.36666, 59.08333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-113', 'Matsu Islands', 'BV', 386, -25.93333, -26.41667, 119.9167, 120.6333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-114', 'Sea of Okhotsk Coast South group', 'R0C', 15, -47.33333, -54.75, 139, 141.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-115', 'Antalya Province group', 'TA', 390, -36.05, -36.85, 29.3, 32.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-116', 'Huang Yan Island (Scarborough Reef)', 'BS7', 506, -15.06667, -15.16667, 117.75, 117.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-117', 'JA3,4,9 Honshu\'s Coastal Islands West', 'JA3,4,9', 339, -33.4, -37.9, 130, 137.58, 'H', 'Omishima, Mukai, Hiko Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-118', 'Kuwait Group', '9K', 348, -28.56667, -30.01667, 47.8, 48.83333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-119', 'Musandam Region group', 'A4', 370, -25.61667, -26.53333, 56.08333, 56.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-120', 'Cyprus\'s Coastal Islands', '5B', 215, -34.5, -35.75, 32.23333, 34.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-121', 'Nordenshel\'da Archipelago', 'R0B', 15, -76.33334, -77.33334, 93.75, 98.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-122', 'Kyonggi-do Province West group', 'HL2', 137, -37.71667, -38, 124.5667, 124.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-123', 'Icel / Adana / Hatay Province group', 'TA', 390, -35.91667, -36.9, 32.58333, 36.21667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-124', 'Gulf of Oman group', 'A61', 391, -24.96667, -25.61667, 56.26667, 56.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-125', 'Gulf of Thailand North East group', 'HS', 387, -11.5, -12.5, 102, 102.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-126', 'Malay Peninsula South West group', 'HS', 387, -6.433333, -7, 99.08334, 100.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-127', 'Chittagong Region group', 'S2', 305, -20.51667, -22.66667, 91, 92.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-128', 'Gulf of Thailand group', '3W', 293, -8.25, -10.46667, 103.3333, 105.5333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-129', 'Guangdong Province East group', 'BY7', 318, -21.7, -23.7, 113.85, 117.1833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-130', 'South China Sea Coast South group', '3W', 293, -8.416667, -10.55, 105.5333, 107.6333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-131', 'Guangdong Province West group', 'BY7', 318, -20.2, -22.75, 109.5833, 113.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-132', 'Gulf of Tongking North group', '3W', 293, -19.96667, -21.5, 106, 108, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-133', 'Cambodia group', 'XU', 312, -9.866667, -11.58333, 102.8333, 104.45, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-134', 'Hebei / Tianjin Province group', 'BY3', 318, -38.26667, -39.98333, 117.55, 119.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-135', 'Jiangsu Province group', 'BY4', 318, -31.66667, -35.06667, 119.1833, 121.9333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-136', 'Shanghai Province group', 'BY4', 318, -30.71667, -31.86667, 121.3167, 121.9333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-137', 'Zhejiang Province North group', 'BY5', 318, -29, -30.91667, 120.3333, 123, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-138', 'Fujian Province group', 'BY5', 318, -23.5, -27.13333, 117.1833, 120.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-139', 'Guangxi Autonomous Region group', 'BY7', 318, -20.2, -21.66667, 108, 109.7667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-140', 'Khulna / Barisal Region group', 'S2', 305, -21.58333, -22.83333, 89.11667, 91, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-141', 'Zhejiang Province South group', 'BY5', 318, -27.13333, -29, 120.45, 122.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-142', 'Sea of Okhotsk Coast group', 'R0Z', 15, -50.85, -55.81667, 155.4167, 156.7667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-143', 'Hainan Province (Xisha Islands) group', 'BY7', 318, -15, -17.5, 111, 113, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-144', 'Tenasserim Region South group', 'XZ', 309, -9.5, -13.25, 97.33334, 98.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-145', 'Malay Peninsula South East group', 'HS', 387, -6.233333, -9, 99.95, 102.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-146', 'Shandong Province North East group', 'BY4', 318, -37, -38.45, 120, 122.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-147', 'Hokkaido\'s Coastal Islands', 'JA8', 339, -41.3, -45.58333, 139.3333, 145.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-148', 'Cholla-bukto Province group', 'HL4', 137, -35.43333, -36.16667, 125.9167, 126.6833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-149', 'Sakhalin\'s Coastal Islands', 'R0F', 15, -45.66667, -54.66667, 141, 145, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-150', 'Shandong Province South group', 'BY4', 318, -35.06667, -37, 119.3, 122.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-151', 'Liaoning Province West group', 'BY2', 318, -38.66667, -40.91667, 119.8333, 122.2667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-152', 'Laptev Sea Coast West group', 'R0Q', 15, -72.93333, -75, 111, 121.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-153', 'West Bengal State group', 'VU', 324, -21.5, -22.08333, 87.5, 89.11667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-154', 'Black Sea Coast East group', 'TA', 390, -40.91667, -42.13334, 35, 41.53333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-155', 'Taiwan\'s Coastal Islands', 'BV', 386, -21.58333, -25.91667, 119.9167, 122.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-156', 'Ushakova Island', 'R0B', 15, -80.75, -81.08334, 78.5, 81, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-157', 'South China Sea Coast Centre group', '3W', 293, -9.916667, -12.81667, 107.6333, 109.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-158', 'Liaoning Province East group', 'BY2', 318, -38.66667, -39.83333, 121.1667, 124.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-159', 'Black Sea Coast West group', 'TA', 390, -41.08333, -42.13334, 29.11667, 35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-160', 'Shandong Province North West group', 'BY4', 318, -37.15, -38.3, 117.8333, 120, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-161', 'Kerala State group', 'VU', 324, -8.3, -12.7, 74.88333, 77.11667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-162', 'South China Sea Coast North group', '3W', 293, -12.81667, -16.18333, 108.1667, 109.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-163', 'Laptev Sea Coast East group', 'R0Q', 15, -71.21667, -72.91666, 132.5, 142.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-164', 'East Siberian Sea Coast West group', 'R0Q', 15, -70.83334, -72.75, 142.5, 152.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-165', 'Arakan Region group', 'XZ', 309, -17.46667, -20.63333, 92.41666, 94.53333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-166', 'Hormozgan Province group', 'EP', 330, -25.43333, -27.31667, 52.73333, 59.2, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-167', 'Irrawaddy / Yangon / Pegu Region group', 'XZ', 309, -15.61667, -17.46667, 94.08334, 96.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-168', 'Kangwon-do Province Group', 'HL2', 137, -37.15, -38.6, 128.3667, 129.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-169', 'Maharashtra State Group', 'VU', 324, -15.76667, -20.11667, 72.58334, 73.66666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-170', 'Shelikhova Bay Group', 'R0I', 15, -59.03333, -61.93333, 154, 162.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-001', 'Dodecanese (Dodekanisos)', 'SV5', 45, -35.28333, -37.5, 26.1, 29.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-002', 'Aland Islands', 'OH0', 5, -59.75, -60.53333, 19.41667, 21.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-003', 'Eastern group', 'CU1,2', 149, -36.83333, -38, -24.5, -26.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-004', 'Balearic Islands', 'EA6', 21, -38.5, -40.16667, 1, 4.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-005', 'Great Britain (main island only)', 'Various', NULL, -49.83333, -58.66667, -6.25, 1.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-006', 'Aran Islands', 'EI', 245, -53.03333, -53.18333, -9.466666, -9.916667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-007', 'Blasket Islands', 'EI', 245, -52.01667, -52.15, -10.46667, -10.68333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-008', 'Inner Hebrides', 'GM,MM', 279, -55.55, -57.78333, -5.416667, -7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-009', 'Orkney', 'GM,MM', 279, -58.66, -59.48, -2.25, -4.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-010', 'Outer Hebrides', 'GM,MM', 279, -56.75, -59.16667, -5.733333, -7.733333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-011', 'Isles of Scilly', 'G,M', 223, -49.83333, -50.06667, -6.083333, -6.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-012', 'Shetland & Fair Isle', 'GM,MM', 279, -59.46667, -61, -.5, -2.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-013', 'Jersey', 'GJ,MJ', 122, -49.13334, -49.33333, -1.833333, -2.333333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-014', 'Corsica (Corse) Island (main island only)', 'TK', 214, -41.31667, -43.05, 8.416667, 9.666667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-015', 'Crete (Kriti) Island (main island only)', 'SV9', 40, -34.88334, -35.71667, 23.46667, 26.36667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-016', 'Dalmatia South group', '9A', 497, -42.38334, -43.58333, 15.41667, 18.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-017', 'Eolie (Lipari) Islands', 'I*9', 248, -38.33333, -38.86666, 14.25, 15.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-018', 'Faroe Islands', 'OY', 222, -61.33333, -62.5, -6, -8, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-019', 'Franz Josef Land', 'R1F', 61, -79.66666, -81.91666, 36.5, 65.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-020', 'Gotland County (Gotland Island) group', 'SM1', 284, -56.83333, -58.5, 17.83333, 19.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-021', 'Iceland (main island only)', 'TF', 242, -63.25, -66.66666, -13.33333, -24.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-022', 'Jan Mayen Island', 'JX', 118, -70.75, -71.25, -7.75, -9.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-023', 'Malta group', '9H', 257, -35.75, -36.16667, 14.16667, 14.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-024', 'Sardinia (Sardegna) (main island only)', 'I*0', 225, -38.83333, -41.26667, 8.083333, 9.883333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-025', 'Sicily (Sicilia) (main island only)', 'I*9', 248, -36.61666, -38.33333, 12.41667, 15.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-026', 'Spitsbergen Island (main island only)', 'JW', 259, -76.5, -80.08334, 10.5, 21.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-027', 'Bear Island (Bjornoya)', 'JW', 259, -74.25, -74.58334, 18.75, 19.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-028', 'Toscana (Tuscany) Region group', 'I*5', 248, -42.2, -44.01667, 9.75, 11.45, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-029', 'Sjaelland Archipelago', 'OZ', 221, -54.55, -56.25, 10.86667, 12.83333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-030', 'Bornholm Island', 'OZ', 221, -54.91667, -55.36666, 14.58333, 15.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-031', 'Campania Region group', 'I*8', 248, -39.98333, -41.21667, 13.76667, 15.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-032', 'Poitou-Charentes Region group', 'F', 227, -45.61666, -46.26667, -1.083333, -1.666667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-033', 'Vesteralen Islands', 'LA', 266, -68.25, -69.41666, 14.16667, 16.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-034', 'Hiiumaa / Saaremaa / Laanemaa County group', 'ES0,3', 52, -57.86666, -59.33333, 21.66667, 23.61667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-035', 'Novaya Zemlya', 'R1O', 54, -70.46667, -77.16666, 51.25, 69.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-036', 'Sor-Trondelag / More Og Romsdal Cty Nth group', 'LA', 266, -62.91667, -64.43333, 6.833333, 10.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-037', 'Kalmar County group', 'SM7', 284, -56.16667, -58, 16.06667, 17.21667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-038', 'Noord Holland / Friesland / Groningen Prov group', 'PA', 263, -52.33333, -53.56667, 4.5, 7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-039', 'Chausey Islands', 'F', 227, -48.85, -48.91667, -1.7, -1.883333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-040', 'Estremadura Province group', 'CT', 272, -38.38334, -39.86666, -8.916667, -9.583333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-041', 'Maddalena Archipelago', 'I*0', 248, -41.15, -41.31667, 9.3, 9.533334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-042', 'Schleswig-Holstein State North West group', 'DL', 230, -54.33333, -55.06667, 8.25, 9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-043', 'Goteborg Och Bohus / Halland County group', 'SM6', 284, -56.45, -59.08333, 10.91667, 12.93333, 'H', 'Skafto/Brato/Salto/Smogen/Tryggo/Valon Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-044', 'Finnmark County West group', 'LA', 266, -69.98333, -71.25, 21, 26.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-045', 'Lazio Region group', 'I*0', 248, -40.75, -42.36666, 11.45, 13.76667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-046', 'Troms County group', 'LA', 266, -68.66666, -70.38333, 16.75, 21.88333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-047', 'Niedersachsen State group', 'DL', 230, -53.33333, -53.9, 6.633333, 9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-048', 'Bretagne (Morbihan) Region group', 'F', 227, -47.25, -47.75, -2.483333, -3.533333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-049', 'North Aegean Islands', 'SV', 236, -37.5, -40.06667, 24.91667, 27.13333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-050', 'Puglia (Foggia) Region group', 'I*7', 248, -41.36666, -42.25, 15.13333, 16.21667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-051', 'Ustica Island', 'I*9', 248, -38.66667, -38.75, 13.11667, 13.26667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-052', 'Ipeiros / Dytiki Ellas Region group', 'SV', 236, -37.2, -39.95, 19.33333, 21.75, 'H', 'Lefkada, Petalas Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-053', 'Market Reef', 'OJ0,SM', NULL, -60.28333, -60.31667, 19.11667, 19.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-054', 'Egadi Islands', 'I*9', 248, -37.9, -38.06667, 12, 12.43333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-055', 'Sogn og Fjordane etc County group', 'LA', 266, -58.26667, -62.23333, 4.416667, 6.383333, 'H', 'Karmoy/Eigeroya/Osteroy/Radoy/Tysnesoy Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-056', 'More Og Romsdal County Centre group', 'LA', 266, -62.38334, -62.91667, 5.833333, 7.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-057', 'Mecklenburg-Vorpommern State group', 'DL', 230, -53.93333, -54.71667, 10.91667, 13.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-058', 'Provence-Cote D\'Azur (Alpes-Marit) Reg group', 'F', 227, -43.48333, -43.78333, 6.933333, 7.533333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-059', 'St Kilda', 'GM,MM', 279, -57.76667, -57.9, -8.45, -8.683333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-060', 'Sterea Ellas Region group', 'SV', 236, -37.91667, -39.06667, 22.7, 24.68333, 'H', 'Evvoia Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-061', 'Vest Agder To Ostfold County group', 'LA', 266, -57.93333, -59.41667, 6.383333, 11.2, 'H', 'Hisoy, Notteroy, Skjernoyto Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-062', 'Nordland / Nord-Trondelag County group', 'LA', 266, -64.43333, -68.36667, 10.41667, 16.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-063', 'Spitsbergen\'s Coastal Islands', 'JW', 259, -76, -81, 10, 34, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-064', 'Pays De La Loire Region group', 'F', 227, -46.26667, -47.45, -1.083333, -2.666667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-065', 'Bretagne (Finistere North West) Region group', 'F', 227, -48.1, -48.5, -4.283333, -5.166667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-066', 'Solovetskiye Islands', 'R1O', 54, -64.93333, -65.21667, 35.43333, 36.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-067', 'Kyklades (Cyclades)', 'SV', 236, -36.16667, -38.01667, 24.08333, 26.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-068', 'Bretagne (Finistere South West) Region group', 'F', 227, -47.8, -48.1, -4.366667, -4.916667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-069', 'Columbretes Islands', 'EA5', 281, -39.78333, -39.95, .5, .75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-070', 'Provence-Cote D\'Azur (Var) Region group', 'F', 227, -42.96667, -43.48333, 5.666667, 6.933333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-071', 'Vestmannaeyjar (Westman Islands)', 'TF7', 242, -63.25, -63.53333, -20.1, -20.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-072', 'Thessalia Region group', 'SV', 236, -39, -39.98333, 22.65, 24.35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-073', 'Puglia (Taranto) Region group', 'I*7', 248, -40.28333, -40.51667, 16.85, 17.78333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-074', 'Bretagne (Cotes-D\'Armor Centre) Region group', 'F', 227, -48.53333, -49.16667, -2.5, -3.166667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-075', 'Peloponnisos (Argolis) / Attiki Region group', 'SV', 236, -37.06667, -38.33333, 22.71667, 24.08333, 'H', 'Poros Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-076', 'Lofoten Islands', 'LA', 266, -67.36667, -68.48333, 11.75, 15.18333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-077', 'La Coruna / Lugo Province group', 'EA1', 281, -42.41667, -43.83333, -7.05, -9.416667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-078', 'Gerona Province group', 'EA3', 281, -41.66667, -42.43333, 2.783333, 3.416667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-079', 'More Og Romsdal County South group', 'LA', 266, -62.15, -62.43333, 5.25, 6.166667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-080', 'Pontevedra Province group', 'EA1', 281, -41.86666, -42.58333, -8.8, -8.966666, 'H', 'La Toja/Lobeira/San Simon/Tambo/Toralla Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-081', 'Basse-Normandie (Manche East) Region group', 'F', 227, -49.36666, -49.83333, -1.1, -1.966667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-082', 'Barents Sea Coast West group', 'R1Z', 54, -68.88333, -69.96667, 30.81667, 37, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-083', 'Liguria Region group', 'I*1', 248, -43.75, -44.41667, 7.533333, 10.01667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-084', 'Uppsala / Stockholm County group', 'SM5,0', 284, -58.66667, -60.66667, 17.36667, 19.5, 'H', 'See WWW.RSGBIOTA.COM for ineligible islands');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-085', 'Kolguev Island', 'R1P', 54, -68.58334, -69.58334, 48, 50.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-086', 'Pechorskoye Sea Coast East group', 'R1P', 54, -68.33334, -70.46667, 58, 65.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-087', 'Vasternorrland County group', 'SM3', 284, -62.13334, -63.46667, 17.5, 19.28333, 'H', 'See WWW.RSGBIOTA.COM for ineligible islands');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-088', 'Kattegat group', 'OZ', 221, -56.58333, -57.41667, 10.75, 11.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-089', 'Western group', 'CU8,9', 149, -39.25, -39.83333, -31, -31.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-090', 'Palagruza Island', '9A', 497, -42.33333, -42.41667, 16.21667, 16.36667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-091', 'Puglia (Lecce / Brindisi / Bari) Region group', 'I*7', 248, -39.75, -41.36666, 16.21667, 18.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-092', 'Summer Isles', 'GM,MM', 279, -57.93333, -58.05, -5.333333, -5.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-093', 'Alicante / Murcia Province group', 'EA5', 281, -37.38334, -38.88334, -1.633333, .33, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-094', 'Bretagne (Finistere South) Region group', 'F', 227, -47.68333, -47.86666, -3.533333, -4.383333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-095', 'Provence-Cote D\'Azur (Bouches-Du-Rhone) group', 'F', 227, -43.15, -43.46667, 4.233333, 5.666667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-096', 'Lansi-Suomi (Turku) Province group', 'OH1', 224, -59.58333, -61.06667, 21, 22.8, 'H', 'Kimito Kemio, Rymattyla Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-097', 'Etela-Suomi (Uusimaa) Province group', 'OH2', 224, -59.58333, -60.41667, 22.8, 26.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-098', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-099', 'Les Minquiers Islands', 'GJ,MJ', 122, -48.93333, -49.03333, -2.033333, -2.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-100', 'Cerbicales Islands', 'TK', 214, -41.53333, -41.58333, 9.35, 9.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-101', 'Lansi-Suomi (Vaasa) Province group', 'OH6', 224, -61.95, -64.16666, 20.58333, 23.71667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-102', 'Pechorskoye Sea Coast Centre group', 'R1P', 54, -68.2, -69, 52, 58, 'H', 'Pesyakov Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-103', 'Saltee Islands', 'EI', 245, -52.08333, -52.15, -6.566667, -6.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-104', 'Sanguinaires Islands', 'TK', 214, -41.86666, -41.9, 8.566667, 8.616667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-105', 'Bretagne (Finistere North) Region group', 'F', 227, -48.5, -48.75, -3.65, -4.833333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-106', 'St Tudwal\'s Islands', 'GW,MW', 294, -52.78333, -52.83333, -4.45, -4.483333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-107', 'Bretagne (Cotes-D\'Armor West) Region group', 'F', 227, -48.66667, -48.91667, -3.166667, -3.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-108', 'Treshnish Isles', 'GM,MM', 279, -56.43333, -56.51667, -6.366667, -6.516667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-109', 'Farne Islands', 'G,M', 223, -55.6, -55.66667, -1.55, -1.683333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-110', 'Istra group', '9A', 497, -44.75, -45.51667, 13.48333, 14.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-111', 'Monach Islands', 'GM,MM', 279, -57.5, -57.55, -7.566667, -7.733333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-112', 'Shiant Islands', 'GM,MM', 279, -57.86666, -57.91667, -6.3, -6.45, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-113', 'Peloponnisos (Lakonia) / Kythira Region group', 'SV', 236, -35.8, -37.06667, 22.33333, 23.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-114', 'Guernsey group', 'GU,MU', 106, -49.33333, -49.83333, -2.083333, -2.833333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-115', 'Ireland', 'EI,GI,MI', NULL, -51.33333, -55.5, -5.4, -10.68333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-116', 'Isle of Man', 'GD,MD', 114, -54, -54.5, -4.166667, -4.916667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-117', 'Malyy Vysotskiy Island', 'R1M,OH', NULL, -60.61666, -60.65, 28.55, 28.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-118', 'Flannan Isles', 'GM,MM', 279, -58.25, -58.31667, -7.55, -7.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-119', 'White Sea Coast East group', 'R1O', 54, -65.95, -66.83334, 40.66667, 44.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-120', 'English Coastal Islands', 'G,M', 223, -49.83333, -55.8, -5.833333, 1.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-121', 'Irish Coastal Islands', 'EI', 245, -51.33333, -55.5, -5.966667, -10.68333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-122', 'Northern Irish Coastal Islands', 'GI,MI', 265, -54.01667, -55.33333, -5.4, -6.933333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-123', 'Scottish Coastal Islands', 'GM,MM', 279, -54.61666, -58.7, -1.666667, -6.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-124', 'Welsh Coastal Islands', 'GW,MW', 294, -51.36666, -53.46667, -2.666667, -5.8, 'H', 'Isle of Anglesey Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-125', 'Jylland West group', 'OZ', 221, -54.91667, -56.71667, 8, 8.666667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-126', 'Lappi Province group', 'OH9', 224, -65.58334, -65.83334, 24.13333, 25.08333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-127', 'Schleswig-Holstein State South West group', 'DL', 230, -53.9, -54.33333, 7.833333, 9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-128', 'Schleswig-Holstein State East group', 'DL', 230, -53.98333, -54.88334, 9.583333, 11.35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-129', 'Usedom (Uznam) Island', 'DL,SP1', NULL, -53.83333, -54.2, 13.75, 14.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-130', 'Friuli-Venezia Giulia Region group', 'I*3', 248, -45.6, -45.78333, 13.1, 13.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-131', 'Veneto Region group', 'I*3', 248, -44.78333, -45.65, 12.11667, 13.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-132', 'Szczecin / Koszalin Province group', 'SP1', 269, -53.8, -54.5, 14.26667, 16.48333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-133', 'Gulf of Finland group', 'R1A-C', 54, -59.46667, -60.61666, 26.61667, 30.23333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-134', 'Bilbao / San Sebastian (Basque) Prov group', 'EA2', 281, -43.3, -43.5, -1.8, -3.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-135', 'Vasterbotten County group', 'SM2', 284, -63.4, -65.06667, 19.25, 21.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-136', 'Kvarner group', '9A', 497, -44.4, -45.35, 14.16667, 15.43333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-137', 'Skane County group', 'SM7', 284, -55.28333, -56.5, 12.41667, 14.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-138', 'Blekinge County group', 'SM7', 284, -55.91667, -56.33333, 14.55, 16.08333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-139', 'Norrbotten County group', 'SM2', 284, -65.06667, -65.83334, 21.53333, 24.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-140', 'Etela-Suomi (Kymi) Province group', 'OH5', 224, -60.25, -60.53333, 26.58333, 27.83333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-141', 'Finnmark County East group', 'LA', 266, -69.75, -71.25, 26.66667, 31.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-142', 'Oviedo / Santander Province group', 'EA1', 281, -43.4, -43.66667, -3.15, -7.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-143', 'Cadiz / Huelva Province group', 'EA7', 281, -36, -37.2, -5.25, -7.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-144', 'Calabria / Basilicata Region group', 'I*8', 248, -37.9, -40.38334, 15.63333, 17.21667, 'H', 'Dino Isl ineligble after 1/1/15');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-145', 'Algarve Province group', 'CT', 272, -36.93333, -37.45, -7.4, -9.033334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-146', 'Zuid Holland / Zeeland Province group', 'PA', 263, -51.36666, -52.33333, 3.366667, 4.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-147', 'White Sea Coast group', 'R1N', 54, -63.95, -66.58334, 33.08333, 36.83333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-148', 'Languedoc-Roussillon Region group', 'F', 227, -42.43333, -43.55, 3.033333, 4.233333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-149', 'Tallinn & Harjumaa / Virumaa County group', 'ES1,2,4', 52, -59.23333, -59.83333, 23.71667, 28.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-150', 'Minho / Douro Lit / Beira Litoral Province group', 'CT', 272, -39.86666, -41.86666, -8.666667, -9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-151', 'Castellon / Valencia Province group', 'EA5', 281, -38.88334, -40.53333, -.3333333, .5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-152', 'Almeria / Granada / Malaga Province group', 'EA7', 281, -36.33333, -37.38334, -1.633333, -5.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-153', 'White Sea Coast West group', 'R1O', 54, -63.78333, -65.95, 36.38334, 40.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-154', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-155', 'Emilia Romagna Region group', 'I*4', 248, -43.96667, -44.83333, 12.25, 12.75, 'D', 'DELETED');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-156', 'Basse-Normandie (Manche West) Reg group', 'F', 227, -48.61666, -49.83333, -1.466667, -1.966667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-157', 'Bretagne (Cotes-D\'Armor East etc) Reg group', 'F', 227, -48.61666, -48.73333, -1.566667, -2.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-158', 'Peloponnisos (Messinia) Region group', 'SV', 236, -36.63334, -37.38334, 21.5, 22.33333, 'H', 'Skaktiria, Chelonaki Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-159', 'Aquitaine Region group', 'F', 227, -43.36666, -45.61666, -1.083333, -1.8, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-160', 'Barents Sea Coast group', 'R1P', 54, -66.43333, -68.7, 43.16667, 48, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-161', 'Barents Sea Coast East group', 'R1Z', 54, -66.38333, -68.88333, 37, 41.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-162', 'White Sea Coast group', 'R1Z', 54, -66.03333, -67.16666, 32.25, 40.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-163', 'Montenegro group', '4O,YU', 296, -41.83333, -42.38334, 18.55, 19.38333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-164', 'Corsica\'s Coastal Islands', 'TK', 214, -41.31667, -43.05, 8.416667, 9.666667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-165', 'Sardinia\'s Coastal Islands', 'I*0', 225, -38.83333, -41.26667, 8.083333, 9.883333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-166', 'Sicily\'s Coastal Islands', 'I*9', 248, -36.61666, -38.33333, 12.41667, 15.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-167', 'Baixo Alentejo Province group', 'CT', 272, -37.45, -38.5, -8.783334, -8.916667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-168', 'Iceland\'s Coastal Islands', 'TF', 242, -63.25, -66.66666, -13.33333, -24.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-169', 'Albania group', 'ZA', 7, -39.68333, -41.85, 19.21667, 20.01667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-170', 'Dalmatia North group', '9A', 497, -43.58333, -44.73333, 14.55, 15.93333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-171', 'Jylland North group', 'OZ', 221, -56.71667, -57.83333, 8.166667, 10.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-172', 'Jylland East and Fyn group', 'OZ', 221, -54.66667, -56.71667, 9.5, 11, 'H', 'Als, Alro Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-173', 'Lansi-suomi (Pori) Province group', 'OH1', 224, -61.06667, -61.95, 21, 21.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-174', 'Makedonia / Thraki Region group', 'SV', 236, -39.88334, -41, 22.55, 26.03333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-175', 'Central group', 'CU3-7', 149, -38, -39.25, -26.5, -29, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-176', 'Gavleborg County group', 'SM3', 284, -60.65, -62.13334, 17.16667, 17.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-177', 'Sodermanland / Ostergotland County group', 'SM5', 284, -58, -58.91667, 16.75, 17.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-178', 'Parnumaa County / Saaremaa County South group', 'ES0,8', 52, -57.7, -58.53333, 23.08333, 24.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-179', 'Mykolayiv / Kherson Obl Black Sea Coast group', 'UR', 288, -46, -46.63334, 31.18333, 33.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-180', 'Respublika Krym Black Sea Coast group', 'UR', 288, -44.38334, -46.06667, 32.45, 36.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-181', 'Bulgaria group', 'LZ', 212, -41.98333, -43.73333, 27.45, 28.63333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-182', 'Odes\'ka Obl Black Sea Coast group', 'UR', 288, -45.21667, -46.63334, 29.63333, 31.18333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-183', 'Romania group', 'YO', 275, -43.73333, -45.21667, 28.56667, 29.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-184', 'Oulu Province group', 'OH8', 224, -64.16666, -65.58334, 23.58333, 25.43333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-185', 'Krasnodarskiy Kray Black Sea Coast group', 'R6A-D', 54, -43.38334, -45.36666, 36.6, 40, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-186', 'Turkey group', 'TA', 390, -40.03333, -40.71667, 25.61667, 26.83333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-187', 'Crete\'s Coastal Islands', 'SV9', 40, -34.75, -35.71667, 23.41667, 26.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-188', 'Pechorskoye Sea Coast West group', 'R1P', 54, -67.6, -68.55, 48, 52, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-001', 'Great Bahama Bank group', 'C6', 60, -21.58333, -25.7, -74.25, -78.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-002', 'Caicos Islands', 'VP5', 89, -21.08333, -22.08333, -71.33334, -72.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-003', 'Turks Islands', 'VP5', 89, -21.08333, -21.66667, -71, -71.33334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-004', 'North Slope County Centre group', 'KL', 6, -70.21667, -71, -147.6667, -154, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-005', 'Bermuda Islands', 'VP9', 64, -32.16667, -32.5, -64.5, -65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-006', 'Nunavut (Victoria Island) group', 'VE8,VY0', 1, -68.33334, -74, -100.75, -119.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-007', 'Nunavut (Southampton Island) group', 'VY0', 1, -62, -66.55, -80, -88.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-008', 'Nunavut (Ellesmere Island) group', 'VY0', 1, -76.16666, -83.33334, -60.5, -92.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-009', 'Nunavut (Devon Island) group, Canada', 'VY0', 1, -74.4, -77.85, -79, -106.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-010', 'NS Province (Cape Breton Island) group', 'VE1', 1, -45.41667, -47.13334, -59.63334, -61.63334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-011', 'Clipperton Island', 'FO', 36, -10.21667, -10.38333, -109.1333, -109.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-012', 'Coco\'s Island', 'TI9', 37, -5.466667, -5.633333, -86.96667, -87.13333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-013', 'Caribbean Sea Coast Centre group', 'YN', 86, -12, -13.5, -82.75, -83.66666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-014', 'NB Province South group', 'VE9', 1, -44.45, -45.8, -64.5, -67.06667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-015', 'Cuba (main island only)', 'CO,KG4', NULL, -19.8, -23.25, -74.11667, -85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-016', 'Cayman Islands', 'ZF', 69, -19, -20, -79.58334, -81.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-017', 'Baja California State South West group', 'XE2', 50, -28, -30, -114.1, -116, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-018', 'Greenland (main island only)', 'OX', 237, -59.75, -84, -11.5, -74, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-019', 'Kodiak group', 'KL', 6, -56.66667, -58.75, -151.5, -155, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-020', 'Aves Island', 'YV0', 17, -15.63333, -15.8, -63.56667, -63.71667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-021', 'Barbados', '8P', 62, -12.83333, -13.41667, -59.33333, -59.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-022', 'Anguilla', 'VP2E', 12, -18.15, -18.66667, -62.88334, -63.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-023', 'British Virgin Islands', 'VP2V', 65, -18.25, -18.83333, -64.16666, -64.91666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-024', 'Grenada', 'J3', 77, -11.95, -12.26667, -61.5, -61.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-025', 'The Grenadines', 'J8', 98, -12.53333, -13.06667, -61.06667, -61.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-026', 'NY State group', 'W2', 291, -40.48333, -41.3, -71.83334, -74.26667, 'H', 'Staten, Manhattan Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-027', 'Newfoundland Island (main island only)', 'VO1', 1, -46.58333, -51.66667, -52.58333, -59.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-028', 'Pribilof Islands', 'KL', 6, -56.41667, -57.41667, -169.3333, -170.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-029', 'Prince Edward Island', 'VY2', 1, -45.91667, -47.16667, -61.95, -64.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-030', 'Revillagigedo Islands', 'XE4', 204, -18.58333, -19.5, -110.6667, -112.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-031', 'RI State group', 'W1', 291, -41.13334, -41.68333, -71.11667, -71.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-032', 'St Pierre & Miquelon', 'FP', 277, -46.66667, -47.25, -56.1, -56.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-033', 'San Andres Island', 'HK0', 216, -12, -12.66667, -81.25, -82, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-034', 'FL State Centre West group', 'W4', 291, -26.95, -28.46667, -82.5, -82.91666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-035', 'Santanilla (Swan) Islands', 'HR', 80, -17.33333, -17.5, -83.75, -84, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-036', 'BC Province (Vancouver Island) group', 'VE7', 1, -48.25, -51, -123.2, -129.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-037', 'Near Islands (Semichi Islands) group', 'KL', 6, -52.58333, -52.83333, 173.8167, 174.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-038', 'QC Province (La Madeleine Islands) group', 'VE2', 1, -47, -48, -61.08333, -62.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-039', 'Andreanof Islands', 'KL', 6, -51.55, -52.5, -172.1667, -178.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-040', 'St Lawrence Island', 'KL', 6, -62.83333, -63.83333, -168.5, -172, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-041', 'Alexander Archipelago', 'KL', 6, -54.66667, -58.58333, -131, -136.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-042', 'Valdez Cordova County West group', 'KL', 6, -59.33333, -61, -145.6333, -148.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-043', 'Nunavut (Sverdrup Islands) group', 'VY0', 1, -77.5, -81.58334, -85, -106.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-044', 'NFLD Province (Labrador) South group', 'VO2', 1, -51.36666, -54.4, -55.16667, -58.21667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-045', 'Quintana Roo State North group', 'XE3', 50, -20.83333, -21.83333, -86.5, -87.53333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-046', 'MA State South group', 'W1', 291, -41.21667, -41.73333, -69.9, -71.11667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-047', 'Nunavut (Baffin Island) group (Main Island)', 'VY0', 1, -61.75, -73.91666, -61, -90.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-048', 'Bimini Islands', 'C6', 60, -24.66667, -26.16667, -78.75, -79.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-049', 'Providencia Island', 'HK0', 216, -13.25, -13.45, -81.25, -81.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-050', 'North Slope County East group', 'KL', 6, -69.65, -70.5, -141, -147.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-051', 'BC Province (Queen Charlotte Islands) group', 'VE7', 1, -51.83333, -54.33333, -130.9167, -133.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-052', 'FL State South West (Collier / Monroe) group', 'W4', 291, -25.1, -26.31667, -80.85, -81.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-053', 'Trinity Islands', 'KL', 6, -56.33333, -56.66667, -153.75, -155, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-054', 'Berry Islands', 'C6', 60, -25.33333, -25.91667, -77.58334, -78, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-055', 'ME State East group', 'W1', 291, -43.75, -45.05, -66.93333, -69.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-056', 'La Juventud Island group', 'CO4', 70, -21.25, -22.25, -81.3, -83.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-057', 'Bahia Islands', 'HR', 80, -16.03333, -16.53333, -85.75, -87.08334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-058', 'GA State group', 'W4', 291, -30.7, -32.08333, -80.83334, -81.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-059', 'Fox Islands', 'KL', 6, -52.66667, -55.08333, -163, -169.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-060', 'Valle / Choluteca Department group', 'HR', 80, -13, -13.41667, -87.3, -87.81667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-061', 'BC Province North group', 'VE7', 1, -51, -55.05, -127.1833, -130.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-062', 'FL State (Florida Keys) group', 'W4', 291, -24.41667, -25.61667, -80, -82.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-063', 'Sable Island', 'CY0', 211, -43.88334, -44.05, -59.66667, -60.21667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-064', 'Near Islands (Agattu & Attu) group', 'KL', 6, -52.25, -53.16667, 172.3333, 173.8167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-065', 'WA State North group', 'W7', 291, -47.31667, -49, -122.2167, -123.5, 'H', 'Camano/Fidalgo/Fox/McNeil/Mercer Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-066', 'CA State South (Orange / San Diego) group', 'W6', 291, -32.53333, -33.75, -117.1167, -119.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-067', 'NC State East group', 'W4', 291, -34.53333, -36.53333, -75.33334, -76.66666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-068', 'NB Province North group', 'VE9', 1, -46, -48.08333, -63.71667, -66.36667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-069', 'FL State South West (Charlotte / Lee) group', 'W4', 291, -26.31667, -26.95, -81.85, -82.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-070', 'Rat Islands', 'KL', 6, -51.25, -52.5, 175.75, 179.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-071', 'Chiriqui / Veraguas South Province group', 'HP', 88, -7.166667, -8.333333, -80.65, -82.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-072', 'Panama / Darien Province group', 'HP', 88, -7.2, -9.016666, -77.9, -80.03333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-073', 'Corozal / Belize District group', 'V3', 66, -17.11667, -18.48333, -87.75, -88.35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-074', 'Nunivak Island', 'KL', 6, -59.66667, -60.5, -165.4167, -167.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-075', 'BC Province (Gulf Islands) group', 'VE7', 1, -48.5, -49.25, -123, -124, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-076', 'FL State North West (Jefferson etc) group', 'W4', 291, -28.46667, -30.1, -82.65, -84.08334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-077', 'QC Province (Anticosti Island) group', 'VE2', 1, -49, -50, -61.58333, -64.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-078', 'Baja California Sur State South West group', 'XE2', 50, -22.75, -25.55, -110, -112.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-079', 'FL State (Dry Tortugas Islands) group', 'W4', 291, -24.5, -24.83333, -82.75, -83.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-080', 'Little Bahama Bank group', 'C6', 60, -25.7, -27.5, -76.83334, -79.16666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-081', 'NS Province East group', 'VE1', 1, -44, -45, -61.88334, -64.63333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-082', 'MS State group', 'W5', 291, -30.16667, -30.4, -88.38333, -89.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-083', 'VA State group', 'W4', 291, -36.53333, -38.03333, -75, -76.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-084', 'QC Province (St Lawrence Gulf) East group', 'VE2', 1, -50.13334, -51.5, -57.1, -61, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-085', 'FL State North West (Bay to Wakulla) group', 'W4', 291, -29.55, -30.28333, -84.08334, -86, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-086', 'Ciego De Avila / Camaguey Province Nth group', 'CO7', 70, -21.5, -22.66667, -77, -78.93333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-087', 'Shumagin Islands', 'KL', 6, -54.66667, -55.66667, -159, -161, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-088', 'Bocas Del Toro Province group', 'HP', 88, -8.8, -9.566667, -81.23333, -82.56667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-089', 'LA State East group', 'W5', 291, -29.41667, -30.2, -88.78333, -89.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-090', 'Quintana Roo State Centre group', 'XE3', 50, -19.83333, -20.83333, -86.5, -87.46667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-091', 'BC Province South group', 'VE7', 1, -49, -51, -122.75, -127.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-092', 'TX State West group', 'W5', 291, -25.95, -28.38333, -96.36667, -97.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-093', 'Pinar Del Rio / La Habana Province group', 'CO1-3', 70, -21.66667, -23.33333, -81.66666, -85.08334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-094', 'St Paul Island', 'CY9', 252, -47.13334, -47.25, -60.11666, -60.23333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-095', 'Desecheo Island', 'KP5', 43, -18.33333, -18.43333, -67.41666, -67.53333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-096', 'Hispaniola (main island only)', 'HH,HI', NULL, -17.6, -20, -68.2, -74.53333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-097', 'Jamaica', '6Y', 82, -16.75, -18.75, -75.5, -78.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-098', 'Navassa Island', 'KP1', 182, -18.3, -18.5, -74.91666, -75.16666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-099', 'Puerto Rico', 'KP3,4', 202, -17.8, -18.66667, -65.15, -68, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-100', 'Antigua & Barbuda', 'V2', 94, -16.86667, -17.75, -61.63334, -62.38334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-101', 'Dominica', 'J7', 95, -15.16667, -15.66667, -61.2, -61.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-102', 'Guadeloupe', 'FG', 79, -15.8, -16.55, -60.91667, -61.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-103', 'Montserrat', 'VP2M', 96, -16.63333, -16.86667, -62.08333, -62.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-104', 'St Kitts & Nevis', 'V4', 249, -17.08333, -17.45, -62.5, -62.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-105', 'St Martin (main island only)', 'FS,PJ7', NULL, -18, -18.15, -63, -63.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-106', 'Virgin Islands', 'KP2', 285, -17.66667, -18.43333, -64.53333, -65.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-107', 'Martinique', 'FM', 84, -14.33333, -14.91667, -60.66667, -61.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-108', 'St Lucia', 'J6', 97, -13.66667, -14.16667, -60.8, -61.13334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-109', 'St Vincent', 'J8', 98, -13.06667, -13.41667, -61.06667, -61.31667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-110', 'SC State group', 'W4', 291, -32.08333, -33.85, -78.55, -80.93333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-111', 'NJ State group', 'W2', 291, -38.91667, -40.48333, -73.95, -75.5, 'H', 'Peck\'s Beach, Absecon Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-112', 'NC State West group', 'W4', 291, -33.85, -34.7, -76.66666, -78.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-113', 'South Bahamas group', 'C6', 60, -20.83333, -23.25, -72.58334, -74.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-114', 'Les Saintes Islands', 'FG', 79, -15.8, -15.91667, -61.5, -61.71667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-115', 'Clarion Island', 'XE4', 204, -18.25, -18.5, -114.5833, -114.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-116', 'Puntarenas Province West group', 'TI8', 308, -9.333333, -10.16667, -84, -85.23333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-117', 'Puntarenas Province East group', 'TI8', 308, -8.033334, -9.333333, -82.91666, -84, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-118', 'BC Province (Dundas Islands) group', 'VE7', 1, -54.33333, -54.66667, -130.6667, -131.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-119', 'LA State Centre group', 'W5', 291, -29, -29.46667, -90.41666, -91.35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-120', 'LA State West group', 'W5', 291, -29.38333, -29.8, -91.21667, -93.83334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-121', 'Dillingham / Bristol Bay County group', 'KL', 6, -58.33333, -59.05, -157, -161.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-122', 'Dominican Republic\'s Coastal Islands', 'HI', 72, -17.5, -20, -68, -71.86667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-123', 'Turneffe Islands', 'V3', 66, -17.11667, -17.66667, -87.41666, -88, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-124', 'Baja California Sur State South East group', 'XE2', 50, -22.75, -25.55, -109.25, -111.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-125', 'QC Province (St Lawrence Gulf) West group', 'VE2', 1, -49.26667, -50.3, -65, -68, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-126', 'NS Province South group', 'VE1', 1, -43.25, -44, -64.63333, -66.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-127', 'NS Province West group', 'VE1', 1, -44, -45.71667, -64.5, -66.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-128', 'QC Province (St Lawrence Waterway) group', 'VE2', 1, -46.83333, -49.28333, -68, -71.16666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-129', 'NWT (Banks Island) group', 'VY8', 1, -70.83334, -74.66666, -115, -126.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-130', 'Nunavut (Baffin\'s Coastal Islands) East group', 'VY0', 1, -61.25, -73.91666, -61, -86, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-131', 'Nunavut (Kitikmeot Region) East Centre group', 'VY0', 1, -67.25, -71, -93.5, -106.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-132', 'Bajo Nuevo & Serranilla Bank Cays', 'HK0', 216, -15.66667, -16, -78.5, -80.08334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-133', 'Serrana Bank & Roncador Cays', 'HK0', 216, -13.45, -14.5, -79.91666, -81.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-134', 'Greenland\'s Coastal Islands North West', 'OX', 237, -66.5, -84, -44.75, -74, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-135', 'Campeche State group', 'XE3', 50, -18.45, -22.5, -90.41666, -92.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-136', 'CT State group', 'W1', 291, -40.96667, -41.33333, -71.9, -73.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-137', 'ME State West group', 'W1', 291, -43.06667, -43.98333, -69.25, -70.7, 'H', 'See WWW.RSGBIOTA.COM for ineligible islands');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-138', 'FL State North East group', 'W4', 291, -27.86667, -30.7, -80.5, -81.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-139', 'MD State East group', 'W3', 291, -38.03333, -38.45, -75.03333, -75.36667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-140', 'MD State West group', 'W3', 291, -37.9, -39.08333, -75.75, -76.58334, 'H', 'See WWW.RSGBIOTA.COM for ineligible islands');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-141', 'FL State South East group', 'W4', 291, -25.61667, -27.86667, -80, -80.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-142', 'FL State North West (Escambia etc) group', 'W4', 291, -30.2, -30.41667, -86, -87.56667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-143', 'TX State East group', 'W5', 291, -28.38333, -29.68333, -93.83334, -96.36667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-144', 'CA State South (Santa Barbara to LA) group', 'W6', 291, -33.7, -34.95, -118.1167, -120.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-145', 'Saba & Sint Eustatius', 'PJ5,6,8', 519, -17.45, -17.75, -62.91667, -63.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-146', 'St-Barthelemy Island', 'FJ', 516, -17.83333, -18, -62.76667, -62.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-147', 'The Grenadines', 'J3', 77, -12.26667, -12.53333, -61.33333, -61.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-148', 'MA State North group', 'W1', 291, -41.73333, -42.86666, -69.9, -71.03333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-149', 'Haiti\'s Coastal Islands', 'HH', 78, -17.95, -20.16667, -71.68333, -74.53333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-150', 'Little Diomede Island', 'KL', 6, -65.71667, -65.8, -168.8333, -169, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-151', 'Greenland\'s Coastal Islands South East', 'OX', 237, -59.75, -66.5, -34.5, -44.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-152', 'Nome County North group', 'KL', 6, -64.75, -66.56667, -164.5, -168.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-153', 'Yucatan State group', 'XE3', 50, -20.8, -22.75, -87.53333, -90.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-154', 'NS Province North group', 'VE1', 1, -45, -46, -60.91667, -64.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-155', 'Limon Province group', 'TI6', 308, -9.566667, -10.95, -82.56667, -83.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-156', 'Nunavut (Hudson Bay - QC Coast) NW group', 'VY0', 1, -61.25, -65, -66, -80.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-157', 'Valdez Cordova County East group', 'KL', 6, -59.66667, -60.45, -141, -145.6333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-158', 'Kenai - Cook Inlet group', 'KL', 6, -58.58333, -61.25, -149.6667, -154.2333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-159', 'Nunavut (King George Islands) group', 'VY0', 1, -56.93333, -58.58333, -78, -81, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-160', 'Cortes / Atlantida / Colon Department group', 'HR', 80, -15.66667, -16.03333, -85, -88.23333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-161', 'Skagway County group', 'KL', 6, -58.2, -58.8, -135, -138, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-162', 'Baja California State North West group', 'XE2', 50, -30, -32.53333, -115.8333, -117.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-163', 'Baja California State East group', 'XE2', 50, -28, -31.8, -112.7333, -114.8833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-164', 'Baja California Sur State North West group', 'XE2', 50, -25.55, -28, -112.05, -115.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-165', 'Baja California Sur State North East group', 'XE2', 50, -25.55, -28, -110.6667, -112.7833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-166', 'Sonora State South group', 'XE2', 50, -26.15, -28.5, -109.3, -111.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-167', 'Sonora State North group', 'XE2', 50, -28.5, -31.76667, -111.75, -114.6833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-168', 'LA State South East group', 'W5', 291, -28.83333, -29.61667, -89, -90.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-169', 'WA State West group', 'W7', 291, -46.23333, -48.45, -123.5, -124.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-170', 'San Blas Province group', 'HP', 88, -8.666667, -9.666667, -77.36667, -79.08334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-171', 'Sinaloa State group', 'XE2', 50, -22.53333, -26.15, -105.75, -109.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-172', 'North Slope County North group', 'KL', 6, -70.45, -71.5, -154, -160.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-173', 'Nunavut (Hudson Bay - QC Coast) South group', 'VY0', 1, -51.38334, -56, -76.73333, -80.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-174', 'Nunavut (Foxe Basin) group', 'VY0', 1, -65, -70.33334, -72.33334, -85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-175', 'Nunavut (Kitikmeot Region) West Centre group', 'VY0', 1, -67.08334, -68.33334, -106.5, -115.5333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-176', 'QC Province (St Lawrence Gulf) Centre group', 'VE2', 1, -50.05, -50.31667, -61, -65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-177', 'QC Province (Gaspe Peninsula) group', 'VE2', 1, -48, -49.33333, -64, -68, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-178', 'CA State Centre (Sonoma to Santa Cruz) group', 'W6', 291, -36.91667, -38.75, -121.8, -123.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-179', 'Guadalupe Island', 'XE2', 50, -28.75, -29.33333, -118.0833, -118.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-180', 'Stann Creek / Toledo District group', 'V3', 66, -15.9, -17.11667, -87.5, -88.93333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-181', 'BC Province (Estevan Group)', 'VE7', 1, -52.91667, -53.2, -129.4667, -129.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-182', 'NWT (Inuvik Region) East group', 'VE8', 1, -69.33334, -70.66666, -121.6833, -129.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-183', 'Guerrero State group', 'XE3', 50, -16.33333, -17.98333, -98.56667, -102.1333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-184', 'CA State North group', 'W6', 291, -38.75, -42, -123.5, -124.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-185', 'Nunavut (Keewatin Region) group', 'VY0', 1, -60, -64, -88.5, -94.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-186', 'Nunavut (Hudson Bay - Manitoba Coast) group', 'VY0', 1, -56.83333, -60, -89, -94.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-187', 'CA State Centre (Monterey etc) group', 'W6', 291, -34.95, -36.91667, -120.6167, -122, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-188', 'Oaxaca State group', 'XE3', 50, -15.61667, -16.33333, -94, -98.56667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-189', 'Nayarit / Jalisco State group', 'XE1', 50, -19.18333, -22.53333, -104.7, -105.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-116', 'Gulf of Aden West Group', 'T5', 232, -10.4, -11.5, 43.25, 46, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-117', 'Gulf of Aden East Group', 'T5', 232, -10.7, -12, 46, 51.33, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-019', 'Balleny Islands', 'Various', 13, 66.25, 68, 162.25, 165.1, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-020', 'Scott Island', 'Various', 13, 67.25, 67.66, -179.9, 179.9, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AN-021', 'Shag Rocks, South Georgia Island', 'VP8', 235, 53, 54, -41, -42.5, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-175', 'Gujarat State West Group', 'VU', 324, -20.75, -23.66, 68.15, 70.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-176', 'Gujarat State East Group', 'VU', 324, -20.47, -22.25, 70.5, 72.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-177', 'Goa State group', 'VU', 324, -14.9, -15.76, 73.66, 74.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-178', 'Andhra Pradesh State North Group', 'VU', 324, -16.25, -19.15, 81.27, 84.9, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-179', 'Orissa State Group', 'VU', 324, -19.15, -23.6, 84.9, 87.5, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-180', 'Balochistan Province Group', 'AP', 372, -24.88, -25.4, 61.6, 66.75, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-181', 'Sindh Province Group', 'AP', 372, -23.66, -24.88, 66.62, 68.15, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-182', 'Mon Region Group', 'XZ', 309, -14.9, -17.3, 96.9, 97.8, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-183', 'Tenasserim Region North Group', 'XZ', 309, -13.25, -14.9, 97.66, 98.28, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-184', 'Preparis Channel Group', 'XZ', 309, -13.85, -15, 93.1, 93.88, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-185', 'Gulf of Tongking South Group', '3W', 293, -16.19, -19.98, 105.62, 108.33, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-186', 'Syria Group', 'YK', 384, -34.62, -35.9, 35.66, 35.99, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-187', 'Gulf of Aden East Group', '7O', 492, -13.55, -16.6, 47, 53.1, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-188', 'Khuzestan Province Group', 'EP', 330, -29.9, -30.25, 48.6, 50.05, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-189', 'Bushehr Province Group', 'EP', 330, -27.3, -30.2, 50.05, 52.74, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-190', 'Red Sea Coast North (Tabuk Prov.) Grp.', 'HZ', 378, -24.5, -29.35, 34.42, 37.44, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-191', 'Red Sea Coast Centre Group', 'HZ', 378, -18.1, -24.5, 37.42, 41.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-192', 'Red Sea Coast South (Jizan Province) Group', 'HZ', 378, -16.42, -18.1, 40.85, 42.72, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-193', 'Farasan Islands', 'HZ', 378, -16.5, -17.13, 41.25, 42.28, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-194', 'Senkaku Islands', 'JA6', 339, -25.66, -26, 123.32, 124.66, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-195', 'P\'yongan-Bukto / P\'yongan-Namdo Prov. Grp.', 'P5', 433, -38.74, -39.9, 124.15, 125.38, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-196', 'Nam\'p\'o-si / Hwanghae-Namdo Prov. Grp.', 'P5', 433, -37.62, -38.7, 124.6, 126.15, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-197', 'Hamgyona-Bukto/Hamgyong-Namdo Prov. Grp.', 'P5', 433, -39.29, -42.33, 127.49, 130.66, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-198', 'Kangwon-do Province Group', 'P5', 433, -38.6, -39.29, 127.34, 128.34, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-229', 'Nunavut (Hudson Bay - QC Coast) NE Grp.', 'VY0', 1, -58.33, -61.25, -64.5, -71, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-230', 'Nunavut (Ottawa Islands) group', 'VY0', 1, -58.9, -60.1, -79.66, -81, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-231', 'Nunavut (Hudson Bay - Ontario Coast) N. Grp.', 'VY0', 1, -55, -57, -82.18, -89, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-232', 'St. Matthew Island', 'KL', 6, -60.1, -60.75, -172.1, -173.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-233', 'Delarof Islands', 'KL', 6, -51.15, -51.9, -178.25, -179.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-234', 'Islands of Four Mountains', 'KL', 6, -52.33, -53.18, -169.5, -171.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-235', 'Semidi Islands', 'KL', 6, -55.6, -56.33, -155.5, -157, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-236', 'Sanak Islands', 'KL', 6, -54.25, -54.53, -162.25, -163, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-237', 'Southern Alaska Peninsula East Group', 'KL', 6, -56.33, -58.6, -153.9, -157.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-238', 'Southern Alaska Peninsula Centre Group', 'KL', 6, -55.66, -56.66, -157.5, -160, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-239', 'Northern Alaska Peninsula East Group', 'KL', 6, -56.6, -58.6, -157.33, -159.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-240', 'Bethel County Group', 'KL', 6, -58.55, -60.9, -161.33, -165.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-241', 'Wade-Hampton County Group', 'KL', 6, -60.91, -63.29, -162.7, -166.33, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-242', 'North Slope County West Group', 'KL', 6, -67.9, -70.47, -160.5, -166.92, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-243', 'Greenland\'s Coastal Islands North East', 'OX', 237, -66.5, -84, -11.5, -44.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-244', 'Marias Islands', 'XE1', 50, -21.18, -21.91, -106.18, -106.75, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-245', 'Rocas Alijos Islands', 'XE2', 50, -24.8, -25, -115.6, -115.85, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-271', 'Babar Islands', 'YB8', 327, 7.45, 8.33, 129.4, 130.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-272', 'Barat Daya Islands', 'YB8', 327, 5.48, 8.05, 125.66, 130.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-273', 'Gorong and Watubela Islands', 'YB8', 327, 3.9, 4.85, 130.98, 131.92, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-274', 'Lucipara and Penyu Islands', 'YB8', 327, 5.25, 5.75, 127.33, 127.92, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-275', 'Irian Jaya\'s Coastal Islands South', 'YB9', 327, 3.77, 9.15, 134, 141, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-276', 'Mapia Islands', 'YB9', 327, -.75, -1, 134.15, 134.41, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-277', 'Sorol Atoll', 'V6', 173, -8, -8.25, 140.15, 140.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-278', 'Ujelang Atoll', 'V7', 168, -9.89, -10, 160.6, 161.08, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-279', 'Malden Island', 'T32', 48, 3.92, 4.08, -154.95, -155.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-280', 'Starbuck Island', 'T32', 48, 5.55, 5.66, -155.9, -155.97, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-281', 'Caroline (Millennium) Island', 'T32', 48, 9.96, 10.07, -150.17, -150.33, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-282', 'Vostok and Flint Islands', 'T32', 48, 10.05, 11.48, -151.74, -152.46, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-283', 'Tauu (Takuu) Islands', 'P2', 163, 4.66, 4.91, 156.91, 157.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-284', 'Nukumanu Islands', 'P2', 163, 4.33, 4.75, 159.25, 159.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-285', 'Stewart Islands (aka Sikaiana Atoll)', 'H4', 185, 8.26, 8.48, 162.6, 162.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-286', 'Antipodes Islands', 'ZL9', 16, 49.6, 49.75, 178.66, 178.92, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-287', 'Bounty Islands', 'ZL9', 16, 47.6, 47.75, 179, 179.25, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-288', 'Nihoa Islands', 'KH6,7', 110, -23, -23.1, -161.88, -162, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-289', 'Necker Island', 'KH6,7', 110, -23.53, -23.63, -164.63, -164.76, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-290', 'Gardner Pinnacles', 'KH6,7', 110, -24.91, -25.09, -167.93, -168.1, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-291', 'Laysan Island', 'KH6,7', 110, -25.72, -25.82, -171.7, -171.8, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-292', 'Lisianski Island', 'KH6,7', 110, -26, -26.13, -173.9, -173.04, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-293', 'Pearl and Hermes Atoll', 'KH6,7', 110, -27.66, -28, -175.58, -176.15, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-294', 'Sandy Island', 'VK', 150, 13.85, 14.25, 121.66, 122.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-095', 'O\'Higgins / Maule Region Group', 'CE4', 112, 33.85, 36.05, -71.87, -72.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-096', 'Chubut Province North Group', 'LU', 100, 42, 44, -63.42, -65.26, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-097', 'Diego Ramirez Islands', 'CE9', 112, 56.33, 56.67, -68.58, -68.92, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-098', 'Arequipa / Moquegua / Tacna Dept. Grp', 'OA6', 136, 15.42, 18.38, -70.43, -75.07, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-190', 'El Salvador group', 'YS', 74, -13.11667, -13.75, -87.66666, -90.11667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-191', 'Guanacaste Province group', 'TI7', 308, -9.75, -11.08333, -85.15, -86, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-192', 'NWT (Inuvik Region) West group', 'VE8', 1, -68.83334, -70.33334, -129.25, -136.45, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-193', 'Yukon Territory group', 'VY1', 1, -68.86667, -69.75, -136.45, -141, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-194', 'NFLD Province (Labrador) North group', 'VO2', 1, -57.61666, -61.3, -61.41667, -64.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-195', 'Nunavut (Hudson Bay - QC Coast) Centre group', 'VY0', 1, -56, -61.25, -76.53333, -79.16666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-196', 'Nunavut (Belcher Islands) group', 'VY0', 1, -55.5, -56.93333, -77.83334, -80.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-197', 'Kenai Peninsula County group', 'KL', 6, -59, -60, -148.55, -152.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-198', 'Newfoundland\'s Coastal Islands', 'VO1', 1, -46.55, -51.7, -52.5, -59.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-189', 'Isle of Rockall', 'GM,MM', 279, -57.6, -57.6, -13.7, -13.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-099', 'Matrah Region Group', 'SU', 478, -30.9, -31.75, 25.18, 29.68, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-098', 'Sofala District Group', 'C9', 181, 18.85, 21, 34.74, 36.29, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-100', 'Bas-Congo Province Group', '9Q', 414, 5.75, 6.05, 12.18, 12.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-174', 'Chukchi Sea Coast West Group', 'R0K', 15, -68.13, -69.45, 178, -177, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-227', 'Nunavut (Kitikmeot Region) West Group', 'VY0', 1, -68.33, -69.95, -113.4, -121.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-269', 'Karimata Islands', 'YB7', 327, 1.4, 1.8, 108.6, 109.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-199', 'St Martin\'s Coastal Islands', 'FS', 213, -18.06667, -18.15, -62.95, -63.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-200', 'Quintana Roo State South group', 'XE3', 50, -18.16667, -19.83333, -87.13333, -88.28333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-201', 'Ciego De Avila / Camaguey Province South group', 'CO7', 70, -20.33333, -21.58333, -77.83334, -79.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-202', 'Colon / Veraguas North Province group', 'HP', 88, -8.8, -9.75, -79.08334, -81.23333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-203', 'Los Santos / Herrera / Cocle Province group', 'HP', 88, -7.166667, -8.4, -79.96667, -80.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-204', 'Matanzas to Sancti Spiritus Province group', 'CO5,6', 70, -21.5, -23.33333, -78.93333, -82.21667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-205', 'NFLD Province (Labrador) Centre group', 'VO2', 1, -54.4, -57.61666, -56.83333, -62.33333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-206', 'Barren Islands', 'KL', 6, -58.75, -59, -151.8333, -152.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-207', 'Nunavut (Hudson Bay - ONT Coast) South group', 'VY0', 1, -51.16667, -55, -79.5, -82.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-208', 'Nunavut (Kitikmeot Region) East group', 'VY0', 1, -67.16666, -72, -85, -94.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-209', 'Caribbean Sea Coast South group', 'YN', 86, -10.95, -12, -83.25, -83.86667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-210', 'Nome County Centre group', 'KL', 6, -64, -64.75, -160.7833, -166.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-211', 'Oregon State group', 'W7', 291, -42, -46.23333, -123.9167, -124.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-212', 'Pacific Ocean Coast group', 'YN', 86, -11.08333, -13.11667, -85.7, -87.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-213', 'Alabama State group', 'W4', 291, -30.16667, -30.7, -87.56667, -88.38333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-214', 'Nome County South group', 'KL', 6, -63.21667, -64, -160.7833, -162.7167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-215', 'Northwest Arctic County group', 'KL', 6, -66.03333, -67.91666, -161.0833, -165, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-216', 'Northern Alaska Peninsula West group', 'KL', 6, -54.86666, -56.58333, -159.75, -163.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-217', 'New Hampshire State group', 'W1', 291, -42.86666, -43.06667, -70.58334, -70.81667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-218', 'Las Tunas to Santiago de Cuba Province group', 'CO8', 70, -19.75, -21.5, -74.05, -77.96667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-219', 'Cay Sal Bank Cays', 'C6', 60, -23.45, -24.16667, -79.41666, -80.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-220', 'Greenland\'s Coastal Islands South West', 'OX', 237, -59.75, -66.5, -44.75, -54, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-221', 'Veracruz State North group', 'XE1', 50, -20, -22.25, -96.55, -97.78333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-222', 'Southern Alaska Peninsula West group', 'KL', 6, -54.58333, -55.66667, -161, -163.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-223', 'Gracias a Dios Department group', 'HR', 80, -15, -16.16667, -82, -85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-224', 'Veracruz State South group', 'XE1', 50, -18.15, -20, -94.13333, -96.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-225', 'Nunavut (Prince of Wales & Somerset Is) grp.', 'VY0', 1, -71, -74.4, -89.5, -102.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-226', 'Colima / Michoacan State Group', 'XE1', 50, -17.88333, -19.18333, -102.1333, -104.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-001', 'Australia (main island only)', 'VK', 150, 10.66667, 39.16667, 113.1667, 153.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-002', 'Christmas Island', 'VK9', 35, 10.33333, 10.6, 105.5, 105.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-003', 'Cocos (Keeling) Islands', 'VK9', 38, 11.75, 12.25, 96.75, 97, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-004', 'Lord Howe Island', 'VK9', 147, 31.46667, 31.8, 159, 159.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-005', 'Norfolk Island', 'VK9', 189, 28.96667, 29.16667, 167.8833, 168, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-006', 'Tasmania (main island only)', 'VK7', 150, 41.66667, 43.66667, 144.25, 148.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-007', 'Willis Islands', 'VK9', 303, 16.05, 16.38333, 149.9167, 150.1333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-008', 'Bismarck Archipelago', 'P2', 163, 2.25, 6.5, 146.75, 153.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-009', 'Palau Islands', 'T8', 22, -6.833333, -8.25, 134.0833, 134.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-010', 'Pohnpei Islands', 'V6', 173, -5.75, -7.25, 157, 158.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-011', 'Chuuk Islands', 'V6', 173, -6.666667, -7.833333, 151.3333, 152.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-012', 'Yap Islands', 'V6', 173, -9.333333, -9.75, 138, 138.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-013', 'Rarotonga Island', 'E5', 234, 21, 21.33333, -159.5833, -160, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-014', 'Manihiki Atoll', 'E5', 191, 9.916667, 10.58333, -160.8333, -161.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-015', 'Tuvalu Islands', 'T2', 282, 5.5, 10.66667, 176, 180, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-016', 'Viti Levu & Vanua Levu Group', '3D2', 176, 15.66667, 19.25, 177.1667, -179.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-017', 'Gilbert Islands', 'T30', 301, -3.416667, 2.8, 172.66, 177, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-018', 'Banaba (Ocean) Island', 'T33', 490, .8166667, .9166667, 169.5333, 169.6333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-019', 'Hawaiian Islands', 'KH6,7', 110, -18.83333, -22.41667, -154.75, -160.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-020', 'Kure Atoll', 'KH7K', 138, -28.36667, -28.46667, -178.2833, -178.3833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-021', 'Java (Jawa) Island (main island only)', 'YB0-3', 327, 5.833333, 8.833333, 105.1667, 114.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-022', 'Bali Island', 'YB9', 327, 8, 8.916667, 114.3833, 115.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-023', 'Johnston Atoll', 'KH3', 123, -16.68333, -16.8, -169.4667, -169.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-024', 'Kiritimati (Christmas) Island', 'T32', 48, -1.583333, -2.116667, -157, -157.6167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-025', 'Admiralty Islands', 'P2', 163, 1.833333, 3, 145.75, 148.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-026', 'Guam Island', 'KH2', 103, -13.2, -13.68333, 144.5833, 145, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-027', 'Marquesas Islands', 'FO', 509, 7.666667, 10.66667, -138.3333, -141, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-028', 'Ralik Chain', 'V7', 168, -4.5, -11.83333, 165, 169.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-029', 'Ratak Chain', 'V7', 168, -5.75, -12.5, 168.9667, 172.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-030', 'Midway Islands', 'KH4', 174, -28.15, -28.28333, -177.2833, -177.45, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-031', 'Nauru', 'C2', 157, .3333333, .5833333, 166.8667, 166.9833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-032', 'New Caledonia Island', 'FK', 162, 19.95, 23, 163.6667, 167.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-033', 'Loyalty Islands', 'FK', 162, 19.58333, 22.75, 165.5, 169, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-034', 'New Guinea (main island only)', 'P2,YB9', NULL, .25, 10.75, 130.9167, 150.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-035', 'New Hebrides', 'YJ', 158, 14.58333, 20.33333, 166.4167, 170.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-036', 'North Island (main island only)', 'ZL', 170, 34.35, 41.66667, 172.6, 178.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-037', 'Campbell Island', 'ZL9', 16, 52.41667, 52.66667, 168.9167, 169.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-038', 'Chatham Islands', 'ZL7', 34, 43.5, 44.5, -175.75, -177, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-039', 'Kermadec Islands', 'ZL8', 133, 29.08333, 31.5, -177.75, -179, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-040', 'Niue Island', 'ZK2', 188, 18.83333, 19.25, -169.6667, -170, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-041', 'Ninigo Group', 'P2', 163, .5833333, 1.916667, 142.6667, 145.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-042', 'Luzon Island (main island only)', 'DU1-4', 375, -12.48333, -18.75, 119.6667, 124.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-043', 'Phoenix Islands', 'T31', 31, 2.5, 5, -170.42, -173, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-044', 'Pitcairn Island', 'VP6', 172, 23.83333, 25.13333, -130, -130.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-045', 'Tutuila Island', 'KH8', 9, 14, 14.5, -170.3333, -171, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-046', 'Windward Islands', 'FO', 175, 16.91667, 18, -147.8333, -150.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-047', 'Solomon Islands', 'H4', 185, 6.5, 11.16667, 156.25, 162.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-048', 'Tokelau Islands', 'ZK3', 270, 8.25, 9.75, -171, -172.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-049', 'Tongatapu Group', 'A3', 160, 20.91667, 22.5, -174.75, -176.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-050', 'Rurutu & Rimatara Islands', 'FO', 508, 22.33333, 22.75, -151.25, -152.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-051', 'Rapa & Marotiri Islands', 'FO', 508, 27.5, 28, -143.3333, -144.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-052', 'Duke of Gloucester Islands', 'FO', 175, 19.75, 20.75, -142.9167, -145.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-053', 'Wake Island', 'KH9', 297, -19.25, -19.33333, 166.5667, 166.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-054', 'Wallis Islands', 'FW', 298, 13.16667, 13.46667, -176.05, -176.2833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-055', 'French Frigate Shoals', 'KH6,7', 110, -23.58333, -24, -166, -166.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-056', 'Henderson Island', 'VP6', 172, 24.3, 24.41667, -128.2667, -128.3833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-057', 'Maupihaa group', 'FO', 175, 15.66667, 16.91667, -153.8333, -154.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-058', 'D\'Entrecasteaux Reefs', 'FK', 162, 17.75, 18.75, 162.6667, 163.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-059', 'Kosrae (Kusaie) Island', 'V6', 173, -5.233333, -5.4, 162.8833, 163.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-060', 'Rotuma Island', '3D2', 460, 12.41667, 12.58333, 176.9167, 177.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-061', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-062', 'Pukapuka Atoll', 'FO', 175, 14.75, 14.91667, -138.75, -138.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-063', 'Gambier Islands', 'FO', 175, 22.91667, 23.41667, -134.3333, -135.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-064', 'Vava\'u Group', 'A3', 160, 17.96667, 19.06667, -173.8333, -174.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-065', 'Reef (Swallow) Islands', 'H40', 507, 10, 10.5, 165.5833, 166.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-066', 'Tuamotu Archipelago', 'FO', 175, 14.75, 22.5, -138.25, -148.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-067', 'Leeward Islands', 'FO', 175, 16.16667, 16.91667, -150.75, -152.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-068', 'Snares Islands', 'ZL', 170, 48, 48.08333, 166.3333, 166.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-069', 'Lihir Group', 'P2', 163, 2.75, 3.333333, 152.5, 152.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-070', 'Seram group', 'YB8', 327, 2.583333, 3.883333, 125.9167, 130.9667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-071', 'WA State (N Coast) West group', 'VK6', 150, 15.41667, 17.41667, 122.95, 124, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-072', 'Mellish Reef', 'VK9', 171, 17.4, 17.48333, 155.8, 155.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-073', 'Minami Torishima (Marcus Island)', 'JD', 177, -24.2, -24.36667, 153.8833, 154.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-074', 'Auckland Islands', 'ZL9', 16, 50.41667, 50.96667, 165.8333, 166.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-075', 'Riau Islands', 'YB5', 327, -.45, -1.233333, 103.25, 105.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-076', 'Sula Islands', 'YB8', 327, 1.416667, 2.583333, 124.1, 126.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-077', 'Manua Islands', 'KH8', 9, 14, 14.5, -169.25, -169.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-078', 'Ulithi Atoll', 'V6', 173, -9.666667, -10.16667, 139.4167, 140.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-079', 'Belep Islands', 'FK', 162, 19, 19.95, 163.25, 163.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-080', 'Suwarrow Atoll (Suvorov)', 'E5', 191, 13.08333, 13.53333, -162.8333, -163.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-081', 'Jarvis Island', 'KH5', 197, .3333333, .4333333, -159.9667, -160.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-082', 'Penrhyn Atoll (Tongareva)', 'E5', 191, 8.75, 9.25, -157.75, -158.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-083', 'Aitutaki group', 'E5', 234, 18.75, 20.33333, -157.25, -160, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-084', 'Tabuaeran & Teraina Islands', 'T32', 48, -3.75, -4.833333, -159.25, -160.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-085', 'Palmyra Atoll', 'KH5', 197, -5.833333, -5.916667, -162, -162.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-086', 'Northern Mariana Islands', 'KH0', 166, -14, -20.66667, 144.8333, 146.1333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-087', 'Enewetak (Eniwetok) Atoll', 'V7', 168, -11.16667, -11.83333, 161.9167, 162.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-088', 'Borneo', '9M6,9M8,V85,YB7', NULL, -7.083333, 4.2, 108.75, 119.33, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-089', 'Baker & Howland Islands', 'KH1', 20, -.1333333, -.8666667, -176.3833, -176.7167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-090', 'Calamian Group', 'DU1', 375, -11.6, -12.5, 119.75, 120.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-091', 'Polillo Islands', 'DU1', 375, -14.5, -15.16667, 121.75, 122.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-092', 'Babuyan Islands', 'DU2', 375, -18.75, -19.66667, 121.0833, 122.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-093', 'Batan Islands', 'DU2', 375, -19.83333, -21.25, 121.6667, 122.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-094', 'Disappointment Islands', 'FO', 175, 13.91667, 14.2, -141.0833, -141.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-095', 'Lau Group', '3D2', 176, 16.71667, 21.06667, -178, -179.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-096', 'Kingman Reef', 'KH5K', 134, -6.366667, -6.466667, -162.3333, -162.4333, 'D', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-097', 'Samoa Islands', '5W', 190, 13.25, 14.08333, -171.25, -172.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-098', 'Pukapuka Atoll (Danger Islands)', 'E5', 191, 10.71667, 11.71667, -165.25, -166, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-099', 'Tabar Islands', 'P2', 163, 2.583333, 3.083333, 151.8333, 152.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-100', 'Nendo Island', 'H40', 507, 10.5, 11, 165.6667, 166.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-101', 'Feni Islands', 'P2', 163, 3.933333, 4.166667, 153.5, 153.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-102', 'Tanga Islands', 'P2', 163, 3.333333, 3.75, 153.0833, 153.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-103', 'St Matthias Group', 'P2', 163, 1.25, 1.75, 149.4167, 150.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-104', 'Banks Islands', 'YJ', 158, 13.16667, 14.58333, 167.1667, 168.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-105', 'Cagayan De Sulu group', 'DU8', 375, -6.833333, -8, 118.25, 118.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-106', 'Natuna Besar Islands', 'YB5', 327, -3.416667, -4.916667, 107.3333, 108.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-107', 'Lingga Islands', 'YB5', 327, -.45, .98, 104, 105.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-108', 'Anambas Islands', 'YB5', 327, -2.25, -3.5, 105.25, 106.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-109', 'Natuna Selatan Islands', 'YB5', 327, -2.166667, -3.416667, 107.5, 109.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-110', 'Torres Islands', 'YJ', 158, 13, 13.58333, 166.4167, 166.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-111', 'Shepherd Islands', 'YJ', 158, 16.78333, 17.2, 168.25, 168.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-112', 'Conway Reef (Ceva-I-Ra)', '3D2', 489, 21.68333, 21.78333, 174.5833, 174.6833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-113', 'Actaeon Group', 'FO', 175, 21.16667, 22.08333, -135.3333, -136.833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-114', 'Raivavae Island', 'FO', 508, 23.78333, 23.95, -147.5, -147.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-115', 'Trobriand Islands', 'P2', 163, 8.166667, 9, 150, 151.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-116', 'D\'Entrecasteaux Islands', 'P2', 163, 9, 10.23333, 150, 151.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-117', 'Louisiade Archipelago', 'P2', 163, 10.08333, 11.83333, 151.5, 154.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-118', 'Hoorn Islands', 'FW', 298, 14.2, 14.4, -177.9167, -178.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-119', 'Jolo Group', 'DU8', 375, -5.333333, -6.116667, 120.55, 122, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-120', 'Cuyo Islands', 'DU1', 375, -10.58333, -11.58333, 120.5833, 121.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-121', 'Mamanuca (Mamanutha) Group', '3D2', 176, 17.41667, 17.88333, 177, 177.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-122', 'Tambelan Islands', 'YB5', 327, -3.333334E-02, -1.416667, 106.8333, 107.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-123', 'Niuafo\'ou Island', 'A3', 160, 15.53333, 15.63333, -175.5833, -175.6833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-124', 'Palmerston Atoll', 'E5', 234, 17.91667, 18.25, -162.9167, -163.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-125', 'Semirara Islands', 'DU6', 375, -11.75, -12.16667, 121.25, 121.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-126', 'Lubang Islands', 'DU1', 375, -13.55, -14, 119.9667, 120.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-127', 'Rennell Island', 'H4', 185, 11.16667, 11.91667, 159.6667, 160.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-128', 'Palawan Island', 'DU1', 375, -7.666667, -11.6, 116.8333, 120.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-129', 'Visayan Islands', 'DU5-7', 375, -9, -12.75, 121.6667, 126, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-130', 'Mindanao Island (main island only)', 'DU8,9', 375, -5.533333, -9.833333, 121.8333, 126.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-131', 'King George Islands', 'FO', 175, 14.25, 15, -144.45, -146.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-132', 'Yap Centre group', 'V6', 173, -6.583333, -9.333333, 142.9167, 145.66, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-133', 'Sabah\'s Coastal Islands', '9M6', 46, -4.133333, -7.5, 115.1333, 119.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-134', 'South Island (main island only)', 'ZL', 170, 40.46667, 46.71667, 166.3833, 174.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-135', 'Solomon Islands', 'P2', 163, 4.95, 6.95, 154.4167, 156, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-136', 'VIC State Centre group', 'VK3', 150, 38.25, 39.2, 144, 147, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-137', 'QLD State (S Coast) South group', 'VK4', 150, 26, 28.13333, 153.0333, 153.6667, 'H', 'Bribie Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-138', 'QLD State (Torres Strait) group', 'VK4', 150, 9.2, 10.83333, 141.5, 144.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-139', 'SA State East Centre group', 'VK5', 150, 33, 36.16667, 135.5, 138.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-140', 'WA State (NW Coast) West group', 'VK6', 150, 20.25, 24.25, 113.3333, 116, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-141', 'NT (Gulf of Carpentaria) North group', 'VK8', 150, 13, 15, 135.5, 137.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-142', 'QLD State (S Coast) Centre group', 'VK4', 150, 23, 26, 150.7833, 153.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-143', 'Sumatra Island', 'YB4-6', 327, -5.67, 6, 95.12, 106.12, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-144', 'Bangka & Belitung Islands', 'YB4', 327, .8333333, 3.833333, 105, 108.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-145', 'Halmahera group', 'YB8', 327, -2.833333, 1.18, 126, 129.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-146', 'Celebes Island', 'YB8', 327, -1.8, 5.75, 118.7, 125.3, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-147', 'Irian Jaya\'s Coastal Islands North', 'YB9', 327, .25, 3.35, 134, 141, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-148', 'Timor Island (main island only)', 'YB9,4W', NULL, 8.3, 10.41667, 123.4167, 127.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-149', 'New Georgia Islands', 'H4', 185, 7.466667, 8.916667, 156.25, 158.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-150', 'Tenggara Barat Islands', 'YB9', 327, 8, 9.166667, 115.75, 119.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-151', 'Tenggara Timur Islands', 'YB9', 327, 7.666667, 10.91667, 118.8333, 125.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-152', 'Tubuai Island', 'FO', 508, 23.25, 23.46667, -149.3667, -149.5333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-153', 'PNG\'s Coastal Islands South', 'P2', 163, 7.5, 9.333333, 141, 146.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-154', 'WA State (N Coast) East group', 'VK6', 150, 13.5, 15.33333, 125.8833, 129, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-155', 'West Chuuk group', 'V6', 173, -6.583333, -9.083333, 149, 150.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-156', 'Yasawa Group', '3D2', 176, 16.58333, 17.41667, 176.8333, 177.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-157', 'Banda Islands', 'YB8', 327, 4.333333, 4.666667, 129.5833, 130.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-158', 'Florida Islands', 'H4', 185, 8.833333, 9.25, 159.9667, 160.4667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-159', 'Mangaia Island', 'E5', 234, 21.75, 22.08333, -157.75, -158.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-160', 'QLD State (S Coast) North group', 'VK4', 150, 19.95, 23, 148.1667, 152.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-161', 'Nias & Batu Islands', 'YB6', 327, -1.75, .9, 97, 98.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-162', 'Shortland Islands', 'H4', 185, 6.633333, 7.466667, 155.5, 156.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-163', 'Vanikolo & Utupua Islands', 'H40', 507, 11, 11.83333, 166.3333, 167.0333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-164', 'WA State (SW Coast) South group', 'VK6', 150, 31.25, 34.25, 114.8333, 115.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-165', 'Sarawak\'s Coastal Islands', '9M8', 46, -1.5, -5.083333, 109.65, 115.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-166', 'Kalimantan\'s Coastal Islands East', 'YB7', 327, -4.133333, 4.25, 114.4, 119.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-167', 'Kapingamarangi Atoll', 'V6', 173, -1, -1.116667, 154.7333, 154.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-168', 'Russell Islands', 'H4', 185, 8.916667, 9.216666, 158.6667, 159.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-169', 'Ha\'apai Group', 'A3', 160, 19.5, 20.66667, -174.1667, -175.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-170', 'WA State (S Coast) East Centre group', 'VK6', 150, 32.9, 34.66667, 121.25, 124.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-171', 'QLD State (N Coast) South group', 'VK4', 150, 17.5, 19.95, 146, 148.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-172', 'QLD State (N Coast) Centre group', 'VK4', 150, 15, 17.5, 145.2333, 147, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-173', 'NT (Arafura Sea Coast) West group', 'VK8', 150, 11, 15.16667, 129, 131.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-174', 'Tawi Tawi Group', 'DU8', 375, -4.383333, -5.483333, 119.25, 120.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-175', 'Sarangani Islands', 'DU9', 375, -5.333333, -5.533333, 125.25, 125.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-176', 'Chesterfield Islands', 'FK', 512, 18.83333, 21.5, 158.1667, 159.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-177', 'Seribu Islands', 'YB0', 327, 5.25, 5.75, 106.3333, 106.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-178', 'Tikopia & Anuta Islands', 'H40', 507, 11.5, 12.5, 168.75, 170.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-179', 'Duff Islands', 'H40', 507, 9.75, 10.08333, 167, 167.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-180', 'Ngulu Atoll', 'V6', 173, -8.25, -8.75, 137.25, 137.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-181', 'Witu Islands', 'P2', 163, 4.5, 5, 149, 149.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-182', 'Ducie Island', 'VP6', 513, 24.6, 24.73333, -124.7333, -124.8667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-183', 'WA State (SW Coast) Centre group', 'VK6', 150, 27.25, 31.25, 113.9833, 115.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-184', 'Brunei\'s Coastal Islands', 'V8', 345, -4.6, -5.166667, 114.1, 115.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-185', 'NT (Arafura Sea Coast) East group', 'VK8', 150, 11, 13, 134.5, 137.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-186', 'Karimunjawa Islands', 'YB2', 327, 5.666667, 6, 110, 110.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-187', 'QLD State (N Coast) North group', 'VK4', 150, 10.83333, 15, 142.6167, 146, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-188', 'Pangutaran Group', 'DU8', 375, -5.483333, -6.583333, 119.5833, 121.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-189', 'Ringgold Isles', '3D2', 176, 15.91667, 16.71667, -179.0833, -179.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-190', 'Rose Atoll', 'KH8', 9, 14.41667, 14.58333, -168.1333, -168.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-191', 'Niuatoputapu Island', 'A3', 160, 15.8, 16, -173.6667, -173.8, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-192', 'Ontong Java Atoll', 'H4', 185, 5, 5.666667, 159, 159.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-193', 'WA State (S Coast) West Centre group', 'VK6', 150, 33.8, 34.96667, 118.25, 121.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-194', 'NSW State North group', 'VK2', 150, 28.16667, 31.5, 152.8333, 153.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-195', 'Furneaux Group', 'VK7', 150, 39.2, 40.66667, 146.5, 148.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-196', 'VIC State East group', 'VK3', 150, 37.5, 38.53333, 147, 149.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-197', 'Bawean Island', 'YB3', 327, 5.666667, 6, 112.5, 112.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-198', 'NT (Gulf of Carpentaria) South group', 'VK8', 150, 15, 16.5, 135.6333, 138, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-199', 'WA State (NW Coast) Centre group', 'VK6', 150, 19.5, 21, 116, 120, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-200', 'Swains Island', 'KH8', 515, 11, 11.1, -171, -171.2, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-201', 'North Island\'s Coastal Islands', 'ZL', 170, 34.08333, 41.66667, 172, 178.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-202', 'Calagua Islands', 'DU4', 375, -14.31667, -14.55, 122.75, 123.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-203', 'South Island\'s Coastal Islands', 'ZL', 170, 40.46667, 47.5, 166.3833, 174.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-204', 'Enggano Island', 'YB4', 327, 5.166667, 5.666667, 102, 102.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-205', 'Woodlark group', 'P2', 163, 8.666667, 9.666667, 151.5, 153.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-206', 'WA State (SW Coast) North group', 'VK6', 150, 24.25, 27.25, 112.9167, 114.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-207', 'Cagayan Islands', 'DU1', 375, -8.666667, -9.75, 119.75, 121.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-208', 'Banggai Islands', 'YB8', 327, 1.083333, 2.333333, 122.75, 124.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-209', 'Talaud Islands', 'YB8', 327, -3.666667, -4.916667, 126.5, 127.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-210', 'Sangihe Islands', 'YB8', 327, -2, -4.833333, 125.0833, 125.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-211', 'Houtman Abrolhos', 'VK6', 150, 28.25, 29, 113.55, 114.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-212', 'NSW State Centre group', 'VK2', 150, 31.5, 34.5, 150.8667, 152.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-213', 'Togian Islands', 'YB8', 327, 6.666667E-02, .6166667, 121.5, 122.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-214', 'WA State (NW Coast) East group', 'VK6', 150, 16.33333, 19.95, 120, 122.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-215', 'Mentawai Islands', 'YB5', 327, .8333333, 4, 98.5, 101.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-216', 'Ashmore & Cartier Islands', 'VK9', 150, 12.13333, 12.63333, 123, 123.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-217', 'Kangean Islands', 'YB3', 327, 6.333333, 7.333333, 115.0833, 116.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-218', 'Matthew & Hunter Islands', 'FK', 162, 22.28333, 22.45, 171.25, 172.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-219', 'Tukangbesi Islands', 'YB8', 327, 5.166667, 6.25, 123.3333, 124.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-220', 'SA State West group', 'VK5', 150, 31.46667, 32.66667, 129, 133.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-221', 'Kai Islands', 'YB8', 327, 5, 6.166667, 131.8333, 133.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-222', 'Obi Islands', 'YB8', 327, 1.033333, 1.916667, 127.1667, 129, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-223', 'NSW State South group', 'VK2', 150, 34.5, 37.5, 149.9167, 150.8667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-224', 'Tanimbar Islands', 'YB8', 327, 6.583333, 8.416667, 130.5833, 132.0333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-225', 'Turtle Islands', 'DU8', 375, -6, -6.583333, 118, 118.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-226', 'Mwokil (Mokil) & Pingelap Atolls', 'V6', 173, -6.16, -6.7, 159.75, 160.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-227', 'QLD State (Gulf of Carpentaria) South group', 'VK4', 150, 16.25, 17.71667, 138, 141, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-228', 'SA State East group', 'VK5', 150, 35.51667, 38.08333, 138.5, 140.9667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-229', 'NT (Arafura Sea Coast) Centre group', 'VK8', 150, 11, 12.3, 131.6667, 134.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-230', 'Rowley Shoals, WA Outliers', 'VK', 150, 16.9, 17.8, 118.75, 119.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-231', 'Green Islands', 'P2', 163, 4.25, 4.666667, 154, 154.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-232', 'East Timor\'s Coastal Islands', '4W', 511, 8.083333, 9.5, 124.0833, 127.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-233', 'Tasmania\'s Coastal Islands', 'VK7', 150, 39.5, 43.75, 144.5, 148.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-234', 'Browse Island, WA Outliers', 'VK', 150, 14, 14.13333, 123.45, 123.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-235', 'Mindanao\'s Coastal Islands', 'DU8-9', 375, -5.533333, -10.5, 121.3333, 126.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-236', 'Celebes\'s Coastal Islands', 'YB8', 327, -2, 6.75, 116.5, 125.45, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-237', 'Java\'s Coastal Islands', 'YB0-3', 327, 5.75, 8.916667, 105.0833, 114.8333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-238', 'Pukarua & Reao Atolls', 'FO', 175, 18.16667, 18.75, -136.3167, -137.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-239', 'Irian Jaya\'s Coastal Islands West', 'YB9', 327, -1.166667, 4.4, 129.25, 134, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-240', 'PNG\'s Coastal Islands East', 'P2', 163, 5.75, 11, 146.75, 151.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-241', 'Timor Barat\'s Coastal Islands', 'YB9', 327, 8.916667, 11.16667, 122.5833, 125.1667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-242', 'Bonerate & Taka\' Bonerate Islands', 'YB8', 327, 6.333333, 7.583333, 120.5, 122.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-243', 'WA State (South Coast) West group', 'VK6', 150, 34.25, 35.25, 115, 118.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-244', 'Luzon\'s Coastal Islands', 'DU1-4', 375, -11.66667, -18.75, 119.6667, 124.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-245', 'Sumatra\'s Coastal Islands North', 'YB5-6', 327, 0, -6.1, 94.92, 103.92, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-246', 'Leti & Sermata Islands', 'YB8', 327, 8, 8.42, 127.42, 129.17, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-247', 'Sabalana & Tengah Islands', 'YB8', 327, 6.416667, 7.666667, 117.0833, 119.3333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-248', 'Sonsorol Islands group', 'T8', 22, -2.666667, -5.416667, 131, 132.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-249', 'Aru Islands', 'YB8', 327, 5.25, 7.166667, 134, 135, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-250', 'Masalembu Islands', 'YB3', 327, 5.333333, 5.666667, 114.3333, 114.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-251', 'VIC State West group', 'VK3', 150, 38.08333, 38.91667, 140.9667, 144, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-252', 'Kalimantan\'s Coastal Islands West', 'YB7', 327, -2.166667, 3.6, 108, 114.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-253', 'Hall Islands', 'V6', 173, -8.333333, -8.833333, 151.25, 152.4167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-254', 'Mortlock Islands', 'V6', 173, -5.1, -6.033333, 153, 154, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-255', 'QLD State (Gulf of Carpentaria) North group', 'VK4', 150, 10.83333, 14, 141, 142.3833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-256', 'Kilinailau (Tulun) Islands', 'P2', 163, 4.583333, 4.916667, 155.1667, 155.5833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-257', 'Nuguria Islands', 'P2', 163, 3.333333, 3.666667, 154.75, 154.9167, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-258', 'PNG\'s Coastal Islands North', 'P2', 163, 2.583333, 5.75, 141, 146.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-259', 'Nukuoro Atoll', 'V6', 173, -3.783333, -3.916667, 154.9167, 155.0333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-260', 'Oroluk Atoll', 'V6', 173, -7.466667, -7.6, 155.2333, 155.3667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-261', 'SA State West Centre group', 'VK5', 150, 32.45, 35, 133.9167, 135.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-262', 'Sumatra\'s Coastal Islands South', 'YB4-5', 327, 0, 6.166667, 99.66666, 106.1333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-263', 'Taongi Atoll (aka Bokaak Atoll)', 'V7', 168, -14.41667, -14.75, 168.8, 169.1333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-264', 'Maria Island', 'FO', 508, 21.71667, 21.88333, -154.6, -154.7667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-265', 'Coral Sea Islands Territory South', 'VK9', 150, 20.5, 23.5, 153.25, 156, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-266', 'Western Australia State (N Coast) Centre Grp', 'VK6', 150, 13.75, 16.43333, 124, 125.8833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-001', 'Easter Island', 'CE0', 47, 27, 27.25, -109.0833, -109.6667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-002', 'Falkland Islands', 'VP8', 141, 50.83333, 53.16667, -57, -62, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-003', 'Fernando De Noronha Archipelago', 'PY0F', 56, 3.783333, 3.883333, -32.33333, -32.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-004', 'Galapagos Islands', 'HC8', 71, -1.833333, 1.66, -89, -92.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-005', ' Juan Fernandez Archipelago (Robinson Crusoe Island)', 'CE0', 125, 33.5, 33.83, -78.66666, -79.08, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-006', 'Bonaire Island', 'PJ4', 520, -11.98333, -12.53333, -68.08334, -68.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-007', 'Malpelo Island', 'HK0', 161, -3.95, -4.033333, -81.5, -81.66666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-008', 'Tierra Del Fuego', 'LU,CE8', NULL, 52.41667, 55.05, -65, -72.16666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-009', 'Tobago Island', '9Y', 90, -11.08333, -11.41667, -60.41667, -60.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-010', 'Trindade & Martin Vaz Islands', 'PY0T', 273, 20.45, 20.56667, -28.75, -29.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-011', 'Trinidad Island', '9Y', 90, -10, -10.91667, -60.83333, -62, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-012', 'Nueva Esparta State group', 'YV7', 148, -10.71667, -11.18333, -63.76667, -64.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-013', 'San Felix & San Ambrosio Islands', 'CE0', 217, 26.16667, 26.41667, -79.83334, -80.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-014', 'St Peter & St Paul Rocks', 'PY0S', 253, -.9166667, -.95, -29.35, -29.38333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-015', 'Los Monjes Archipelago', 'YV5', 148, -12.25, -12.66667, -70.66666, -71, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-016', 'Maranhao State Centre group', 'PR8', 108, 2.2, 2.833333, -43, -44.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-017', 'Cauca / Valle Division group', 'HK5', 116, -2.666667, -4.066667, -77.11667, -78, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-018', 'Los Lagos Region South group', 'CE7', 112, 40.91667, 43.68333, -72.5, -75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-019', 'Abrolhos Archipelago', 'PY6', 108, 17.88333, 18.06667, -38.6, -38.73333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-020', 'French Guiana group', 'FY', 63, -4.133333, -5.8, -51.61666, -54, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-021', 'Buenos Aires (Bahia Blanca) Province group', 'LU', 100, 38.78333, 39.5, -61, -62.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-022', 'Buenos Aires (Bahia Anegada) Province group', 'LU', 100, 39.5, 41.03333, -62, -62.8, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-023', 'Bahia State North group', 'PY6', 108, 11.46667, 13.25, -37.28333, -38.86666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-024', 'Sao Paulo State West group', 'PY2', 108, 24.41667, 25.28333, -47, -48.03333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-025', 'Piaui State group', 'PS8', 108, 2.716667, 2.933333, -41.3, -41.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-026', 'Santa Catarina State Centre group', 'PP5', 108, 27.33333, 28, -48.28333, -48.65, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-027', 'Santa Catarina State North group', 'PP5', 108, 26, 27.33333, -48.28333, -48.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-028', 'Sao Paulo State East group', 'PY2', 108, 23.35, 24, -44.71667, -45.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-029', 'Rio De Janeiro State West group', 'PY1', 108, 22.91667, 23.41667, -43.56667, -44.71667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-030', 'San Jose / Montevideo / Canelones Dept group', 'CX', 144, 34.46667, 35, -55.4, -57.13334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-031', 'Wollaston & Hermite Islands', 'CE9', 112, 55.35, 56, -66.66666, -67.91666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-032', 'Ultima Esperanza Province North group', 'CE8', 112, 48.6, 51.63334, -73.66666, -75.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-033', 'Manabi Province group', 'HC4', 120, -.35, 1.6, -80.01, -81.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-034', 'Guayas / El Oro Province group', 'HC2,3', 120, 1.666667, 3.4, -79.7, -81.03333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-035', 'Los Roques Islands', 'YV5', 148, -11.66667, -12, -66.5, -67, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-036', 'Aruba Island', 'P4', 91, -12.33333, -12.75, -69.83334, -70.1, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-037', 'Blanquilla group', 'YV5', 148, -11.66667, -12, -64.25, -64.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-038', 'Atol Das Rocas', 'PY0R', 56, 3.783333, 3.883333, -33.75, -33.91667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-039', 'Maldonado / Rocha Department group', 'CX', 144, 33.75, 35.1, -53.36666, -55.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-040', 'Bolivar / Atlantico Division group', 'HK1', 116, -10.11667, -11.13333, -74.83334, -75.83334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-041', 'Maranhao State West group', 'PR8', 108, 1, 3.05, -44.41667, -46.05, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-042', 'Para State West group', 'PY8', 108, -.6666667, .6, -49.25, -52, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-043', 'Aisen Region North group', 'CE7', 112, 43.68333, 45, -72.66666, -75.33334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-044', 'La Tortuga Island', 'YV5', 148, -10.85, -11.08333, -65.08334, -65.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-045', 'Amapa State group', 'PQ8', 108, 4.45, .5, -49.9, -51.6, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-046', 'Pernambuco State group', 'PY7', 108, 7.5, 8.866667, -34.63334, -35.06667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-047', 'Parana State group', 'PY5', 108, 25.28333, 26, -48.03333, -48.66667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-048', 'Sucre State East group', 'YV7', 148, -10.2, -10.76667, -61.83333, -63.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-049', 'Tierra Del Fuego\'s Coastal Islands', 'LU', 100, 52.66667, 55.05, -63.58333, -68.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-050', 'Antartica Chilena Province group', 'CE9', 112, 54.08333, 55.91667, -66.33334, -72.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-051', 'Las Aves Islands', 'YV5', 148, -11.83333, -12.16667, -67.33334, -67.83334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-052', 'Lima Department group', 'OA4', 136, 10.63333, 13.3, -76.2, -77.91666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-053', 'Aisen Region South group', 'CE7', 112, 46.66667, 48.83333, -74, -75.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-054', 'Orchila Island', 'YV5', 148, -11.66667, -12, -66, -66.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-055', 'Buenos Aires (Delta Del Parana) Prov group', 'LU', 100, 33.91667, 34.5, -58.23333, -58.53333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-056', 'Esmeraldas Province group', 'HC4', 120, -.35, -1.416667, -78.83334, -80.11667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-057', 'Colonia Department group', 'CX', 144, 33.91667, 34.5, -57.13334, -58.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-058', 'Carabobo / Aragua / DF / Miranda State group', 'YV4,5', 148, -10.16667, -10.85, -65.41666, -68.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-059', 'Los Testigos group', 'YV5', 148, -11.18333, -11.5, -62.96667, -63.76667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-060', 'Para State East group', 'PY8', 108, .05, 1.583333, -46.05, -49.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-061', 'La Araucania Reg / Los Lagos Reg North group', 'CE6', 112, 38.4, 40.91667, -73.33334, -74, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-062', 'Bahia State South group', 'PY6', 108, 16, 18.33333, -38.85, -39.63334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-063', 'Monagas / Delta Amacuro State group', 'YV8', 148, -8.383333, -10.2, -59.83333, -62.58333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-064', 'Aisen Region Centre group', 'CE7', 112, 45, 46.66667, -73.33334, -75.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-065', 'Chubut Province South group', 'LU', 100, 44, 46, -65.08334, -67.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-066', 'Zulia State group', 'YV1', 148, -10.8, -11.83333, -71.25, -71.93333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-067', 'Espirito Santo State group', 'PP1', 108, 18.33333, 21.3, -39.63334, -40.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-068', 'Guyana group', '8R', 129, -5.816667, -8.45, -57.16667, -59.83333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-069', 'Antofagasta Region group', 'CE1', 112, 21.48333, 26.06667, -70.03333, -70.86667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-070', 'Bio-Bio Region group', 'CE5', 112, 36.05, 38.4, -72.83334, -73.83334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-071', 'Sao Paulo State Centre group', 'PY2', 108, 23.78333, 24.5, -45.5, -47, 'H', 'Santo Amaro Is. Ineligible');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-072', 'Maranhao State East group', 'PR8', 108, 2.45, 2.833333, -41.9, -43, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-073', 'Ica Department group', 'OA5', 136, 13.3, 15.41667, -75.06667, -76.2, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-074', 'Ancash Department group', 'OA3', 136, 8.966666, 10.63333, -77.91666, -78.76667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-075', 'La Libertad Department group', 'OA2', 136, 7.166667, 8.966666, -78.66666, -79.75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-076', 'Tumbes / Piura / Lambayeque Department group', 'OA1', 136, 3.4, 7.166667, -79.75, -81.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-077', 'Rio De Janeiro State East group', 'PY1', 108, 21.3, 23.03333, -40.95, -42.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-078', 'Cordoba / Sucre Division group', 'HK1', 116, -8.883333, -10.11667, -75.56667, -76.43333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-079', 'Rio De Janeiro State Centre group', 'PY1', 108, 22.91667, 23.16667, -42.16667, -43.56667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-080', 'Bahia State Centre group', 'PY6', 108, 13.25, 16, -38.76667, -39.01667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-081', 'Narino Division group', 'HK8', 116, -1.416667, -2.716667, -78, -79.11667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-082', 'Magdalena / Guajira Division group', 'HK2', 116, -10.93333, -12.5, -71, -74.83334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-083', 'Salas y Gomez Island', 'CE0', 47, 26.45, 26.46667, -105.4167, -105.4833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-084', 'Choco Division South group', 'HK4', 116, -4.066667, -7.2, -77.23333, -77.9, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-085', 'Atacama Region group', 'CE1', 112, 26.06667, 29.13333, -70.66666, -71.68333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-086', 'Coquimbo / Valparaiso Region group', 'CE2', 112, 29.13333, 33.83333, -71.33334, -71.86667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-087', 'Santa Cruz Province North group', 'LU', 100, 46, 49, -65.58334, -67.58334, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-088', 'Santa Catarina State South group', 'PP5', 108, 28, 29.3, -48.58333, -49.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-089', 'Falcon State group', 'YV1', 148, -10.56667, -12.25, -68.13333, -71.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-090', 'Anzoategui State / Sucre State West group', 'YV5-7', 148, -10.05, -10.71667, -63.75, -65.41666, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-091', 'Magallanes Province group', 'CE8', 112, 52.61666, 54.5, -70.16666, -75, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-092', 'Suriname group', 'PZ', 140, -5.633333, -6.016667, -53.98333, -57.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-093', 'Choco Division North / Antioquia Division group', 'HK4', 116, -7.933333, -8.883333, -76.43333, -77.36667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-094', 'Ultima Esperanza Province South group', 'CE8', 112, 51.6, 52.8, -73.6, -75.35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-268', 'Laut Kecil Islands', 'YB7', 327, 4.25, 5.25, 114.5, 116.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-097', 'Mediterranean Sea Coast Centre Group', '7X', 400, -36.5, -37, 1.6, 5.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-171', 'Sri Lanka\'s Coastal Islands', '4S', 315, -5.85, -10, 79.5, 82, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-172', 'Sea of Okhotsk Coast North Group', 'R0C', 15, -56, -59.5, 137.5, 137.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-173', 'Tamil Nadu State Group', 'VU', 324, -8, -13.5, 77.1, 80.4, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-267', 'Coral Sea Islands Territory North', 'VK9', 150, 16.4, 19.5, 148.1, 152.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-228', 'Caribbean Sea Coast North Group', 'YN', 86, -13.5, -15, -82.5, -83.55, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-101', 'Red Sea Coast North group', 'SU', 478, -26, -29.98, 32.3, 35, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-270', 'Simeulue and Banyak Islands', 'YB6', 327, 1.75, 3, 95.55, 97.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-102', 'Erongo / Hardap Region Group', 'V5', 464, 21.13, 24.95, 13.6, 14.85, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-103', 'Zambezia District Group', 'C9', 181, 16.85, 18.85, 36.3, 39.15, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-104', 'Mediterranean Sea Coast East Group', '7X', 400, -36.5, -37.25, 5.4, 8.7, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-105', 'Nyanga Province Group', 'TR', 420, 2.9, 3.95, 10.05, 11.13, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-106', 'Cote d\'Ivoire Group', 'TU', 428, -4.33, -5.2, -3.1, -7.6, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-107', 'Cuanza Sul / Benguela Province Group', 'D2', 401, 10.25, 13.35, 12.5, 13.5, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-108', 'Namibe Province Group', 'D2', 401, 13.6, 17.25, 11.5, 12.5, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-109', 'Nile Delta and Sinai Region Group', 'SU', 478, -31, -31.75, 29.7, 34.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-110', 'Red Sea Coast South Group', 'SU', 478, -23.15, -26, 34.3, 35.85, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-111', 'Liberia Group', 'EL', 434, -4.33, -6.9, -7.6, -11.5, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-112', 'Mediterranean Sea Coast Centre Group', '5A', 436, -30.3, -32.85, 16.1, 21.45, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-113', 'Mediterranean Sea Coast East Group', '5A', 436, -31.6, -33, 21.4, 25.15, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-114', 'Halaib Triangle Group', 'ST', 466, -22, -23.13, 35.66, 36.9, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-115', 'Red Sea State Group', 'ST', 466, -18, -22, 36.9, 38.6, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-246', 'Tamaulipas State Group', 'XE2', 50, -22.25, -25.95, -97, -97.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-295', 'Sebatik Island', '9M6,YB7', 0, -4, -4.28, 117.62, 117.95, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-099', 'Curacao', 'PJ2', 517, -11.98333, -12.53333, -68.736, -69.25, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-199', 'Andhra Pradesh State South group', 'VU', 324, 13.5, 16.25, 80.07, 81.28, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-118', 'Mediterranean Seacoast Group, Morocco', 'CN', 446, -34.98333, -35.93333, -2.216667, -6.25, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AF-119', 'Coetivy Island, Seychelles', 'S7', 379, 6.966667, 7.3, 56.13333, 56.41667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-200', 'Shikoku\'s Coastal Islands, Japan', 'JA5', 339, -32.66667, -34.58333, 132, 134.8667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-201', 'Sea of Marmara Islands, Turkey', 'TA', 390, -40.3, -41.06667, 26.16667, 29.51667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-202', 'Hawar Islands, Bahrain', 'A9', 304, -25.53333, -25.78333, 50.68333, 50.85, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-203', 'Shelikhova Bay group, Asiatic Russia', 'R0X', 15, -59, -62.68333, 159.6667, 165.0833, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-190', 'Viktoriya Island, Franz Josef Land', 'RI1FJ', 61, -80.08334, -80.2, 36.5, 37.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-191', 'Fericirii Island, Romania/Ukraine', 'YO, UR', NULL, -45.15, -45.21667, 29.75, 29.78333, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-247', 'Sint Maarten’s Coastal Islands', 'PJ7', 518, -18, -18.06667, -62.95, -63.16667, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-248', 'NWT (Melville Island) group, Canada', 'VE8, VY0', 1, -74.33334, -78.83334, -105, -123.5, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-296', 'Tobi and Helen Islands, Palau', 'T8', 22, -2.666667, -3.166667, 131, 132, NULL, NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-100', 'Arica and Parinacota/Tarapaca Region group, Chile', 'CE1', 112, 18.38333, 21.48333, -70.03333, -70.43333, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-204', 'Kuril\'skiye (Kuril) Islands North', 'R0F', 15, -46.66667, -51, 151.5, 156.333, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-205', 'Bering Sea Coast North', 'R0X', 15, -59.9, -61.81667, 170.3, 174.5, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('EU-192', 'Kataja', 'SM,OH', NULL, -65.68333, -65.71667, 24.1167, 24.183, 'P', 'Split Sovereignty SWE/FIN');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-249', 'Puerto Rico\'s Coastal Islands', 'KP3', 4, -17.8, -18.66667, -65.15, -68, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('NA-250', 'Yakutat County Group', 'KL', 6, -58.8, -60, -137.933, -141, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-297', 'Morane Atoll, Tuamotu Islands', 'FO', 175, 23.91667, 23.25, -137.083, -137.183, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-206', 'JA0,1,2,7 Honshu’s Coastal Islands East', 'JA0,1,2,7', 339, -33.7, -41.6, 136, 142.3, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('AS-207', ' Chukchi Sea Coast Centre group', 'R0K', 15, -68.13, -69.45, 178, 177, 'P', 'Kosa Dvukh Pilotov');"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-298', 'Tatakoto Atoll, Tuamotu Islands', 'FO', 175, 17.25, 17.41, -138.18, -138.58, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-299', ' Yap East group', 'V6', 173, -7.25, -8.25, 145.66, 147.75, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('OC-300', 'McKean and Nikumaroro Atolls', 'T31', 31, 2.5, 5, -173, -174.08, 'P', NULL);"); - $this->db->query("INSERT INTO `iota` (`Tag`, `Name`, `Prefix`, `DXCCID`, `Lat1`, `Lat2`, `Lon1`, `Lon2`, `Status`, `Notes`) VALUES ('SA-101', 'Alejandro Selkirk Island', 'CE0', 125, 33.58, 33.91, -80.58, -81, 'P', NULL);"); - - - - - } - - public function down(){ - $this->db->query(""); - - } -} diff --git a/application/migrations/039_add_state_to_stationprofile.php b/application/migrations/039_add_state_to_stationprofile.php deleted file mode 100644 index 196cbdb33..000000000 --- a/application/migrations/039_add_state_to_stationprofile.php +++ /dev/null @@ -1,16 +0,0 @@ -dbforge->add_field('id'); - - $this->dbforge->add_field(array( - 'mode' => array( - 'type' => 'VARCHAR', - 'constraint' => 12, - ), - 'submode' => array( - 'type' => 'VARCHAR', - 'constraint' => 12, - 'null' => TRUE, - ), - 'qrgmode' => array( - 'type' => 'VARCHAR', - 'constraint' => 4, - ), - 'active' => array( - 'type' => 'INT', - ), - )); - $this->dbforge->create_table('adif_modes'); - - - $this->db->query("INSERT INTO `adif_modes` (`mode`, `submode`, `qrgmode`, `active`) VALUES('AM', NULL, 'SSB', 1) - ,('ARDOP', NULL, 'DATA', 0) - ,('ATV', NULL, 'DATA', 0) - ,('C4FM', NULL, 'DATA', 1) - ,('CHIP', NULL, 'DATA', 0) - ,('CHIP', 'CHIP128', 'DATA', 0) - ,('CHIP', 'CHIP64', 'DATA', 0) - ,('CLO', NULL, 'DATA', 0) - ,('CONTESTI', NULL, 'DATA', 0) - ,('CW', NULL, 'CW', 1) - ,('CW', 'PCW', 'CW', 0) - ,('DIGITALVOICE', NULL, 'DATA', 0) - ,('DOMINO', NULL, 'DATA', 0) - ,('DOMINO', 'DOMINOEX', 'DATA', 0) - ,('DOMINO', 'DOMINOF', 'DATA', 0) - ,('DSTAR', NULL, 'DATA', 0) - ,('FAX', NULL, 'DATA', 0) - ,('FM', NULL, 'SSB', 1) - ,('FSK441', NULL, 'DATA', 1) - ,('FT8', NULL, 'DATA', 1) - ,('HELL', NULL, 'DATA', 1) - ,('HELL', 'FMHELL', 'DATA', 0) - ,('HELL', 'FSKHELL', 'DATA', 0) - ,('HELL', 'HELL80', 'DATA', 1) - ,('HELL', 'HFSK', 'DATA', 0) - ,('HELL', 'PSKHELL', 'DATA', 0) - ,('ISCAT', NULL, 'DATA', 1) - ,('ISCAT', 'ISCAT-A', 'DATA', 1) - ,('ISCAT', 'ISCAT-B', 'DATA', 1) - ,('JT4', NULL, 'DATA', 0) - ,('JT4', 'JT4A', 'DATA', 0) - ,('JT4', 'JT4B', 'DATA', 0) - ,('JT4', 'JT4C', 'DATA', 0) - ,('JT4', 'JT4D', 'DATA', 0) - ,('JT4', 'JT4E', 'DATA', 0) - ,('JT4', 'JT4F', 'DATA', 0) - ,('JT4', 'JT4G', 'DATA', 0) - ,('JT44', NULL, 'DATA', 0) - ,('JT65', NULL, 'DATA', 1) - ,('JT65', 'JT65A', 'DATA', 0) - ,('JT65', 'JT65B', 'DATA', 1) - ,('JT65', 'JT65B2', 'DATA', 0) - ,('JT65', 'JT65C', 'DATA', 0) - ,('JT65', 'JT65C2', 'DATA', 0) - ,('JT6C', NULL, 'DATA', 1) - ,('JT6M', NULL, 'DATA', 1) - ,('JT9', NULL, 'DATA', 1) - ,('JT9', 'JT9-1', 'DATA', 1) - ,('JT9', 'JT9-10', 'DATA', 0) - ,('JT9', 'JT9-2', 'DATA', 0) - ,('JT9', 'JT9-30', 'DATA', 0) - ,('JT9', 'JT9-5', 'DATA', 0) - ,('JT9', 'JT9A', 'DATA', 0) - ,('JT9', 'JT9B', 'DATA', 0) - ,('JT9', 'JT9C', 'DATA', 0) - ,('JT9', 'JT9D', 'DATA', 0) - ,('JT9', 'JT9E', 'DATA', 0) - ,('JT9', 'JT9E FAST', 'DATA', 0) - ,('JT9', 'JT9F', 'DATA', 0) - ,('JT9', 'JT9F FAST', 'DATA', 0) - ,('JT9', 'JT9G', 'DATA', 0) - ,('JT9', 'JT9G FAST', 'DATA', 0) - ,('JT9', 'JT9H', 'DATA', 0) - ,('JT9', 'JT9H FAST', 'DATA', 0) - ,('JTMS', NULL, 'DATA', 0) - ,('JTMSK', NULL, 'DATA', 0) - ,('MFSK', NULL, 'DATA', 1) - ,('MFSK', 'FSQCALL', 'DATA', 0) - ,('MFSK', 'FT4', 'DATA', 1) - ,('MFSK', 'JS8', 'DATA', 1) - ,('MFSK', 'MFSK11', 'DATA', 0) - ,('MFSK', 'MFSK128', 'DATA', 0) - ,('MFSK', 'MFSK16', 'DATA', 1) - ,('MFSK', 'MFSK22', 'DATA', 0) - ,('MFSK', 'MFSK31', 'DATA', 0) - ,('MFSK', 'MFSK32', 'DATA', 0) - ,('MFSK', 'MFSK4', 'DATA', 0) - ,('MFSK', 'MFSK64', 'DATA', 0) - ,('MFSK', 'MFSK8', 'DATA', 0) - ,('MSK144', NULL, 'DATA', 1) - ,('MT63', NULL, 'DATA', 0) - ,('OLIVIA', NULL, 'DATA', 0) - ,('OLIVIA', 'OLIVIA 16/10', 'DATA', 0) - ,('OLIVIA', 'OLIVIA 16/50', 'DATA', 0) - ,('OLIVIA', 'OLIVIA 32/10', 'DATA', 0) - ,('OLIVIA', 'OLIVIA 4/125', 'DATA', 0) - ,('OLIVIA', 'OLIVIA 4/250', 'DATA', 0) - ,('OLIVIA', 'OLIVIA 8/250', 'DATA', 0) - ,('OLIVIA', 'OLIVIA 8/500', 'DATA', 0) - ,('OPERA', NULL, 'DATA', 0) - ,('OPERA', 'OPERA-BEACON', 'DATA', 0) - ,('OPERA', 'OPERA-QSO', 'DATA', 0) - ,('PAC', NULL, 'DATA', 0) - ,('PAC', 'PAC2', 'DATA', 0) - ,('PAC', 'PAC3', 'DATA', 0) - ,('PAC', 'PAC4', 'DATA', 0) - ,('PAX', NULL, 'DATA', 0) - ,('PAX', 'PAX2', 'DATA', 0) - ,('PKT', NULL, 'DATA', 1) - ,('PSK', NULL, 'DATA', 1) - ,('PSK', 'FSK31', 'DATA', 0) - ,('PSK', 'PSK10', 'DATA', 0) - ,('PSK', 'PSK1000', 'DATA', 0) - ,('PSK', 'PSK125', 'DATA', 1) - ,('PSK', 'PSK250', 'DATA', 0) - ,('PSK', 'PSK31', 'DATA', 1) - ,('PSK', 'PSK500', 'DATA', 0) - ,('PSK', 'PSK63', 'DATA', 1) - ,('PSK', 'PSK63F', 'DATA', 0) - ,('PSK', 'PSKAM10', 'DATA', 0) - ,('PSK', 'PSKAM31', 'DATA', 0) - ,('PSK', 'PSKAM50', 'DATA', 0) - ,('PSK', 'PSKFEC31', 'DATA', 0) - ,('PSK', 'QPSK125', 'DATA', 1) - ,('PSK', 'QPSK250', 'DATA', 0) - ,('PSK', 'QPSK31', 'DATA', 1) - ,('PSK', 'QPSK500', 'DATA', 0) - ,('PSK', 'QPSK63', 'DATA', 1) - ,('PSK', 'SIM31', 'DATA', 0) - ,('PSK2K', NULL, 'DATA', 0) - ,('Q15', NULL, 'DATA', 0) - ,('QRA64', NULL, 'DATA', 1) - ,('QRA64', 'QRA64A', 'DATA', 0) - ,('QRA64', 'QRA64B', 'DATA', 0) - ,('QRA64', 'QRA64C', 'DATA', 0) - ,('QRA64', 'QRA64D', 'DATA', 0) - ,('QRA64', 'QRA64E', 'DATA', 0) - ,('ROS', NULL, 'DATA', 1) - ,('ROS', 'ROS-EME', 'DATA', 0) - ,('ROS', 'ROS-HF', 'DATA', 0) - ,('ROS', 'ROS-MF', 'DATA', 0) - ,('RTTY', NULL, 'DATA', 1) - ,('RTTY', 'ASCI', 'DATA', 0) - ,('RTTYM', NULL, 'DATA', 0) - ,('SSB', NULL, 'SSB', 1) - ,('SSB', 'LSB', 'SSB', 1) - ,('SSB', 'USB', 'SSB', 1) - ,('SSTV', NULL, 'DATA', 1) - ,('T10', NULL, 'DATA', 0) - ,('THOR', NULL, 'DATA', 0) - ,('THRB', NULL, 'DATA', 0) - ,('THRB', 'THRBX', 'DATA', 0) - ,('TOR', NULL, 'DATA', 0) - ,('TOR', 'AMTORFEC', 'DATA', 0) - ,('TOR', 'GTOR', 'DATA', 0) - ,('V4', NULL, 'DATA', 0) - ,('VOI', NULL, 'DATA', 0) - ,('WINMOR', NULL, 'DATA', 0) - ,('WSPR', NULL, 'DATA', 0);"); - } - - public function down(){ - $this->dbforge->drop_table('config'); - } -} diff --git a/application/migrations/042_modify_modes_table.php b/application/migrations/042_modify_modes_table.php deleted file mode 100644 index a3d4fcb85..000000000 --- a/application/migrations/042_modify_modes_table.php +++ /dev/null @@ -1,26 +0,0 @@ - array( - 'name' => 'submode', - 'type' => 'VARCHAR', - 'constraint' => '25', - ) - ); - $this->dbforge->modify_column('adif_modes', $fields); - - $this->db->query("UPDATE `adif_modes` set submode = 'OLIVIA 16/500' where submode = 'OLIVIA 16/50';"); - $this->db->query("UPDATE `adif_modes` set submode = 'OLIVIA 16/1000' where submode = 'OLIVIA 16/10';"); - $this->db->query("UPDATE `adif_modes` set submode = 'OLIVIA 32/1000' where submode = 'OLIVIA 32/10';"); - - } - - public function down(){ - echo "Not possible, sorry."; - } -} diff --git a/application/migrations/043_add_lotw_certs_table.php b/application/migrations/043_add_lotw_certs_table.php deleted file mode 100644 index e1717a6f9..000000000 --- a/application/migrations/043_add_lotw_certs_table.php +++ /dev/null @@ -1,46 +0,0 @@ -dbforge->add_field(array( - 'lotw_cert_id' => array( - 'type' => 'INT', - 'constraint' => 1, - 'unsigned' => TRUE, - 'auto_increment' => TRUE - ), - - 'callsign' => array( - 'type' => 'VARCHAR', - 'constraint' => '100', - ), - - 'cert_dxcc' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - ), - - 'date_created' => array( - 'type' => 'DATETIME', - 'null' => TRUE, - ), - - 'date_expires' => array( - 'type' => 'DATETIME', - 'null' => TRUE, - ), - )); - - $this->dbforge->add_key('lotw_cert_id', TRUE); - $this->dbforge->create_table('lotw_certs'); - } - - public function down() - { - $this->dbforge->drop_table('lotw_certs'); - } -} \ No newline at end of file diff --git a/application/migrations/044_add_key_to_lotw_certs.php b/application/migrations/044_add_key_to_lotw_certs.php deleted file mode 100644 index c6da240c4..000000000 --- a/application/migrations/044_add_key_to_lotw_certs.php +++ /dev/null @@ -1,24 +0,0 @@ -db->field_exists('cert_key', 'lotw_certs')) { - $this->dbforge->add_column('lotw_certs', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('cert_key', 'lotw_certs')) { - $this->dbforge->drop_column('lotw_certs', 'cert_key'); - } - } -} diff --git a/application/migrations/045_add_userid_to_lotw_certs.php b/application/migrations/045_add_userid_to_lotw_certs.php deleted file mode 100644 index 09892fa0f..000000000 --- a/application/migrations/045_add_userid_to_lotw_certs.php +++ /dev/null @@ -1,21 +0,0 @@ -dbforge->add_column('lotw_certs', $fields); - } - - public function down() - { - $this->dbforge->drop_column('lotw_certs', 'user_id'); - } -} \ No newline at end of file diff --git a/application/migrations/046_add_last_upload_to_lotw_certs.php b/application/migrations/046_add_last_upload_to_lotw_certs.php deleted file mode 100644 index 562ecebce..000000000 --- a/application/migrations/046_add_last_upload_to_lotw_certs.php +++ /dev/null @@ -1,21 +0,0 @@ -dbforge->add_column('lotw_certs', $fields); - } - - public function down() - { - $this->dbforge->drop_column('lotw_certs', 'last_upload'); - } -} \ No newline at end of file diff --git a/application/migrations/047_add_cert_to_lotw_certs.php b/application/migrations/047_add_cert_to_lotw_certs.php deleted file mode 100644 index d47f74f6b..000000000 --- a/application/migrations/047_add_cert_to_lotw_certs.php +++ /dev/null @@ -1,21 +0,0 @@ -dbforge->add_column('lotw_certs', $fields); - } - - public function down() - { - $this->dbforge->drop_column('lotw_certs', 'cert'); - } -} \ No newline at end of file diff --git a/application/migrations/048_add_county_to_stationprofile.php b/application/migrations/048_add_county_to_stationprofile.php deleted file mode 100644 index 4c25a7d33..000000000 --- a/application/migrations/048_add_county_to_stationprofile.php +++ /dev/null @@ -1,16 +0,0 @@ -dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_measurement_base'); - } -} \ No newline at end of file diff --git a/application/migrations/050_add_dateformat_to_users.php b/application/migrations/050_add_dateformat_to_users.php deleted file mode 100644 index 764be2aa3..000000000 --- a/application/migrations/050_add_dateformat_to_users.php +++ /dev/null @@ -1,20 +0,0 @@ -dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_date_format'); - } -} \ No newline at end of file diff --git a/application/migrations/051_delete_lotw_userlist_table.php b/application/migrations/051_delete_lotw_userlist_table.php deleted file mode 100644 index a5857c488..000000000 --- a/application/migrations/051_delete_lotw_userlist_table.php +++ /dev/null @@ -1,16 +0,0 @@ -dbforge->drop_table('lotw_userlist'); - } - - public function down() - { - echo "not possible"; - } -} \ No newline at end of file diff --git a/application/migrations/052_add_user_stylesheet.php b/application/migrations/052_add_user_stylesheet.php deleted file mode 100644 index 2bb828940..000000000 --- a/application/migrations/052_add_user_stylesheet.php +++ /dev/null @@ -1,20 +0,0 @@ -dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_stylesheet'); - } -} \ No newline at end of file diff --git a/application/migrations/053_gridsquare_index.php b/application/migrations/053_gridsquare_index.php deleted file mode 100644 index c444cee11..000000000 --- a/application/migrations/053_gridsquare_index.php +++ /dev/null @@ -1,17 +0,0 @@ -config->item('table_name')." ADD INDEX `gridsquares` (`COL_GRIDSQUARE`);"; - $this->db->query($sql); - } - - public function down() - { - - } -} \ No newline at end of file diff --git a/application/migrations/054_add_qsl_images.php b/application/migrations/054_add_qsl_images.php deleted file mode 100644 index ab8828e59..000000000 --- a/application/migrations/054_add_qsl_images.php +++ /dev/null @@ -1,19 +0,0 @@ -db->query("CREATE TABLE IF NOT EXISTS `qsl_images` - (`id` integer NOT NULL auto_increment, `qsoid` int, `filename` text, primary key (id)) - ENGINE=InnoDB DEFAULT CHARSET=utf8;"); - } - - public function down() - { - $this->db->query(""); - } -} diff --git a/application/migrations/055_add_signature_to_station_profile.php b/application/migrations/055_add_signature_to_station_profile.php deleted file mode 100644 index 0556e8950..000000000 --- a/application/migrations/055_add_signature_to_station_profile.php +++ /dev/null @@ -1,16 +0,0 @@ -db->query($sql); - } - - public function down() - { - $sql = "UPDATE users SET user_stylesheet = 'bootstrap.min.css'"; - $this->db->query($sql); - } -} \ No newline at end of file diff --git a/application/migrations/058_new_options_table.php b/application/migrations/058_new_options_table.php deleted file mode 100644 index 3bc288025..000000000 --- a/application/migrations/058_new_options_table.php +++ /dev/null @@ -1,52 +0,0 @@ -db->table_exists('options')) { - $this->dbforge->add_field(array( - 'option_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE - ), - - 'option_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '191', - 'null' => TRUE, - 'unique' => TRUE, - ), - - 'option_value' => array( - 'type' => 'longtext', - ), - - 'autoload' => array( - 'type' => 'varchar', - 'constraint' => '20', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('option_id', TRUE); - - $this->dbforge->create_table('options'); - } - } - - public function down() - { - $this->dbforge->drop_table('options'); - } -} \ No newline at end of file diff --git a/application/migrations/059_add_default_theme_to_options_table.php b/application/migrations/059_add_default_theme_to_options_table.php deleted file mode 100644 index 6373f0202..000000000 --- a/application/migrations/059_add_default_theme_to_options_table.php +++ /dev/null @@ -1,24 +0,0 @@ - "theme", 'option_value' => "darkly", 'autoload' => "yes") - ); - - $this->db->insert_batch('options', $data); - } - - public function down() - { - // No option to down - } -} \ No newline at end of file diff --git a/application/migrations/060_add_tileserver_to_options.php b/application/migrations/060_add_tileserver_to_options.php deleted file mode 100644 index 98d622751..000000000 --- a/application/migrations/060_add_tileserver_to_options.php +++ /dev/null @@ -1,25 +0,0 @@ - "map_tile_server", 'option_value' => "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", 'autoload' => "yes"), - array('option_name' => "map_tile_server_copyright", 'option_value' => "Map data © OpenStreetMap", 'autoload' => "yes") - ); - - $this->db->insert_batch('options', $data); - } - - public function down() - { - // No option to down - } -} \ No newline at end of file diff --git a/application/migrations/061_add_lang_to_options.php b/application/migrations/061_add_lang_to_options.php deleted file mode 100644 index c915a3b9b..000000000 --- a/application/migrations/061_add_lang_to_options.php +++ /dev/null @@ -1,24 +0,0 @@ - "language", 'option_value' => "english", 'autoload' => "yes"), - ); - - $this->db->insert_batch('options', $data); - } - - public function down() - { - // No option to down - } -} \ No newline at end of file diff --git a/application/migrations/062_add_globalsearch_to_options.php b/application/migrations/062_add_globalsearch_to_options.php deleted file mode 100644 index 02df4f43f..000000000 --- a/application/migrations/062_add_globalsearch_to_options.php +++ /dev/null @@ -1,24 +0,0 @@ - "global_search", 'option_value' => "false", 'autoload' => "yes"), - ); - - $this->db->insert_batch('options', $data); - } - - public function down() - { - // No option to down - } -} \ No newline at end of file diff --git a/application/migrations/063_add_contest_table.php b/application/migrations/063_add_contest_table.php deleted file mode 100644 index 9ff953dac..000000000 --- a/application/migrations/063_add_contest_table.php +++ /dev/null @@ -1,243 +0,0 @@ -db->query("create table contest (id integer not null auto_increment, name varchar(256), adifname varchar(256), active integer default 1, primary key (id)) ENGINE=InnoDB DEFAULT CHARSET=utf8;"); - - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Other','Other',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS Great Pumpkin Sprint','070-160M-SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS Three Day Weekend','070-3-DAY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS 31 Flavors','070-31-FLAVORS',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS 40m Firecracker Sprint','070-40M-SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS 80m Jay Hudak Memorial Sprint','070-80M-SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS PSKFest','070-PSKFEST',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS St. Patricks Day','070-ST-PATS-DAY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PODXS Valentine Sprint','070-VALENTINE-SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Ten-Meter RTTY Contest (2011 onwards)','10-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Open Season Ten Meter QSO Party','1010-OPEN-SEASON',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('7th-Area QSO Party','7QP',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Alabama QSO Party','AL-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('JARL All Asian DX Contest (CW)','ALL-ASIAN-DX-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('JARL All Asian DX Contest (PHONE)','ALL-ASIAN-DX-PHONE',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ANARTS WW RTTY','ANARTS-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Anatolian WW RTTY','ANATOLIAN-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Asia - Pacific Sprint','AP-SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Arkansas QSO Party','AR-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARI DX Contest','ARI-DX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL 10 Meter Contest','ARRL-10',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL 10 GHz and Up Contest','ARRL-10-GHZ',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL 160 Meter Contest','ARRL-160',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL 222 MHz and Up Distance Contest','ARRL-222',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL International DX Contest (CW)','ARRL-DX-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL International DX Contest (Phone)','ARRL-DX-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL EME contest','ARRL-EME',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL Field Day','ARRL-FIELD-DAY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL Rookie Roundup (CW)','ARRL-RR-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL Rookie Roundup (RTTY)','ARRL-RR-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL Rookie Roundup (Phone)','ARRL-RR-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL RTTY Round-Up','ARRL-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL School Club Roundup','ARRL-SCR',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL November Sweepstakes (CW)','ARRL-SS-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL November Sweepstakes (Phone)','ARRL-SS-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL August UHF Contest','ARRL-UHF-AUG',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL January VHF Sweepstakes','ARRL-VHF-JAN',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL June VHF QSO Party','ARRL-VHF-JUN',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('ARRL September VHF QSO Party','ARRL-VHF-SEP',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Arizona QSO Party','AZ-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('BARTG Spring RTTY Contest','BARTG-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('BARTG Sprint Contest','BARTG-SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('British Columbia QSO Party','BC-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('California QSO Party','CA-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CIS DX Contest','CIS-DX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Colorado QSO Party','CO-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ WW 160 Meter DX Contest (CW)','CQ-160-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ WW 160 Meter DX Contest (SSB)','CQ-160-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ-M International DX Contest','CQ-M',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ World-Wide VHF Contest','CQ-VHF',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ WW WPX Contest (CW)','CQ-WPX-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ/RJ WW RTTY WPX Contest','CQ-WPX-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ WW WPX Contest (SSB)','CQ-WPX-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ WW DX Contest (CW)','CQ-WW-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ/RJ WW RTTY DX Contest','CQ-WW-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CQ WW DX Contest (SSB)','CQ-WW-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Connecticut QSO Party','CT-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Concurso Verde e Amarelo DX CW Contest','CVA-DX-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Concurso Verde e Amarelo DX SSB Contest','CVA-DX-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CWops CW Open Competition','CWOPS-CW-OPEN',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('CWops Mini-CWT Test','CWOPS-CWT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WAE DX Contest (CW)','DARC-WAEDC-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WAE DX Contest (RTTY)','DARC-WAEDC-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WAE DX Contest (SSB)','DARC-WAEDC-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('DARC Worked All Germany','DARC-WAG',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Delaware QSO Party','DE-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('DL-DX RTTY Contest','DL-DX-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('DMC RTTY Contest','DMC-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Concurso Nacional de Telegrafía','EA-CNCW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Municipios Españoles','EA-DME',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('EA PSK63','EA-PSK63',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Unión de Radioaficionados Españoles RTTY Contest','EA-RTTY (import-only)',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Su Majestad El Rey de España - CW','EA-SMRE-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Su Majestad El Rey de España - SSB','EA-SMRE-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Atlántico V-UHF','EA-VHF-ATLANTIC',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Combinado de V-UHF','EA-VHF-COM',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Costa del Sol V-UHF','EA-VHF-COSTA-SOL',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Nacional VHF','EA-VHF-EA',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Segovia EA1RCS V-UHF','EA-VHF-EA1RCS',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('QSL V-UHF & 50MHz','EA-VHF-QSL',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Sant Sadurni V-UHF','EA-VHF-SADURNI',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Unión de Radioaficionados Españoles RTTY Contest','EA-WW-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PSK63 QSO Party','EPC-PSK63',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('EU Sprint','EU Sprint',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('EU HF Championship','EU-HF',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('EU PSK DX Contest','EU-PSK-DX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('European CW Association 160m CW Party','EUCW160M',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('FISTS Fall Sprint','FALL SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Florida QSO Party','FL-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Georgia QSO Party','GA-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Hungarian DX Contest','HA-DX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Helvetia Contest','HELVETIA',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Hawaiian QSO Party','HI-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('IARC Holyland Contest','HOLYLAND',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Iowa QSO Party','IA-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('DARC IARU Region 1 Field Day','IARU-FIELD-DAY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('IARU HF World Championship','IARU-HF',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Idaho QSO Party','ID-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Illinois QSO Party','IL QSO Party',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Indiana QSO Party','IN-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('JARTS WW RTTY','JARTS-WW-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Japan International DX Contest (CW)','JIDX-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Japan International DX Contest (SSB)','JIDX-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Mongolian RTTY DX Contest','JT-DX-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Kansas QSO Party','KS-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Kentucky QSO Party','KY-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Louisiana QSO Party','LA-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('DRCG Long Distance Contest (RTTY)','LDC-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('LZ DX Contest','LZ DX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Maritimes QSO Party','MAR-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Maryland QSO Party','MD-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Maine QSO Party','ME-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Michigan QSO Party','MI-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Mid-Atlantic QSO Party','MIDATLANTIC-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Minnesota QSO Party','MN-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Missouri QSO Party','MO-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Mississippi QSO Party','MS-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Montana QSO Party','MT-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North America Sprint (CW)','NA-SPRINT-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North America Sprint (RTTY)','NA-SPRINT-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North America Sprint (Phone)','NA-SPRINT-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North America QSO Party (CW)','NAQP-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North America QSO Party (RTTY)','NAQP-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North America QSO Party (Phone)','NAQP-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North Carolina QSO Party','NC-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('North Dakota QSO Party','ND-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Nebraska QSO Party','NE-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('New England QSO Party','NEQP',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('New Hampshire QSO Party','NH-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('New Jersey QSO Party','NJ-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('New Mexico QSO Party','NM-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('NRAU-Baltic Contest (CW)','NRAU-BALTIC-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('NRAU-Baltic Contest (SSB)','NRAU-BALTIC-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Nevada QSO Party','NV-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('New York QSO Party','NY-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Oceania DX Contest (CW)','OCEANIA-DX-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Oceania DX Contest (SSB)','OCEANIA-DX-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Ohio QSO Party','OH-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Czech Radio Club OK DX Contest','OK-DX-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Czech Radio Club OK-OM DX Contest','OK-OM-DX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Oklahoma QSO Party','OK-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Old Man International Sideband Society QSO Party','OMISS-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Ontario QSO Party','ON-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Oregon QSO Party','OR-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Pennsylvania QSO Party','PA-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Dutch PACC Contest','PACC',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('MDXA PSK DeathMatch (2005-2010)','PSK-DEATHMATCH',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Quebec QSO Party','QC-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Canadian Amateur Radio Society Contest','RAC (import-only)',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('RAC Canada Day Contest','RAC-CANADA-DAY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('RAC Canada Winter Contest','RAC-CANADA-WINTER',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Russian District Award Contest','RDAC',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Russian DX Contest','RDXC',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Reseau des Emetteurs Francais 160m Contest','REF-160M',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Reseau des Emetteurs Francais Contest (CW)','REF-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Reseau des Emetteurs Francais Contest (SSB)','REF-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Rede dos Emissores Portugueses Portugal Day HF Contest','REP-PORTUGAL-DAY-HF',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Rhode Island QSO Party','RI-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('1.8MHz Contest','RSGB-160',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('21/28 MHz Contest (CW)','RSGB-21/28-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('21/28 MHz Contest (SSB)','RSGB-21/28-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('80m Club Championships','RSGB-80M-CC',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Affiliated Societies Team Contest (CW)','RSGB-AFS-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Affiliated Societies Team Contest (SSB)','RSGB-AFS-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Club Calls','RSGB-CLUB-CALLS',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Commonwealth Contest','RSGB-COMMONWEALTH',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('IOTA Contest','RSGB-IOTA',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Low Power Field Day','RSGB-LOW-POWER',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('National Field Day','RSGB-NFD',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('RoPoCo','RSGB-ROPOCO',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('SSB Field Day','RSGB-SSB-FD',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Russian Radio RTTY Worldwide Contest','RUSSIAN-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Scandinavian Activity Contest (CW)','SAC-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Scandinavian Activity Contest (SSB)','SAC-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('SARTG WW RTTY','SARTG-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('South Carolina QSO Party','SC-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('SCC RTTY Championship','SCC-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('South Dakota QSO Party','SD-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('SSA Portabeltest','SMP-AUG',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('SSA Portabeltest','SMP-MAY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('PRC SPDX Contest (RTTY)','SP-DX-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('SPAR Winter Field Day','SPAR-WINTER-FD',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('SP DX Contest','SPDXContest',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('FISTS Spring Sprint','SPRING SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Scottish-Russian Marathon','SR-MARATHON',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Stew Perry Topband Distance Challenge','STEW-PERRY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('FISTS Summer Sprint','SUMMER SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('TARA Grid Dip PSK-RTTY Shindig','TARA-GRID-DIP',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('TARA RTTY Mêlée','TARA-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('TARA Rumble PSK Contest','TARA-RUMBLE',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('TARA Skirmish Digital Prefix Contest','TARA-SKIRMISH',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Ten-Meter RTTY Contest (before 2011)','TEN-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('The Makrothen Contest','TMC-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Tennessee QSO Party','TN-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Texas QSO Party','TX-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('UBA Contest (CW)','UBA-DX-CW',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('UBA Contest (SSB)','UBA-DX-SSB',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('European PSK Club BPSK63 Contest','UK-DX-BPSK63',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('UK DX RTTY Contest','UK-DX-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Open Ukraine RTTY Championship','UKR-CHAMP-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Ukrainian DX','UKRAINIAN DX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('UKSMG 6m Marathon','UKSMG-6M-MARATHON',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('UKSMG Summer Es Contest','UKSMG-SUMMER-ES',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Ukrainian DX Contest','URE-DX  (import-only)',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Mobile Amateur Awards Club','US-COUNTIES-QSO',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Utah QSO Party','UT-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Virginia QSO Party','VA-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('RCV Venezuelan Independence Day Contest','VENEZ-IND-DAY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Virginia QSO Party','VIRGINIA QSO PARTY (import-only)',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Alessandro Volta RTTY DX Contest','VOLTA-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Washington QSO Party','WA-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Wisconsin QSO Party','WI-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA Harry Angel Memorial 80m Sprint','WIA-HARRY ANGEL',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA John Moyle Memorial Field Day','WIA-JMMFD',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA Oceania DX (OCDX) Contest','WIA-OCDX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA Remembrance Day','WIA-REMEMBRANCE',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA Ross Hull Memorial VHF/UHF Contest','WIA-ROSS HULL',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA Trans Tasman Low Bands Challenge','WIA-TRANS TASMAN',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA VHF UHF Field Days','WIA-VHF/UHF FD',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('WIA VK Shires','WIA-VK SHIRES',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('FISTS Winter Sprint','WINTER SPRINT',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('West Virginia QSO Party','WV-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('World Wide Digi DX Contest','WW-DIGI',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Wyoming QSO Party','WY-QSO-PARTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('Mexico International Contest (RTTY)','XE-INTL-RTTY',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('YODX HF contest','YOHFDX',1);"); - $this->db->query("INSERT INTO contest (name, adifname, active) values ('YU DX Contest','YUDXC',1);"); - } - - public function down(){ - $this->db->query(""); - - } -} diff --git a/application/migrations/064_add_user_sota_lookup.php b/application/migrations/064_add_user_sota_lookup.php deleted file mode 100644 index 5a7fd018c..000000000 --- a/application/migrations/064_add_user_sota_lookup.php +++ /dev/null @@ -1,24 +0,0 @@ -dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_sota_lookup'); - } -} diff --git a/application/migrations/065_changed_dxcc_tables_utf8mb4.php b/application/migrations/065_changed_dxcc_tables_utf8mb4.php deleted file mode 100644 index a8fbe3249..000000000 --- a/application/migrations/065_changed_dxcc_tables_utf8mb4.php +++ /dev/null @@ -1,22 +0,0 @@ -db->query("ALTER TABLE dxcc_entities CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;"); - $this->db->query("ALTER TABLE dxcc_exceptions CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;"); - $this->db->query("ALTER TABLE dxcc_prefixes CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;"); - } - - public function down() - { - - } -} diff --git a/application/migrations/066_add_user_hide_notes.php b/application/migrations/066_add_user_hide_notes.php deleted file mode 100644 index a08e5840a..000000000 --- a/application/migrations/066_add_user_hide_notes.php +++ /dev/null @@ -1,24 +0,0 @@ -dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_show_notes'); - } -} diff --git a/application/migrations/067_add_index_cqz_prop.php b/application/migrations/067_add_index_cqz_prop.php deleted file mode 100644 index bd161b2a2..000000000 --- a/application/migrations/067_add_index_cqz_prop.php +++ /dev/null @@ -1,23 +0,0 @@ -config->item('table_name')." ADD INDEX `HRD_IDX_COL_CQZ` (`COL_CQZ`);"; - $this->db->query($sql); - $sql = "ALTER TABLE ".$this->config->item('table_name')." ADD INDEX `HRD_IDX_COL_PROP_MODE` (`COL_PROP_MODE`);"; - $this->db->query($sql); - } - - public function down() - { - - } -} diff --git a/application/migrations/068_add_cat_timeout_to_options.php b/application/migrations/068_add_cat_timeout_to_options.php deleted file mode 100644 index 0f1858c38..000000000 --- a/application/migrations/068_add_cat_timeout_to_options.php +++ /dev/null @@ -1,24 +0,0 @@ - "cat_timeout_interval", 'option_value' => "1800", 'autoload' => "yes"), - ); - - $this->db->insert_batch('options', $data); - } - - public function down() - { - // No option to down - } -} \ No newline at end of file diff --git a/application/migrations/069_add_user_definable_columns.php b/application/migrations/069_add_user_definable_columns.php deleted file mode 100644 index 60a0ca578..000000000 --- a/application/migrations/069_add_user_definable_columns.php +++ /dev/null @@ -1,45 +0,0 @@ -dbforge->add_column('users', $fields); - - $fields = array( - 'user_column2 varchar(32) default "RSTS"', - ); - - $this->dbforge->add_column('users', $fields); - - $fields = array( - 'user_column3 varchar(32) default "RSTR"', - ); - - $this->dbforge->add_column('users', $fields); - - $fields = array( - 'user_column4 varchar(32) default "Band"', - ); - - $this->dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_column1'); - $this->dbforge->drop_column('users', 'user_column2'); - $this->dbforge->drop_column('users', 'user_column3'); - $this->dbforge->drop_column('users', 'user_column4'); - } -} diff --git a/application/migrations/070_add_fifth_column.php b/application/migrations/070_add_fifth_column.php deleted file mode 100644 index bf53a1537..000000000 --- a/application/migrations/070_add_fifth_column.php +++ /dev/null @@ -1,24 +0,0 @@ -dbforge->add_column('users', $fields); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_column5'); - } -} diff --git a/application/migrations/071_add_queries_table.php b/application/migrations/071_add_queries_table.php deleted file mode 100644 index d46e5c2f2..000000000 --- a/application/migrations/071_add_queries_table.php +++ /dev/null @@ -1,14 +0,0 @@ -db->query("create table if not exists queries (id integer not null auto_increment, query text, description text, userid integer not null, primary key (id)) ENGINE=InnoDB DEFAULT CHARSET=utf8;"); - } - - public function down() - { - - } -} diff --git a/application/migrations/072_create_station_logbook_table.php b/application/migrations/072_create_station_logbook_table.php deleted file mode 100644 index 7a43932bb..000000000 --- a/application/migrations/072_create_station_logbook_table.php +++ /dev/null @@ -1,53 +0,0 @@ -db->table_exists('station_logbooks')) { - $this->dbforge->add_field(array( - 'logbook_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'user_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'logbook_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '191', - 'null' => TRUE - ), - - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('logbook_id', TRUE); - $this->dbforge->add_key('user_id', TRUE); - - $this->dbforge->create_table('station_logbooks'); - } - } - - public function down() - { - $this->dbforge->drop_table('station_logbooks'); - } -} \ No newline at end of file diff --git a/application/migrations/073_create_station_logbook_relationship_table.php b/application/migrations/073_create_station_logbook_relationship_table.php deleted file mode 100644 index 8b2fd39bb..000000000 --- a/application/migrations/073_create_station_logbook_relationship_table.php +++ /dev/null @@ -1,92 +0,0 @@ -db->table_exists('station_logbooks')) { - $this->dbforge->add_field(array( - 'logbook_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'user_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'logbook_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '191', - 'null' => TRUE - ), - - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('logbook_id', TRUE); - $this->dbforge->add_key('user_id', TRUE); - - $this->dbforge->create_table('station_logbooks'); - } - - if (!$this->db->table_exists('station_logbooks_relationship')) { - $this->dbforge->add_field(array( - 'logbook_relation_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'station_logbook_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'station_location_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('logbook_relation_id', TRUE); - $this->dbforge->add_key('station_logbook_id', TRUE); - $this->dbforge->add_key('station_location_id', TRUE); - - $this->dbforge->create_table('station_logbooks_relationship'); - } - } - - public function down() - { - $this->dbforge->drop_table('station_logbooks_relationship'); - } -} \ No newline at end of file diff --git a/application/migrations/074_add_userid_to_station_profiles.php b/application/migrations/074_add_userid_to_station_profiles.php deleted file mode 100644 index 7a2c51610..000000000 --- a/application/migrations/074_add_userid_to_station_profiles.php +++ /dev/null @@ -1,22 +0,0 @@ -db->field_exists('user_id', 'station_profile')) { - $this->dbforge->add_column('station_profile', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('station_profile', 'user_id'); - } -} \ No newline at end of file diff --git a/application/migrations/075_add_active_station_logbook_to_user_table.php b/application/migrations/075_add_active_station_logbook_to_user_table.php deleted file mode 100644 index bf331d2ca..000000000 --- a/application/migrations/075_add_active_station_logbook_to_user_table.php +++ /dev/null @@ -1,26 +0,0 @@ -db->field_exists('active_station_logbook', 'users')) { - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('users', 'active_station_logbook'); - } -} diff --git a/application/migrations/076_theme_table.php b/application/migrations/076_theme_table.php deleted file mode 100644 index 3bf39e478..000000000 --- a/application/migrations/076_theme_table.php +++ /dev/null @@ -1,22 +0,0 @@ -db->table_exists('themes')) { - $this->db->query("create table themes (id integer not null auto_increment, name varchar(256) not null, foldername varchar(256) not null, primary key (id)) ENGINE=InnoDB DEFAULT CHARSET=utf8;"); - $this->db->query("INSERT INTO themes (name, foldername) values ('Blue','blue');"); - $this->db->query("INSERT INTO themes (name, foldername) values ('Cosmo','cosmo');"); - $this->db->query("INSERT INTO themes (name, foldername) values ('Cyborg (Dark)','cyborg');"); - $this->db->query("INSERT INTO themes (name, foldername) values ('Darkly (Dark)','darkly');"); - $this->db->query("INSERT INTO themes (name, foldername) values ('Default','default');"); - $this->db->query("INSERT INTO themes (name, foldername) values ('Superhero (Dark)','superhero');"); - } - } - - public function down(){ - - } -} diff --git a/application/migrations/077_add_userid_to_notes.php b/application/migrations/077_add_userid_to_notes.php deleted file mode 100644 index e15f30439..000000000 --- a/application/migrations/077_add_userid_to_notes.php +++ /dev/null @@ -1,21 +0,0 @@ -db->field_exists('user_id', 'notes')) { - $this->dbforge->add_column('notes', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('notes', 'user_id'); - } -} diff --git a/application/migrations/078_add_userid_to_hardware.php b/application/migrations/078_add_userid_to_hardware.php deleted file mode 100644 index 9edb4fd42..000000000 --- a/application/migrations/078_add_userid_to_hardware.php +++ /dev/null @@ -1,22 +0,0 @@ -db->field_exists('user_id', 'cat')) { - $this->dbforge->add_column('cat', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('cat', 'user_id'); - } -} diff --git a/application/migrations/079_add_userid_to_api.php b/application/migrations/079_add_userid_to_api.php deleted file mode 100644 index 0947b9214..000000000 --- a/application/migrations/079_add_userid_to_api.php +++ /dev/null @@ -1,21 +0,0 @@ -db->field_exists('user_id', 'api')) { - $this->dbforge->add_column('api', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('api', 'user_id'); - } -} diff --git a/application/migrations/080_update_cas9_qsos.php b/application/migrations/080_update_cas9_qsos.php deleted file mode 100644 index 1d86a82d2..000000000 --- a/application/migrations/080_update_cas9_qsos.php +++ /dev/null @@ -1,18 +0,0 @@ -db->set('COL_SAT_NAME', 'HO-113'); - $this->db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->where('COL_SAT_NAME', 'CAS-9'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/081_update_xw2_qsos.php b/application/migrations/081_update_xw2_qsos.php deleted file mode 100644 index 5201b5885..000000000 --- a/application/migrations/081_update_xw2_qsos.php +++ /dev/null @@ -1,18 +0,0 @@ -db->set('COL_SAT_NAME', 'HO-113'); - $this->db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->where('COL_SAT_NAME', 'XW-3(CAS-9)'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/082_add_reset_pass_to_users.php b/application/migrations/082_add_reset_pass_to_users.php deleted file mode 100644 index 27060f8a9..000000000 --- a/application/migrations/082_add_reset_pass_to_users.php +++ /dev/null @@ -1,36 +0,0 @@ -db->field_exists('reset_password_code', 'users')) { - $fields = array( - 'reset_password_code varchar(50) DEFAULT NULL', - ); - $this->dbforge->add_column('users', $fields); - } - - if (!$this->db->field_exists('reset_password_date', 'users')) { - $fields = array( - 'reset_password_date TIMESTAMP NULL DEFAULT NULL', - ); - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('users', 'reset_password_code'); - $this->dbforge->drop_column('users', 'reset_password_date'); - } -} diff --git a/application/migrations/083_create_station_logbook_relationship_table2.php b/application/migrations/083_create_station_logbook_relationship_table2.php deleted file mode 100644 index 8cf4cd084..000000000 --- a/application/migrations/083_create_station_logbook_relationship_table2.php +++ /dev/null @@ -1,91 +0,0 @@ -db->table_exists('station_logbooks')) { - $this->dbforge->add_field(array( - 'logbook_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'user_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'logbook_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '191', - 'null' => TRUE - ), - - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('logbook_id', TRUE); - $this->dbforge->add_key('user_id', TRUE); - - $this->dbforge->create_table('station_logbooks'); - } - - if (!$this->db->table_exists('station_logbooks_relationship')) { - $this->dbforge->add_field(array( - 'logbook_relation_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'station_logbook_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'station_location_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('logbook_relation_id', TRUE); - $this->dbforge->add_key('station_logbook_id', TRUE); - $this->dbforge->add_key('station_location_id', TRUE); - - $this->dbforge->create_table('station_logbooks_relationship'); - } - } - - public function down() - { - $this->dbforge->drop_table('station_logbooks_relationship'); - } -} \ No newline at end of file diff --git a/application/migrations/084_fix_collate.php b/application/migrations/084_fix_collate.php deleted file mode 100644 index c877dd9fd..000000000 --- a/application/migrations/084_fix_collate.php +++ /dev/null @@ -1,41 +0,0 @@ -config->item('table_name'), - 'adif_modes', - 'api', - 'cat', - 'config', - 'contest', - 'dxcc_entities', - 'dxcc_exceptions', - 'dxcc_prefixes', - 'eQSL_images', - 'iota', - 'lotw_certs', - 'migrations', - 'notes', - 'queries', - 'options', - 'qsl_images', - 'station_logbooks', - 'station_logbooks_relationship', - 'station_profile', - 'timezones', - 'users' - ); - foreach ($tables as $table) { - $this->db->query('ALTER TABLE ' . $table . ' CONVERT TO CHARACTER SET ' . $this->db->char_set . ' COLLATE ' . $this->db->dbcollat); - } - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/085_add_public_slug_to_stationlogbooks.php b/application/migrations/085_add_public_slug_to_stationlogbooks.php deleted file mode 100644 index e4967c85c..000000000 --- a/application/migrations/085_add_public_slug_to_stationlogbooks.php +++ /dev/null @@ -1,37 +0,0 @@ -db->table_exists('station_logbooks')) { - - $fields = array( - 'public_slug' => array( - 'type' => 'VARCHAR', - 'constraint' => '191', - 'null' => TRUE, - 'unique' => TRUE - ) - ); - - if (!$this->db->field_exists('public_slug', 'station_logbooks')) { - $this->dbforge->add_column('station_logbooks', $fields); - - $this->dbforge->add_key('public_slug'); - } - - } - } - - public function down() - { - $this->dbforge->drop_column('station_logbooks', 'public_slug'); - } -} \ No newline at end of file diff --git a/application/migrations/086_options_autoload_theme.php b/application/migrations/086_options_autoload_theme.php deleted file mode 100644 index 99e725744..000000000 --- a/application/migrations/086_options_autoload_theme.php +++ /dev/null @@ -1,24 +0,0 @@ -db->set('autoload', 'yes'); - $this->db->where('option_name', "theme"); - $this->db->update('options'); - } - - public function down() - { - $this->db->set('autoload', 'no'); - $this->db->where('option_name', "theme"); - $this->db->update('options'); - } -} \ No newline at end of file diff --git a/application/migrations/087_add_qrz_image_option.php b/application/migrations/087_add_qrz_image_option.php deleted file mode 100644 index 2abf6593f..000000000 --- a/application/migrations/087_add_qrz_image_option.php +++ /dev/null @@ -1,29 +0,0 @@ -db->field_exists('user_show_qrz_image', 'users')) { - $fields = array( - 'user_show_qrz_image BOOLEAN DEFAULT FALSE', - ); - $this->dbforge->add_column('users', $fields, 'user_column5'); - } - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_show_qrz_image'); - } -} diff --git a/application/migrations/088_add_power_to_cat.php b/application/migrations/088_add_power_to_cat.php deleted file mode 100644 index 4067a6d76..000000000 --- a/application/migrations/088_add_power_to_cat.php +++ /dev/null @@ -1,28 +0,0 @@ -db->field_exists('power', 'cat')) { - $fields = array( - 'power INT NULL DEFAULT 0', - ); - $this->dbforge->add_column('cat', $fields, 'sat_name'); - } - } - - public function down() - { - $this->dbforge->drop_column('cat', 'power'); - } -} diff --git a/application/migrations/089_add_propmode_to_cat.php b/application/migrations/089_add_propmode_to_cat.php deleted file mode 100644 index 66e851041..000000000 --- a/application/migrations/089_add_propmode_to_cat.php +++ /dev/null @@ -1,28 +0,0 @@ -db->field_exists('prop_mode', 'cat')) { - $fields = array( - 'prop_mode VARCHAR(10) DEFAULT NULL', - ); - $this->dbforge->add_column('cat', $fields, 'sat_name'); - } - } - - public function down() - { - $this->dbforge->drop_column('cat', 'propmode'); - } -} diff --git a/application/migrations/090_make_mode_frequency_null.php b/application/migrations/090_make_mode_frequency_null.php deleted file mode 100644 index 6d8a332e5..000000000 --- a/application/migrations/090_make_mode_frequency_null.php +++ /dev/null @@ -1,54 +0,0 @@ -db->field_exists('frequency', 'cat')) { - $fields = array( - 'frequency' => array( - 'type' => 'VARCHAR(10) NULL', - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - if ($this->db->field_exists('mode', 'cat')) { - $fields = array( - 'mode' => array( - 'type' => 'VARCHAR(10) NULL', - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('frequency', 'cat')) { - $fields = array( - 'frequency' => array( - 'type' => 'VARCHAR(10) NOT NULL', - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - if ($this->db->field_exists('mode', 'cat')) { - $fields = array( - 'mode' => array( - 'type' => 'VARCHAR(10) NOT NULL', - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - } -} diff --git a/application/migrations/091_create_thirdpartylogins_table.php b/application/migrations/091_create_thirdpartylogins_table.php deleted file mode 100644 index 0aaa04110..000000000 --- a/application/migrations/091_create_thirdpartylogins_table.php +++ /dev/null @@ -1,65 +0,0 @@ -db->table_exists('thirdparty_logins')) { - $this->dbforge->add_field(array( - 'service_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'user_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'service_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'service_password' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'active' => array( - 'type' => 'BOOLEAN', - 'null' => TRUE - ), - - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('service_id', TRUE); - $this->dbforge->add_key('user_id', TRUE); - - $this->dbforge->create_table('thirdparty_logins'); - } - } - - public function down() - { - $this->dbforge->drop_table('thirdparty_logins'); - } -} \ No newline at end of file diff --git a/application/migrations/092_add_service_username.php b/application/migrations/092_add_service_username.php deleted file mode 100644 index 4bddb112f..000000000 --- a/application/migrations/092_add_service_username.php +++ /dev/null @@ -1,34 +0,0 @@ -db->table_exists('thirdparty_logins')) { - - $fields = array( - 'service_username' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ) - ); - - if (!$this->db->field_exists('service_username', 'thirdparty_logins')) { - $this->dbforge->add_column('thirdparty_logins', $fields); - } - - } - } - - public function down() - { - $this->dbforge->drop_column('thirdparty_logins', 'service_username'); - } -} \ No newline at end of file diff --git a/application/migrations/093_rename_profile_images.php b/application/migrations/093_rename_profile_images.php deleted file mode 100644 index 8263efaa6..000000000 --- a/application/migrations/093_rename_profile_images.php +++ /dev/null @@ -1,34 +0,0 @@ -db->field_exists('user_show_qrz_image', 'users') && !$this->db->field_exists('user_show_profile_image', 'users')) { - $fields = array( - 'user_show_qrz_image' => [ 'name' => 'user_show_profile_image', 'type' => ' BOOLEAN DEFAULT FALSE', ] - ); - $this->dbforge->modify_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('user_show_profile_image', 'users')) { - $fields = array( - 'user_show_profile_image' => [ 'name' => 'user_show_qrz_image', 'type' => ' BOOLEAN DEFAULT FALSE', ] - ); - $this->dbforge->modify_column('users', $fields); - } - } -} diff --git a/application/migrations/094_update_modes_adif313.php b/application/migrations/094_update_modes_adif313.php deleted file mode 100644 index 0bcc827a4..000000000 --- a/application/migrations/094_update_modes_adif313.php +++ /dev/null @@ -1,113 +0,0 @@ - Import only - $this->db->set('active', 0); - $this->db->where('mode', 'C4FM'); - $this->db->update('adif_modes'); - - // deactivate DSTAR => Import only - $this->db->set('active', 0); - $this->db->where('mode', 'DSTAR'); - $this->db->update('adif_modes'); - - // insert new C4FM - $this->db->query("insert into adif_modes (mode,submode,qrgmode,active) values ('DIGITALVOICE','C4FM','DATA',1) -,('DIGITALVOICE','DMR','DATA',1) -,('DIGITALVOICE','DSTAR','DATA',1) -,('DYNAMIC',NULL,'DATA',1) -,('DYNAMIC','VARAHF','DATA',1) -,('DYNAMIC','VARASATELLITE','DATA',1) -,('DYNAMIC','VARAFM1200','DATA',1) -,('DYNAMIC','VARAFM9600','DATA',1) -,('DOMINO','DOM-M','DATA',1) -,('DOMINO','DOM4','DATA',1) -,('DOMINO','DOM5','DATA',1) -,('DOMINO','DOM8','DATA',1) -,('DOMINO','DOM11','DATA',1) -,('DOMINO','VARAFM9600','DATA',1) -,('DOMINO','DOM22','DATA',1) -,('DOMINO','DOM44','DATA',1) -,('DOMINO','DOM88','DATA',1) -,('HELL','HELLX5','DATA',1) -,('HELL','HELLX9','DATA',1) -,('HELL','SLOWHELL','DATA',1) -,('MFSK','FST4','DATA',1) -,('MFSK','FST4W','DATA',1) -,('MFSK','JTMS','DATA',1) -,('MFSK','Q65','DATA',1) -,('PSK','8PSK125','DATA',1) -,('PSK','8PSK125F','DATA',1) -,('PSK','8PSK125FL','DATA',1) -,('PSK','8PSK250','DATA',1) -,('PSK','8PSK250F','DATA',1) -,('PSK','8PSK250FL','DATA',1) -,('PSK','8PSK500','DATA',1) -,('PSK','8PSK500F','DATA',1) -,('PSK','8PSK1000','DATA',1) -,('PSK','8PSK1000F','DATA',1) -,('PSK','8PSK1200F','DATA',1) -,('PSK','PSK63F','DATA',1) -,('PSK','PSK63RC4','DATA',1) -,('PSK','PSK63RC5','DATA',1) -,('PSK','PSK63RC10','DATA',1) -,('PSK','PSK63RC20','DATA',1) -,('PSK','PSK63RC32','DATA',1) -,('PSK','PSK125C12','DATA',1) -,('PSK','PSK125R','DATA',1) -,('PSK','PSK125RC10','DATA',1) -,('PSK','PSK125RC12','DATA',1) -,('PSK','PSK125RC16','DATA',1) -,('PSK','PSK125RC4','DATA',1) -,('PSK','PSK125RC5','DATA',1) -,('PSK','PSK250C6','DATA',1) -,('PSK','PSK250R','DATA',1) -,('PSK','PSK250RC2','DATA',1) -,('PSK','PSK250RC3','DATA',1) -,('PSK','PSK250RC5','DATA',1) -,('PSK','PSK250RC6','DATA',1) -,('PSK','PSK250RC7','DATA',1) -,('PSK','PSK500C2','DATA',1) -,('PSK','PSK500C4','DATA',1) -,('PSK','PSK500R','DATA',1) -,('PSK','PSK500RC2','DATA',1) -,('PSK','PSK500RC3','DATA',1) -,('PSK','PSK500RC4','DATA',1) -,('PSK','PSK800C2','DATA',1) -,('PSK','PSK800RC2','DATA',1) -,('PSK','PSK1000C2','DATA',1) -,('PSK','PSK1000R','DATA',1) -,('PSK','PSK1000RC2','DATA',1) -,('THOR','THOR-M','DATA',1) -,('THOR','THOR4','DATA',1) -,('THOR','THOR5','DATA',1) -,('THOR','THOR8','DATA',1) -,('THOR','THOR11','DATA',1) -,('THOR','THOR16','DATA',1) -,('THOR','THOR22','DATA',1) -,('THOR','THOR25X4','DATA',1) -,('THOR','THOR50X1','DATA',1) -,('THOR','THOR50X2','DATA',1) -,('THOR','THOR100','DATA',1) -,('THRB','THRBX1','DATA',1) -,('THRB','THRBX2','DATA',1) -,('THRB','THRBX4','DATA',1) -,('THRB','THROB1','DATA',1) -,('THRB','THROB2','DATA',1) -,('THRB','THROB4','DATA',1) -,('TOR','NAVTEX','DATA',1) -,('TOR','SITORB','DATA',1)"); - - - - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/095_cat_change_timestamp.php b/application/migrations/095_cat_change_timestamp.php deleted file mode 100644 index c07a3b433..000000000 --- a/application/migrations/095_cat_change_timestamp.php +++ /dev/null @@ -1,26 +0,0 @@ -db->field_exists('timestamp', 'cat')) { - $this->db->query("ALTER TABLE `cat` CHANGE `timestamp` `timestamp` TIMESTAMP NULL DEFAULT NULL;"); - } - } - - public function down() - { - - } -} diff --git a/application/migrations/096_add_wwff_columns.php b/application/migrations/096_add_wwff_columns.php deleted file mode 100644 index ad7eca033..000000000 --- a/application/migrations/096_add_wwff_columns.php +++ /dev/null @@ -1,40 +0,0 @@ -db->field_exists('COL_WWFF_REF', $this->config->item('table_name'))) { - $fields = array( - 'COL_WWFF_REF VARCHAR(30) DEFAULT NULL', - 'COL_MY_WWFF_REF VARCHAR(50) DEFAULT NULL', - ); - $this->dbforge->add_column($this->config->item('table_name'), $fields, 'COL_VUCC_GRIDS'); - - // Now copy over data from SIG_INFO fields and remove COL_SIG and COL_SIG_INFO only if COL_SIG is WWFF - // This cannot be reverted on downgrade to prevent overwriting of other COL_SIG information - $this->db->set('COL_WWFF_REF', 'COL_SIG_INFO', FALSE); - $this->db->set('COL_SIG_INFO', ''); - $this->db->set('COL_SIG', ''); - $this->db->where('COL_SIG', 'WWFF'); - $this->db->update($this->config->item('table_name')); - - } - } - - public function down() - { - $this->dbforge->drop_column($this->config->item('table_name'), 'COL_WWFF_REF'); - $this->dbforge->drop_column($this->config->item('table_name'), 'COL_MY_WWFF_REF'); - } -} diff --git a/application/migrations/097_add_qso_dates_to_lotw_certs.php b/application/migrations/097_add_qso_dates_to_lotw_certs.php deleted file mode 100644 index 94cf35801..000000000 --- a/application/migrations/097_add_qso_dates_to_lotw_certs.php +++ /dev/null @@ -1,45 +0,0 @@ -db->field_exists('qso_start_date', 'lotw_certs')) { - $fields = array( - 'qso_end_date DATETIME NULL DEFAULT NULL AFTER `date_expires`', - 'qso_start_date DATETIME NULL DEFAULT NULL AFTER `date_expires`', - ); - $this->dbforge->add_column('lotw_certs', $fields); - } - - // Extract QSO start and end date from x509 certs and insert into - // newly created columns - - $query = $this->db->query("SELECT `lotw_cert_id`, `cert` FROM `lotw_certs` WHERE 1"); - foreach ($query->result() as $cert) { - $certdata = openssl_x509_parse($cert->cert,0); - $data = array( - 'qso_start_date' => $certdata['extensions']['1.3.6.1.4.1.12348.1.2'], - 'qso_end_date' => $certdata['extensions']['1.3.6.1.4.1.12348.1.3'], - ); - $this->db->where('lotw_cert_id', $cert->lotw_cert_id); - $this->db->update('lotw_certs', $data); - } - } - - public function down() - { - $this->dbforge->drop_column('lotw_certs', 'qso_start_date'); - $this->dbforge->drop_column('lotw_certs', 'qso_end_date'); - } -} diff --git a/application/migrations/098_add_band_bandxuser.php b/application/migrations/098_add_band_bandxuser.php deleted file mode 100644 index 36a3a47ab..000000000 --- a/application/migrations/098_add_band_bandxuser.php +++ /dev/null @@ -1,184 +0,0 @@ -db->table_exists('bands')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'band' => array( - 'type' => 'VARCHAR', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'bandgroup' => array( - 'type' => 'VARCHAR', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'ssb' => array( - 'type' => 'bigint', - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'data' => array( - 'type' => 'bigint', - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'cw' => array( - 'type' => 'bigint', - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ) - )); - - $this->dbforge->add_key('id', TRUE); - - $this->dbforge->create_table('bands'); - - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('160m', 'hf', '1900000', '1838000', '1830000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('80m', 'hf', '3700000', '3583000', '3550000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('60m', 'hf', '5330000', '5330000', '5260000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('40m', 'hf', '7100000', '7040000', '7020000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('30m', 'hf', '10120000', '10145000', '10120000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('20m', 'hf', '14200000', '14080000', '14020000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('17m', 'hf', '18130000', '18105000', '18080000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('15m', 'hf', '21300000', '21080000', '21020000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('12m', 'hf', '24950000', '24925000', '24900000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('10m', 'hf', '28300000', '28120000', '28050000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('6m', 'vhf', '50150000', '50230000', '50090000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('4m', 'vhf', '70200000', '70200000', '70200000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('2m', 'vhf', '144300000', '144370000', '144050000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('1.25m', 'vhf', '222100000', '222100000', '222100000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('70cm', 'uhf', '432200000', '432088000', '432050000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('33cm', 'uhf', '902100000', '902100000', '902100000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('23cm', 'shf', '1296000000', '1296138000', '129600000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('13cm', 'shf', '2320800000', '2320800000', '2320800000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('9cm', 'shf', '3410000000', '3410000000', '3400000000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('6cm', 'shf', '5670000000', '5670000000', '5670000000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('3cm', 'shf', '10225000000', '10225000000', '10225000000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('1.25cm', 'shf', '24000000000', '24000000000', '240000000000');"); - $this->db->query("INSERT INTO bands (band, bandgroup, ssb, data, cw) values ('SAT', 'sat', 0, 0, 0);"); - } - - if (!$this->db->table_exists('bandxuser')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'bandid' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'userid' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'active' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'cq' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'dok' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'dxcc' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'iota' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'sig' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'sota' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'uscounties' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'was' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'vucc' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - )); - - $this->dbforge->add_key('id', TRUE); - - $this->dbforge->create_table('bandxuser'); - - $this->db->query("insert into bandxuser (bandid, userid, active, cq, dok, dxcc, iota, sig, sota, uscounties, was, vucc) select bands.id, users.user_id, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 from bands join users on 1 = 1;"); - } - } - - public function down() - { - $this->dbforge->drop_table('bandxuser'); - $this->dbforge->drop_table('bands'); - } -} diff --git a/application/migrations/099_add_wwff_to_bandxuser.php b/application/migrations/099_add_wwff_to_bandxuser.php deleted file mode 100644 index 8faa8333c..000000000 --- a/application/migrations/099_add_wwff_to_bandxuser.php +++ /dev/null @@ -1,26 +0,0 @@ -db->field_exists('wwff', 'bandxuser')) { - $fields = array( - 'wwff' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - ), - ); - $this->dbforge->add_column('bandxuser', $fields); - - $this->db->query("update bandxuser set wwff = 1"); - } - } - - public function down() - { - $this->dbforge->drop_column('bandxuser', 'wwff'); - } -} diff --git a/application/migrations/100_update_cat_table.php b/application/migrations/100_update_cat_table.php deleted file mode 100644 index e88213c78..000000000 --- a/application/migrations/100_update_cat_table.php +++ /dev/null @@ -1,86 +0,0 @@ -db->table_exists('cat')) { - if ($this->db->field_exists('uplink_freq', 'cat')) { - $this->dbforge->drop_column('cat', 'uplink_freq'); - } - if ($this->db->field_exists('uplink_mode', 'cat')) { - $this->dbforge->drop_column('cat', 'uplink_mode'); - } - if ($this->db->field_exists('downlink_freq', 'cat')) { - - $fields = array( - - 'downlink_freq' => array( - 'name' => 'frequency_rx', - 'type' => 'BIGINT', - 'constraint' => '13', - ), - ); - $this->dbforge->modify_column('cat', $fields); - - } - if ($this->db->field_exists('downlink_mode', 'cat')) { - $fields = array( - - 'downlink_mode' => array( - 'name' => 'mode_rx', - 'type' => 'VARCHAR', - 'constraint' => '10', - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - } - } - - public function down() - { - if ($this->db->table_exists('cat')) { - if ($this->db->field_exists('frequency_rx', 'cat')) { - $fields = array( - 'frequency_rx' => array( - 'name' => 'downlink_freq', - 'type' => 'BIGINT', - 'null' => TRUE, - 'default' => NULL, - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - if ($this->db->field_exists('mode_rx', 'cat')) { - $fields = array( - 'mode_rx' => array( - 'name' => 'downlink_mode', - 'type' => 'VARCHAR(255)', - 'null' => TRUE, - 'default' => NULL, - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - if (!$this->db->field_exists('uplink_freq', 'cat')) { - $fields = array( - 'uplink_freq bigint(13) DEFAULT NULL AFTER `downlink_freq`', - ); - $this->dbforge->add_column('cat', $fields); - } - if (!$this->db->field_exists('uplink_mode', 'cat')) { - $fields = array( - 'uplink_mode varchar(255) DEFAULT NULL AFTER `downlink_mode`', - ); - $this->dbforge->add_column('cat', $fields); - } - } - } -} diff --git a/application/migrations/101_make_frequency_bigint_again.php b/application/migrations/101_make_frequency_bigint_again.php deleted file mode 100644 index 275c7bdd7..000000000 --- a/application/migrations/101_make_frequency_bigint_again.php +++ /dev/null @@ -1,45 +0,0 @@ -db->table_exists('cat')) { - if ($this->db->field_exists('frequency', 'cat')) { - $fields = array( - 'frequency' => array( - 'name' => 'frequency', - 'type' => 'BIGINT', - 'null' => TRUE, - 'default' => NULL, - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - } - } - - public function down() - { - if ($this->db->table_exists('cat')) { - if ($this->db->field_exists('frequency', 'cat')) { - $fields = array( - 'frequency' => array( - 'name' => 'frequency', - 'type' => 'VARCHAR(10)', - 'null' => TRUE, - 'default' => NULL, - ), - ); - $this->dbforge->modify_column('cat', $fields); - } - } - } -} diff --git a/application/migrations/102_add_version_two_trigger_to_options.php b/application/migrations/102_add_version_two_trigger_to_options.php deleted file mode 100644 index c63c3c92a..000000000 --- a/application/migrations/102_add_version_two_trigger_to_options.php +++ /dev/null @@ -1,29 +0,0 @@ - "version2_trigger", 'option_value' => "false", 'autoload' => "yes"), - ); - - $query = $this->db->select('option_name')->where('option_name', 'version2_trigger')->get('options'); - if($query->num_rows() == 0) { - $this->db->insert_batch('options', $data); - } - - } - - public function down() - { - // No option to down - } -} \ No newline at end of file diff --git a/application/migrations/103_add_user_wwff_lookup.php b/application/migrations/103_add_user_wwff_lookup.php deleted file mode 100644 index 0c8ee72e7..000000000 --- a/application/migrations/103_add_user_wwff_lookup.php +++ /dev/null @@ -1,29 +0,0 @@ -db->field_exists('user_wwff_lookup', 'users')) { - $fields = array( - 'user_wwff_lookup integer DEFAULT 0 AFTER user_sota_lookup', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('user_wwff_lookup', 'users')) { - $this->dbforge->drop_column('users', 'user_wwff_lookup'); - } - } -} diff --git a/application/migrations/104_user_auto_qth_option.php b/application/migrations/104_user_auto_qth_option.php deleted file mode 100644 index 053594a18..000000000 --- a/application/migrations/104_user_auto_qth_option.php +++ /dev/null @@ -1,29 +0,0 @@ -db->field_exists('user_qth_lookup', 'users')) { - $fields = array( - 'user_qth_lookup integer DEFAULT 0 AFTER user_wwff_lookup', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('user_qth_lookup', 'users')) { - $this->dbforge->drop_column('users', 'user_qth_lookup'); - } - } -} diff --git a/application/migrations/105_create_dxcc_master_tables.php b/application/migrations/105_create_dxcc_master_tables.php deleted file mode 100644 index bd78dbe22..000000000 --- a/application/migrations/105_create_dxcc_master_tables.php +++ /dev/null @@ -1,1052 +0,0 @@ -db->table_exists('dxcc_master')) { - $this->db->query("CREATE TABLE `dxcc_master` ( - `DXCCPrefix` varchar(6) DEFAULT NULL, - `DXCCSearch` varchar(6) DEFAULT NULL, - `DXCCMap` varchar(6) DEFAULT NULL, - `DXCCSort` int(11) DEFAULT 0, - `CountryCode` int(11) DEFAULT 0, - `PrefixList` longtext DEFAULT NULL, - `DXCCName` varchar(30) DEFAULT NULL, - `Location` varchar(40) DEFAULT NULL, - `Continent` varchar(2) DEFAULT NULL, - `CQZone` varchar(2) DEFAULT NULL, - `ITUZone` varchar(2) DEFAULT NULL, - `IOTA` varchar(10) DEFAULT NULL, - `TimeZone` float DEFAULT NULL, - `Latitude` double DEFAULT NULL, - `Longitude` double DEFAULT NULL, - `StartDate` datetime DEFAULT NULL, - `EndDate` datetime DEFAULT NULL, - INDEX (`CountryCode`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;"); - - $this->db->query("INSERT INTO `dxcc_master` (DXCCPrefix,DXCCSearch,DXCCMap,DXCCSort,CountryCode,PrefixList,DXCCName,Location,Continent,CQZone,ITUZone,IOTA,TimeZone,Latitude,Longitude,StartDate,EndDate) VALUES - ('3',NULL,NULL,1,93,'~3,~1G9','Geyser Reef','Geyser Reef','AF','39','53',NULL,NULL,NULL,NULL,'1967-05-04 00:00:00.000','1978-02-28 00:00:00.000'), - ('4',NULL,NULL,1,2,'~4,~A1','Abu Ail Islands','Abu Ail Islands','AS','21','39',NULL,NULL,NULL,NULL,NULL,'1991-03-30 00:00:00.000'), - ('1M',NULL,NULL,1,178,'~1M','Minerva Reef','Minerva Reef','OC','32','62',NULL,NULL,NULL,NULL,NULL,'1972-07-15 00:00:00.000'), - ('4WY',NULL,NULL,1,154,'~4W','Yemen Arab Republic','Yemen Arab Republic','AS','21','39',NULL,NULL,NULL,NULL,NULL,'1990-05-21 00:00:00.000'), - ('7J1',NULL,NULL,1,194,'~7J1','Okino Tori-shima','Okino Tori-shima','AS','27','45',NULL,NULL,NULL,NULL,'1976-05-30 00:00:00.000','1980-11-30 00:00:00.000'), - ('8Z4',NULL,NULL,1,226,'~8Z4','Saudi Arabia/Iraq Neutral Zone','Saudi Arabia/Iraq Neutral Zone','AS','21','39',NULL,NULL,NULL,NULL,NULL,'1981-12-25 00:00:00.000'), - ('8Z5',NULL,NULL,1,68,'~8Z5,~9K3','Kuwait/Saudi Arabia NZ','Kuwait/Saudi Arabia Neutral Zone','AS','21','39',NULL,NULL,NULL,NULL,NULL,'1969-12-14 00:00:00.000'), - ('9S4',NULL,NULL,1,210,'~9S4','Saar','Saar','EU','14','28',NULL,NULL,NULL,NULL,NULL,'1957-03-31 00:00:00.000'), - ('9U5',NULL,NULL,1,208,'~9U5','Ruanda-Urundi','Ruanda-Urundi','AF','36','52',NULL,NULL,NULL,NULL,'1960-07-01 00:00:00.000','1962-06-30 00:00:00.000'), - ('AC3',NULL,NULL,1,231,'~AC3','Sikkim','Sikkim','AS','22','41',NULL,NULL,NULL,NULL,NULL,'1975-04-30 00:00:00.000'), - ('AC4',NULL,NULL,1,268,'~AC4','Tibet','Tibet','AS','23','41',NULL,NULL,NULL,NULL,NULL,'1974-05-30 00:00:00.000'), - ('C9M',NULL,NULL,1,164,'~C9M','Manchuria','Manchuria','AS','24','33',NULL,NULL,NULL,NULL,NULL,'1963-09-15 00:00:00.000'), - ('CN2',NULL,NULL,1,264,'~CN2','Tangier','Tangier','AF','33','37',NULL,NULL,NULL,NULL,NULL,'1960-06-30 00:00:00.000'), - ('CR8D',NULL,NULL,1,42,'~CR8D','Damao, Diu','Damao, Diu','AS','22','41',NULL,NULL,NULL,NULL,NULL,'1961-12-31 00:00:00.000'), - ('CR8G',NULL,NULL,1,101,'~CR8G','Goa','Goa','AS','22','41',NULL,NULL,NULL,NULL,NULL,'1961-12-31 00:00:00.000'), - ('CR8T',NULL,NULL,1,200,'~CR8T','Portuguese Timor','Portuguese Timor','OC','28','54',NULL,NULL,NULL,NULL,NULL,'1976-09-14 00:00:00.000'), - ('EA9I',NULL,NULL,1,113,'~EA9I','Ifni','Ifni','AF','33','37',NULL,NULL,NULL,NULL,NULL,'1969-05-13 00:00:00.000'), - ('FF',NULL,NULL,1,59,'~FF','French West Africa','French West Africa','AF','35','46',NULL,NULL,NULL,NULL,NULL,'1960-08-06 00:00:00.000'), - ('FH8',NULL,NULL,1,39,'~FH8','Comoro Islands','Comoros (French)','AF','39','53',NULL,NULL,NULL,NULL,NULL,'1975-07-05 00:00:00.000'), - ('FI8',NULL,NULL,1,58,'~FI8','French Indo-China','French Indo-China','AS','26','49',NULL,NULL,NULL,NULL,NULL,'1950-12-20 00:00:00.000'), - ('FN8',NULL,NULL,1,67,'~FN8','French India','French India','AS','22','41',NULL,NULL,NULL,NULL,NULL,'1954-10-31 00:00:00.000'), - ('FQ8',NULL,NULL,1,57,'~FQ8','French Equatorial Africa','French Equatorial Africa','AF','36',NULL,NULL,NULL,NULL,NULL,NULL,'1960-08-16 00:00:00.000'), - ('HK0B',NULL,NULL,1,19,'~HK0B','Bajo Nuevo','Bajo Nuevo','NA','8','11',NULL,NULL,NULL,NULL,NULL,'1981-09-16 00:00:00.000'), - ('HK0S',NULL,NULL,1,228,'~HK0S','Serrana Bank & Roncador Cay','Serrana Bank & Roncador Cay','NA','7','11',NULL,NULL,NULL,NULL,NULL,'1981-09-16 00:00:00.000'), - ('I1',NULL,NULL,1,271,'~I1','Trieste','Trieste','EU','15','28',NULL,NULL,NULL,NULL,NULL,'1957-03-31 00:00:00.000'), - ('I5',NULL,NULL,1,115,'~I5','Italian Somaliland','Italian Somaliland','AF','37','48',NULL,NULL,NULL,NULL,NULL,'1960-06-30 00:00:00.000'), - ('JZ0',NULL,NULL,1,184,'~JZ0','Netherlands New Guinea','Netherlands New Guinea','OC','28','51',NULL,NULL,NULL,NULL,NULL,'1963-04-30 00:00:00.000'), - ('KR6',NULL,NULL,1,193,'~KR6','Okinawa','Ryukyu Island','AS','25','45',NULL,NULL,NULL,NULL,NULL,'1972-05-14 00:00:00.000'), - ('KS4',NULL,NULL,1,261,'~KS4','Swan Island','Swan Island','NA','7','11',NULL,NULL,NULL,NULL,NULL,'1972-08-31 00:00:00.000'), - ('P2P',NULL,NULL,1,198,'~P2P','Papua Territory','Papua Territory','OC','28','51',NULL,NULL,NULL,NULL,NULL,'1975-09-15 00:00:00.000'), - ('P2G',NULL,NULL,1,267,'~P2G','Territory of New Guinea','Territory of New Guinea','OC','28','51',NULL,NULL,NULL,NULL,NULL,'1975-09-15 00:00:00.000'), - ('PK1',NULL,NULL,1,119,'~PK1','Java','Java','OC','28','54',NULL,NULL,NULL,NULL,NULL,'1963-04-30 00:00:00.000'), - ('PK4',NULL,NULL,1,258,'~PK4','Sumatra','Sumatra','OC','28','54',NULL,NULL,NULL,NULL,NULL,'1963-04-30 00:00:00.000'), - ('PK5',NULL,NULL,1,183,'~PK5','Netherlands Borneo','Netherlands Borneo','OC','28','54',NULL,NULL,NULL,NULL,NULL,'1963-04-30 00:00:00.000'), - ('PK6',NULL,NULL,1,30,'~PK6','Celebes & Molucca Islands','Celebe and Molucca Islands','OC','28','54',NULL,NULL,NULL,NULL,NULL,'1963-04-30 00:00:00.000'), - ('UN1',NULL,NULL,1,128,'~UN1','Karelo-Finnish Rep.','Karelo-Finnish Rep.','EU','16','19',NULL,NULL,NULL,NULL,NULL,'1960-06-30 00:00:00.000'), - ('VO',NULL,NULL,1,186,'~VO','Newfoundland and Labrador','Newfoundland and Labrador','NA',NULL,'9',NULL,NULL,NULL,NULL,NULL,'1949-03-31 00:00:00.000'), - ('VQ1',NULL,NULL,1,307,'~VQ1','Zanzibar','Zanzibar','AF','37','53',NULL,NULL,NULL,NULL,NULL,'1974-05-31 00:00:00.000'), - ('VQ6',NULL,NULL,1,26,'~VQ6','British Somaliland','British Somaliland','AF','37','48',NULL,NULL,NULL,NULL,NULL,'1960-06-30 00:00:00.000'), - ('VQ9A',NULL,NULL,1,8,'~VQ9A','Aldabra','Aldabra','AF','39','53',NULL,NULL,NULL,NULL,NULL,'1976-06-28 00:00:00.000'), - ('VQ9D',NULL,NULL,1,44,'~VQ9D','Desroches','Desroches','AF','39','53',NULL,NULL,NULL,NULL,NULL,'1976-06-28 00:00:00.000'), - ('VQ9F',NULL,NULL,1,55,'~VQ9F','Farquhar','Farquhar','AF','39','53',NULL,NULL,NULL,NULL,NULL,'1976-06-28 00:00:00.000'), - ('VS2',NULL,NULL,1,155,'~VS2','Malaya','Malaya','AS','28','54',NULL,NULL,NULL,NULL,NULL,'1963-09-15 00:00:00.000'), - ('VS4',NULL,NULL,1,220,'~VS4','Sarawak','Sarawak','OC','28','54',NULL,NULL,NULL,NULL,NULL,'1963-09-15 00:00:00.000'), - ('VS9A',NULL,NULL,1,243,'~VS9A','People''s Dem Rep of Yemen','Peoples Democratic Republic of Yemen','AS','21','39',NULL,NULL,NULL,NULL,NULL,'1990-05-21 00:00:00.000'), - ('VS9H',NULL,NULL,1,139,'~VS9H','Kuria Muria Island','Kuria Muria Island','AS','21','39',NULL,NULL,NULL,NULL,NULL,'1967-11-29 00:00:00.000'), - ('VS9K',NULL,NULL,1,127,'~VS9K','Kamaran Islands','Kamaran Island','AS','21','39',NULL,NULL,NULL,NULL,NULL,'1982-03-10 00:00:00.000'), - ('ZC5',NULL,NULL,1,25,'~ZC5','British North Borneo','British North Borneo','OC','28','54',NULL,NULL,NULL,NULL,NULL,'1963-09-15 00:00:00.000'), - ('ZC6',NULL,NULL,1,196,'~ZC6','Palestine (British)','Palestine (British)','AS','20','39',NULL,NULL,NULL,NULL,NULL,'1968-06-30 00:00:00.000'), - ('ZD4',NULL,NULL,1,102,'~ZD4','Gold Coast/Togoland','Gold Coast & Togoland','AF','35','46',NULL,NULL,NULL,NULL,NULL,'1957-03-05 00:00:00.000'), - ('1A','1A','1A',1,246,'1A','Sov. Military Order Of Malta','Sovereign Military Order Of Malta','EU','15','28','',-1.0,41.9051,12.4809,NULL,NULL), - ('1S','1S','1S',1,247,'1S,9M0,9M7,9W0,9W7,BV9S,DU0K,DX0','Spratly Islands','Spratly Island','AS','26','50','AS-051',-8.0,7.372157,113.842992,NULL,NULL), - ('3A','3A','3A',1,260,'3A','Monaco','Monaco','EU','14','27',NULL,-1.0,43.733,7.42,NULL,NULL), - ('3B6','3B6','3B6',2,4,'3b6','Agalega & St Brandon Islands','Agalega Islands','AF','39','53','AF-001',-4.0,-10.3883,56.6165,NULL,NULL), - ('3B8','3B8','3B8',1,165,'3B8,3B','Mauritius Island','Mauritius Island','AF','39','53','AF-049',-4.0,-20.1647,57.5,NULL,NULL), - ('3B9','3B9','3B9',1,207,'3B9','Rodriguez Island','Rodriguez Island','AF','39','53','AF-017',-4.0,-19.7111,63.4333,NULL,NULL), - ('3C','3C','3C',1,49,'3C','Equatorial Guinea','Equatorial Guinea','AF','36','47',NULL,-1.0,1.6667,10.0,NULL,NULL), - ('3C0','3C0','3C0',1,195,'3C0','Annobon','Annobon Island','AF','36','52','AF-039',-1.0,-1.4333,5.6333,NULL,NULL), - ('3D2-C','3D2','3D2-F',1,489,'3D2-C, 3D2C','Conway Reef','Conway Reef','OC','32','56','OC-112',-12.0,-21.7799,174.7815,NULL,NULL), - ('3D2-F','3D2','3D2-F',1,176,'3D2,3D[N-Z],3D2-F','Fiji Islands','Fiji Islands','OC','32','56',NULL,-12.0,-17.8,178.0,NULL,NULL), - ('3D2-R','3D2','3D2-F',1,460,'3D2-R','Rotuma','Rotuma Island','OC','32','56','OC-060',-12.0,-12.5,177.1,NULL,NULL), - ('3DA','3DA','3DA',1,468,'3D[A-M],3D6','Swaziland','Swaziland','AF','38','57',NULL,-2.0,-26.5,31.3833,NULL,NULL), - ('3V','3V','3V',1,474,'3V,TS','Tunisia','Tunisia','AF','33','37',NULL,-1.0,36.8333,10.167,NULL,NULL), - ('3W','3W','3W',1,293,'3W,XV','Viet Nam','Vietnam','AS','26','49',NULL,-7.0,16.0667,108.1667,NULL,NULL), - ('3X','3X','3X',1,107,'3X','Guinea','Republic Of Guinea','AF','35','46',NULL,0.0,9.5375,-13.6792,NULL,NULL), - ('3Y-B','3Y','3Y-B',1,24,'3Y-B,3Y5,3Y','Bouvet Island','Bouvet Island','AF','38','67','AN-002',0.0,-55.4167,3.3667,NULL,NULL), - ('3Y-P','3Y','3Y-P',1,199,'3Y-P,3Y0PI,3Y0X','Peter 1 Island','Peter I Island','AN','12','72','AN-004',6.0,-68.8333,-90.58333,NULL,NULL), - ('4J','4J','4J',1,18,'4J,4K','Azerbaijan','Azerbaijan','AS','21','29',NULL,-4.0,40.5,48.0,NULL,NULL), - ('R1M','UA','UA',1,151,'~R1M','Malyj Vysotski Island','Malyj Vysotski Island ','EU','16','29','EU-117',-4.0,61.0,29.0,NULL,'2012-02-16 00:00:00.000'), - ('R1F','UA','UA',1,61,'RI1F,R1FJ,R1F','Franz Josef Land','Franz Josef Land ','EU','40','75','EU-019',-4.0,80.8,47.6667,NULL,NULL), - ('4L','4L','4L',3,75,'4L#Q,4L#R,4L#S','Georgia','Adjaria','AS','21','29',NULL,-4.0,42.0,45.0,NULL,NULL), - ('4L','4L','4L',2,75,'4L#V,4L#W,4L#X','Georgia','Abkhazian','AS','21','29',NULL,-4.0,41.7,44.8,NULL,NULL), - ('4S','4S','4S',1,315,'4[P-S]','Sri Lanka','Sri Lanka','AS','22','41',NULL,-5.5,7.0,80.0,NULL,NULL), - ('4U1I','4U1I','HB',1,117,'4U#I,4U#W','ITU HQ','ITU (Switzerland)','EU','14','28',NULL,-1.0,46.2208,6.1369,NULL,NULL), - ('4U1U','4U1U','K',1,289,'4U#U','United Nations HQ','United Nations (New York)','NA','5','8',NULL,5.0,40.7489,-73.9681,NULL,NULL), - ('4X','4X','4X',1,336,'4X,4Z','Israel','Israel','AS','20','39',NULL,-2.0,31.7781,35.2352,NULL,NULL), - ('FO-A','F','FO-F',1,508,'FO-A','Austral Islands','Austral Islands','OC','32','63',NULL,10.0,-23.3667,-149.5,'1998-04-01 00:00:00.000',NULL), - ('5A','5A','5A',1,436,'5A','Libya','Libya','AF','34','38',NULL,-2.0,32.875,13.175,NULL,NULL), - ('5B','5B','5B',1,215,'5B,H2,P3,C4','Cyprus','Cyprus','AS','20','39','',-2.0,35.0,33.0,NULL,NULL), - ('5H','5H','5H',1,470,'5H,5I','Tanzania','Tanzania','AF','37','53',NULL,-3.0,-6.1584,35.7225,NULL,NULL), - ('5N','5N','5N',1,450,'5N,5O','Nigeria','Nigeria','AF','35','46',NULL,-1.0,9.0667,7.4792,NULL,NULL), - ('5R','5R','5R',1,438,'5R,5S,6X','Madagascar','Madagascar','AF','39','53','AF-013',-3.0,-19.0,47.0,NULL,NULL), - ('5T','5T','5T',1,444,'5T','Mauritania','Mauritania','AF','35','46',NULL,0.0,18.0983,-16.0222,'1960-06-20 00:00:00.000',NULL), - ('5U','5U','5U',1,187,'5U','Niger','Niger','AF','35','46',NULL,-1.0,13.5117,2.1167,'1960-08-03 00:00:00.000',NULL), - ('5V','5V','5V',1,483,'5V','Togo','Togo','AF','35','46',NULL,0.0,6.1667,1.2,NULL,NULL), - ('5W','5W','5W',1,190,'5W','Samoa','Western Samoa','OC','32','62','OC-097',11.0,-13.85,-171.75,NULL,NULL), - ('5X','5X','5X',1,286,'5X','Uganda','Uganda','AF','37','48',NULL,-3.0,1.3167,32.5833,NULL,NULL), - ('5Z','5Z','5Z',1,430,'5Z,5Y','Kenya','Kenya','AF','37','48',NULL,-3.0,-1.2917,36.8222,NULL,NULL), - ('6W','6W','6W',1,456,'6W,6V','Senegal','Senegal','AF','35','46',NULL,0.0,14.76,-17.3667,'1960-06-20 00:00:00.000',NULL), - ('6Y','6Y','6Y',1,82,'6Y','Jamaica','Jamaica','NA','8','11','NA-097',5.0,18.1,-77.3,NULL,NULL), - ('7O','7O','7O',1,492,'7O','Yemen','Yemen','AS','21','39',NULL,-3.0,13.0,45.0,'1990-05-22 00:00:00.000',NULL), - ('7O','7O','7O',2,492,'7O','Yemen','Socotra','AF','37','48','AF-028',-3.0,12.0,52.0,'1990-05-22 00:00:00.000',NULL), - ('7P','7P','7P',1,432,'7P','Lesotho','Lesotho','AF','38','57',NULL,-2.0,-30.0,28.0,NULL,NULL), - ('7Q','7Q','7Q',1,440,'7Q','Malawi','Malawi','AF','37','53',NULL,-2.0,-13.9833,33.7833,NULL,NULL), - ('7X','7X','7X',1,400,'7R,7[T-Y] ','Algeria','Algeria','AF','33','37',NULL,0.0,36.75,3.0417,NULL,NULL), - ('8P','8P','8P',1,62,'8P','Barbados','Barbados','NA','8','11','NA-021',4.0,13.16,-59.5,NULL,NULL), - ('8Q','8Q','8Q',1,159,'8Q','Maldives','Maldive Islands','AS','22','41','AS-013',-5.0,4.1742,73.5111,NULL,NULL), - ('8R','8R','8R',1,129,'8R','Guyana','Guyana','SA','9','12',NULL,3.0,6.8,-58.1667,NULL,NULL), - ('9A','9A','9A',1,497,'9A','Croatia','Croatia','EU','15','28',NULL,-1.0,45.7667,15.975,'1991-06-26 00:00:00.000',NULL), - ('9G','9G','9G',1,424,'9G','Ghana','Ghana','AF','35','46',NULL,0.0,8.0,-1.0,'1957-03-05 00:00:00.000',NULL), - ('9H','9H','9H',1,257,'9H','Malta','Malta','EU','15','28','EU-023',-1.0,35.88,14.5,NULL,NULL), - ('9J','9J','9J',1,482,'9J,9I','Zambia','Zambia','AF','36','53',NULL,-2.0,-15.4333,28.2833,NULL,NULL), - ('9K','9K','9K',1,348,'9K','Kuwait','Kuwait','AS','21','39',NULL,-3.0,29.3667,47.9833,NULL,NULL), - ('9L','9L','9L',1,458,'9L','Sierra Leone','Sierra Leone','AF','35','46',NULL,0.0,8.4833,-13.2289,NULL,NULL), - ('9M2','9M2','9M',1,299,'9M2,9M4,9M,9W2,9W4','West Malaysia','West Malaysia','AS','28','54',NULL,-8.0,3.0,102.0,'1963-09-16 00:00:00.000',NULL), - ('9M6','9M6','9M',1,46,'9M6,9M8,9W6,9W8','East Malaysia','East Malaysia','OC','28','54',NULL,-8.0,4.0,115.0,'1963-09-16 00:00:00.000',NULL), - ('9N','9N','9N',1,369,'9N','Nepal','Nepal','AS','22','42',NULL,-5.75,27.7,85.333,NULL,NULL), - ('9Q','9Q','9Q',1,414,'9[O-T],4U9Q','Dem. Republic of the Congo','Democratic Republic of the Congo','AF','36','52',NULL,-2.0,-4.3333,15.3167,NULL,NULL), - ('9U','9U','9U',1,404,'9U','Burundi','Burundi','AF','36','52',NULL,-2.0,-3.3833,29.35,'1962-07-01 00:00:00.000',NULL), - ('9V','9V','9V',1,381,'9V,S6','Singapore','Singapore','AS','28','54','AS-019',-7.0,1.4,103.8,NULL,NULL), - ('9X','9X','9X',1,454,'9X','Rwanda','Rwanda','AF','36','52',NULL,-2.0,-1.95,30.0833,'1962-07-01 00:00:00.000',NULL), - ('9Y','9Y','9Y',1,90,'9Y,9Z','Trinidad & Tobago','Trinidad & Tobago','SA','9','11',NULL,4.0,10.5,-61.25,NULL,NULL), - ('A2','A2','A2',1,402,'A2,8O','Botswana','Botswana','AF','38','57',NULL,-2.0,-24.65,25.9,NULL,NULL), - ('A3','A3','A3',1,160,'A3','Tonga','Tonga Islands','OC','32','62',NULL,-13.0,-21.16,-175.2,NULL,NULL), - ('A4','A4','A4',1,370,'A4','Oman','Oman','AS','21','39',NULL,-4.0,23.4,58.5,NULL,NULL), - ('A5','A5','A5',1,306,'A5','Bhutan','Bhutan','AS','22','41',NULL,-5.5,27.4333,89.6667,NULL,NULL), - ('A6','A6','A6',1,391,'A6','United Arab Emirates','United Arab Emirirates','AS','21','39',NULL,-4.0,24.4667,54.3667,NULL,NULL), - ('A7','A7','A7',1,376,'A7','Qatar','Qatar','AS','21','39','',-3.0,25.2833,51.5,NULL,NULL), - ('A9','A9','A9',1,304,'A9','Bahrain','Bahrain','AS','21','39','AS-002',-3.0,26.1667,50.55,NULL,NULL), - ('AP','AP','AP',1,372,'A[P-S],6[P-S]','Pakistan','Pakistan','AS','21','41',NULL,-5.0,30.0,70.0,NULL,NULL), - ('BS7','BY','BS7',1,506,'BS7','Scarborough Reef','Scarborough Reef','AS','27','50','AS-116',-8.0,15.1833,117.7667,'1995-01-01 00:00:00.000',NULL), - ('BV','BV','BV',1,386,'B[M-Q;U-X]','Taiwan','Taiwan','AS','24','44',NULL,-8.0,23.75,121.0,NULL,NULL), - ('BV9P','BV','BV9P',1,505,'BV9P, BQ9P','Pratas Island','Pratas Island','AS','24','44',NULL,-8.0,20.7011,116.7292,'1994-01-01 00:00:00.000',NULL), - ('BY','BY','BY',1,318,'B,XS,3[H-U]','China','China','AS','24',NULL,NULL,-8.0,31.0,104.0,NULL,NULL), - ('C2','C2','C2',1,157,'C2','Nauru','Republic Of Nauru','OC','31','65','OC-031',-12.0,-0.5,166.9333,NULL,NULL), - ('C3','C3','C3',1,203,'C3','Andorra','Andorra','EU','14','27',NULL,-1.0,43.5333,1.5833,NULL,NULL), - ('C5','C5','C5',1,422,'C5','The Gambia','The Gambia','AF','35','46',NULL,0.0,13.4528,-16.5778,NULL,NULL), - ('C6','C6','C6',1,60,'C6','Bahamas','Bahamas','NA','8','11',NULL,5.0,25.05,-77.4,NULL,NULL), - ('FO-M','F','FO-F',1,509,'FO-M,FO0CLA,TX4PG','Marquesas Islands','Marquesas Islands','OC','31','63','OC-027',9.5,-9.75,-139.0,'1998-04-01 00:00:00.000',NULL), - ('C9','C9','C9',1,181,'C8,C9','Mozambique','Mozambique','AF','37','53',NULL,-2.0,-19.0,35.0,NULL,NULL), - ('CE','CE','CE',2,112,'C[A-E]1,3G1,XR1,XQ1','Chile','Antofagasta, Atacama, Tarapaca, Arica','SA','12','14',NULL,4.0,-23.5,-69.0,NULL,NULL), - ('CE','CE','CE',3,112,'C[A-E]2,3G2,XR2,XQ2','Chile','Coquimbo, Valparaiso','SA','12','14',NULL,4.0,-32.0,-71.0,NULL,NULL), - ('CE','CE','CE',4,112,'C[A-E]3,3G3,XR3,XQ3','Chile','Santiago City','SA','12','14',NULL,4.0,-34.0,-71.0,NULL,NULL), - ('CE','CE','CE',5,112,'C[A-E]4,3G4,XR4,XQ4','Chile','L.G.B.O.H, Maule','SA','12','14',NULL,4.0,-35.0,-71.0,NULL,NULL), - ('CE','CE','CE',6,112,'C[A-E]5,3G5,XR5,XQ5','Chile','Bio Bio','SA','12','14',NULL,4.0,-37.0,-72.0,NULL,NULL), - ('CE','CE','CE',7,112,'C[A-E]6,3G6,XR6,XQ6','Chile','Arauncinia, Los Gatos, Los Rios','SA','12','',NULL,4.0,-40.0,-73.0,NULL,NULL), - ('CE','CE','CE',8,112,'C[A-E]7,3G7,XR7,XQ7','Chile','Aisen del Gen. C. I. del Campo','SA','12','16',NULL,4.0,-47.0,-73.0,NULL,NULL), - ('CE','CE','CE',1,112,'CE,XQ,XR,3G,CA,CB,CC,CD','Chile','Chile','SA','12',' ',NULL,4.0,-33.0,-71.0,NULL,NULL), - ('CE0Y','CE','CE0E',1,47,'C[A-E]0,XQ0,XR0,3G0','Easter Island','Easter Island','SA','12','63','',7.0,-27.1193,-109.33,NULL,NULL), - ('CE0X','CE','CE',1,217,'C[A-E]0X,XQ0X,XR0X,3G0X','San Felix Island','San Felix','SA','12','14','SA-013',4.0,-26.2912,-80.1,NULL,NULL), - ('CE0Z','CE','CE',1,125,'C[A-E]0Z,3G0Z,XQ0Z,XR0Z','Juan Fernandez Island','Juan Fernandez','SA','12','14','SA-005',6.0,-33.6389,-78.8667,NULL,NULL), - ('CE9','CE9','CE9',6,13,'3Y9','Antarctica','Tor & Troll Station (Norway)','AN','39','67',NULL,0.0,-72.0,4.0,NULL,NULL), - ('CE9','CE9','CE9',21,13,'RI1ANA','Antarctica','Molodezhnaya Station (Russia)','AN','39','69',NULL,0.0,-67.67,45.86,NULL,NULL), - ('CE9','CE9','CE9',22,13,'RI1ANB,RI1ANT','Antarctica','Mirnyy Station (Russia)','AN','29','69','AN-016',0.0,-66.55,93.0,NULL,NULL), - ('CE9','CE9','CE9',20,13,'RI1ANC,RI1AN','Antarctica','Vostok Station (Russia)','AN','29','70','AN-016',-6.0,-78.47,106.8,NULL,NULL), - ('CE9','CE9','CE9',23,13,'RI1AND,RI1ANN,RI1ANR','Antarctica','Novolazarevskaya Station (Russia)','AN','38','67','AN-016',0.0,-70.77,11.83,NULL,NULL), - ('CE9','CE9','CE9',24,13,'RI1ANG','Antarctica','Leningradskaya Station (Russia)','AN','30','70',NULL,0.0,-69.5,159.38,NULL,NULL), - ('CE9','CE9','CE9',25,13,'RI1ANH','Antarctica','Russkaya Station (Russia)','AN','32','72',NULL,0.0,-74.77,-136.87,NULL,NULL), - ('CE9','CE9','CE9',26,13,'RI1ANJ','Antarctica','Druzhnaya 1 Station (Russia)','AN','12','74',NULL,0.0,-77.42,-40.08,NULL,NULL), - ('CE9','CE9','CE9',27,13,'RI1ANK','Antarctica','Komsomolskaya Station (Russia)','AN','29','69',NULL,0.0,-74.0,97.0,NULL,NULL), - ('CE9','CE9','CE9',28,13,'RI1ANL','Antarctica','Pioneerskaya Station (Russia)','AN','29','69','AN-016',0.0,-74.0,96.0,NULL,NULL), - ('CE9','CE9','CE9',30,13,'7S8AAA,7S8BBB','Antarctica','Svea & Wasa (Sweden)','AN','38','67',NULL,0.0,-73.7,-11.3,NULL,NULL), - ('CE9','CE9','CE9',18,13,'8J1RL','Antarctica','Syowa Bases (Japan)','AN','39','67','AN-015',3.0,-69.0,39.6,NULL,NULL), - ('CE9','CE9','CE9',17,13,'AT0','Antarctica','Maitri Station (India)','AN','38','67',NULL,0.0,-70.75,11.77,NULL,NULL), - ('CE9','CE9','CE9',1,13,'CE9','Antarctica','Gen.B.Higgens Base (Chile)','AN','13','73',NULL,4.0,-63.32,57.9,NULL,NULL), - ('CE9','CE9','CE9',16,13,'FT#Y,FT-Y','Antarctica','Dumont Durville Base (France)','AN','30','70',NULL,-10.0,-66.67,140.0,NULL,NULL), - ('CE9','CE9','CE9',15,13,'IA0','Antarctica','Concordia Station (Italy)','AN','13','71',NULL,0.0,-75.1,-123.33,NULL,NULL), - ('CE9','CE9','CE9',14,13,'KC4AAA,KC4AAD,KC4AAE,KC4AAF,KC4US','Antarctica','Asmudsen-Scott South Pole Station (USA)','AN','','74','AN-016',-12.0,-90.0,0.0,NULL,NULL), - ('CE9','CE9','CE9',13,13,'KC4AAB, KC4AAC','Antarctica','Palmer Station (USA)','AN','13','73','AN-012',4.0,-64.77,-64.05,NULL,NULL), - ('CE9','CE9','CE9',12,13,'KC4USV','Antarctica','McMurdo Station (USA)','AN','30','71','AN-011',-12.0,-77.85,166.67,NULL,NULL), - ('CE9','CE9','CE9',3,13,'AY#Z, AZ#Z, LU#Z, LU#ZB','Antarctica','Belgrano Bases (Argentina)','AN','13','73',NULL,3.0,-77.87,34.62,NULL,NULL), - ('CE9','CE9','CE9',4,13,'AY#ZG, AZ#ZG, LU#ZG','Antarctica','Grahamland Bases (Argentina)','AN','13','73',NULL,0.0,-65.0,60.0,NULL,NULL), - ('CE9','CE9','CE9',9,13,'VK0-C','Antarctica','Casey Base (Australia)','AN','29','70',NULL,-11.0,-66.28,110.5,NULL,NULL), - ('CE9','CE9','CE9',10,13,'VK0-D,VK0DX,VK0BP','Antarctica','Davis Base (Australia)','AN','39','69','AN-016',-5.0,-68.58,77.97,NULL,NULL), - ('CE9','CE9','CE9',8,13,'ZL5?,ZL0AIC','Antarctica','Antarctica (New Zealand)','AN','30','71',NULL,0.0,-90.0,0.0,NULL,NULL), - ('CE9','CE9','CE9',7,13,'ZS7ANT','Antarctica','Sanae Base (South Africa)','AN','38','67','AN-016',0.0,-71.67,-2.85,NULL,NULL), - ('CN','CN','CN',1,446,'CN,5[C-G]','Morocco','Morocco','AF','33','37',NULL,0.0,32.0,-6.0,NULL,NULL), - ('CO','CO','CO',1,70,'CL,CM,CO,T4','Cuba','Cuba','NA','8','11',NULL,5.0,22.4,-80.0,NULL,NULL), - ('CP','CP','CP',1,104,'CP','Bolivia','Bolivia','SA','10',NULL,NULL,4.0,-17.0,-68.0,NULL,NULL), - ('CP','CP','CP',2,104,'CP1','Bolivia','La Paz','SA','10','',NULL,4.0,-15.0,-68.0,NULL,NULL), - ('CP','CP','CP',3,104,'CP2','Bolivia','Chuquisaca','SA','10','14',NULL,4.0,-20.0,-64.0,NULL,NULL), - ('CP','CP','CP',4,104,'CP3','Bolivia','Oruro','SA','10','14',NULL,4.0,-19.0,-68.0,NULL,NULL), - ('CP','CP','CP',5,104,'CP4','Bolivia','Potosi','SA','10','14',NULL,4.0,-21.0,-67.0,NULL,NULL), - ('CP','CP','CP',6,104,'CP5','Bolivia','Cochabamba','SA','10','14',NULL,4.0,-17.0,-66.0,NULL,NULL), - ('CP','CP','CP',7,104,'CP6','Bolivia','Santa Cruz','SA','10','',NULL,4.0,-17.0,-63.0,NULL,NULL), - ('CP','CP','CP',8,104,'CP7','Bolivia','Tarija','SA','10','14',NULL,4.0,-21.0,-64.0,NULL,NULL), - ('CP','CP','CP',9,104,'CP8','Bolivia','El Beni','SA','10','',NULL,4.0,-14.0,-65.0,NULL,NULL), - ('CP','CP','CP',10,104,'CP9','Bolivia','Pando','SA','10','12',NULL,4.0,-11.0,-67.0,NULL,NULL), - ('CT','CT','CT',1,272,'CT,CQ,CR,CS','Portugal','Portugal','EU','14','37',NULL,0.0,39.0,-9.0,NULL,NULL), - ('CT3','CT','CT3',1,256,'CQ2,CQ3,CR3,CS3,CT3,CQ9,CR9,CS9,CT9','Madeira Islands','Madeira & Porto Santo Islands ','AF','33','36','',0.0,32.75,-17.0,NULL,NULL), - ('CU','CU','CU',1,149,'CU,CQ1,CR1,CR2,CS4,CQ8,CR8,CS8,CT8','Azores','Azores','EU','14','36',NULL,1.0,38.0,-27.0,NULL,NULL), - ('CU','CU','CU',9,149,'CU1','Azores','Ilha De Santa Maria','EU','14','36','EU-003',1.0,38.0,-25.0,NULL,NULL), - ('CU','CU','CU',8,149,'CU2','Azores','Ilha De S. Miguel','EU','14','36','EU-003',1.0,38.0,-26.0,NULL,NULL), - ('CU','CU','CU',4,149,'CU3','Azores','Ilha Da Terceira','EU','14','36','EU-175',1.0,38.0,-27.0,NULL,NULL), - ('CU','CU','CU',3,149,'CU4','Azores','Ilha Da Graciosa','EU','14','36','EU-175',1.0,38.0,-27.0,NULL,NULL), - ('CU','CU','CU',10,149,'CU5','Azores','Ilha De S. Jorge','EU','14','36','EU-175',1.0,3.75,-25.3,NULL,NULL), - ('CU','CU','CU',6,149,'CU6','Azores','Ilha Do Pico','EU','14','36','EU-175',1.0,38.0,-28.0,NULL,NULL), - ('CU','CU','CU',5,149,'CU7','Azores','Ilha Do Faial','EU','14','36','EU-175',1.0,38.0,-27.0,NULL,NULL), - ('CU','CU','CU',2,149,'CU8','Azores','Ilha Das Flores','EU','14','36','EU-089',1.0,39.0,-31.0,NULL,NULL), - ('CU','CU','CU',7,149,'CU9','Azores','Ilha Do Corvo','EU','14','36','EU-089',1.0,39.0,-31.0,NULL,NULL), - ('CX','CX','CX',1,144,'CX,CV,CW','Uruguay','Uruguay','SA','13','14',NULL,3.0,-32.75,-56.0,NULL,NULL), - ('CY0','VE','CY0',1,211,'CY0','Sable Island','Sable Island','NA','5','9','NA-063',4.0,43.9333,-59.9167,NULL,NULL), - ('CY9','VE','CY9',1,252,'CY9','Saint Paul Island','St. Paul Island','NA','5','9','NA-094',4.0,47.2,-60.15,NULL,NULL), - ('D2','D2','D2',1,401,'D2,D3','Angola','Angola','AF','36','52',NULL,-1.0,-11.0,18.0,NULL,NULL), - ('D4','D4','D4',1,409,'D4','Cape Verde','Cape Verde','AF','35','46','',1.0,15.0625,-23.5833,NULL,NULL), - ('D6','D6','D6',1,411,'D6','Comoros','Comoros','AF','39','53','AF-007',-3.0,-11.0,43.333,'1975-07-05 00:00:00.000',NULL), - ('DA','DL','DL',1,81,'~DL,~DA','Germany','West Germany','EU','14','28',NULL,-1.0,51.0,10.0,NULL,'1973-09-16 00:00:00.000'), - ('DL','DL','DL',1,230,'D[A-R],Y#','Federal Republic of Germany','Germany','EU','14','28',NULL,-1.0,51.0,10.0,'1973-09-17 00:00:00.000',NULL), - ('DU','DU','DU',1,375,'D[U-Z],4[D-I]','Philippines','Philippines','OC','27','50',NULL,-8.0,12.0,123.0,NULL,NULL), - ('H40','H4','H4',1,507,'H40','Temotu Province','Temotu','OC','32','51',NULL,-11.0,-10.7167,166.0,'1998-04-01 00:00:00.000',NULL), - ('4L','4L','4L',1,75,'4L','Georgia','Georgian Republic','AS','21','29',NULL,-4.0,41.7083,44.7917,NULL,NULL), - ('E3','E3','E3',1,51,'E3','Eritrea','Eritrea','AF','37','48',NULL,-3.0,15.33,38.9167,'1991-05-24 00:00:00.000',NULL), - ('EA','EA','EA',1,281,'A[M-O],E[A-H]','Spain','Spain','EU','14','37',NULL,-1.0,40.0,-4.0,NULL,NULL), - ('EA6','EA','EA',1,21,'E[A-H]6,A[M-O]6','Balearic Islands','Balearic Islands ','EU','14','37','EU-004',-1.0,39.5,3.0,NULL,NULL), - ('EA8','EA','EA8',1,29,'E[A-H]8,A[M-O]8','Canary Islands','Canary Islands','AF','33','36','AF-004',0.0,27.95,-15.55,NULL,NULL), - ('EA9','EA','EA',1,32,'E[A-H]9,A[M-O]9','Ceuta & Melilla','Ceuta & Melilla','AF','33','37',NULL,-1.0,35.28,-2.95,NULL,NULL), - ('EI','EI','EI',1,245,'EI,EJ','Ireland','Ireland','EU','14','27','',0.0,53.25,-7.75,NULL,NULL), - ('EK','EK','EK',1,14,'EK','Armenia','Armenia','AS','21','29',NULL,-4.0,40.25,45.0,NULL,NULL), - ('EL','EL','EL',1,434,'A8,EL,5L,D5,5M,6Z','Liberia','Liberia','AF','35','46',NULL,0.0,6.5,-9.5,NULL,NULL), - ('EP','EP','EP',1,330,'EP,EQ,9B,9C,9D','Iran','Iran','AS','21','40',NULL,-3.5,35.6667,51.4167,NULL,NULL), - ('ER','ER','ER',1,179,'ER','Moldova','Moldova','EU','16','29',NULL,-3.0,47.0334,28.8334,NULL,NULL), - ('ES','ES','ES',1,52,'ES','Estonia','Estonia','EU','15','29',NULL,-3.0,59.0,25.5,NULL,NULL), - ('ET','ET','ET',1,53,'ET,9E,9F','Ethiopia','Ethiopia','AF','37','48',NULL,-3.0,9.0,38.75,NULL,NULL), - ('EW','EW','EW',1,27,'EU,EV,EW','Belarus','Belarus','EU','16','29',NULL,-3.0,54.0,27.5,NULL,NULL), - ('OM','OM','OM',9,504,'OM0','Slovakia','Presov','EU','15','28',NULL,-1.0,49.2917,21.275,'1993-01-01 00:00:00.000',NULL), - ('EW','EW','EW',2,27,'E[U-W]1,E[U-W]2','Belarus','Minskaya ','EU','16','29',NULL,-3.0,54.0,28.0,NULL,NULL), - ('EW','EW','EW',3,27,'E[U-W]3','Belarus','Brestskaya ','EU','16','29',NULL,-3.0,54.0,28.0,NULL,NULL), - ('EW','EW','EW',4,27,'E[U-W]4','Belarus','Hrodzenskaya ','EU','16','29',NULL,-3.0,54.0,28.0,NULL,NULL), - ('EW','EW','EW',5,27,'E[U-W]6','Belarus','Vietebskaya ','EU','16','29',NULL,-3.0,54.0,28.0,NULL,NULL), - ('EW','EW','EW',6,27,'E[U-W]7','Belarus','Mahilyowskaya ','EU','16','29',NULL,-3.0,54.0,28.0,NULL,NULL), - ('EW','EW','EW',7,27,'E[U-W]8','Belarus','Homyelskaya ','EU','16','29',NULL,-3.0,53.9167,27.55,NULL,NULL), - ('EX','EX','EX',1,135,'EX','Kyrgyzstan','Kyrgyzstan','AS','17',NULL,NULL,-6.0,42.0,75.0,NULL,NULL), - ('EX','EX','EX',2,135,'EX#M','Kyrgyzstan','Kyrgyzstan','AS','17','',NULL,-6.0,42.0,75.0,NULL,NULL), - ('EX','EX','EX',3,135,'EX#N','Kyrgyzstan','Oshkaya','AS','17','30',NULL,-6.0,42.0,75.0,NULL,NULL), - ('EX','EX','EX',4,135,'EX#P','Kyrgyzstan','Narynsky','AS','17','',NULL,-6.0,42.0,75.0,NULL,NULL), - ('EX','EX','EX',5,135,'EX#Q','Kyrgyzstan','Issyk Kul Przhevalsk','AS','17','31',NULL,-6.0,42.0,75.0,NULL,NULL), - ('EX','EX','EX',6,135,'EX#T','Kyrgyzstan','Talasskaya','AS','17','30',NULL,-6.0,42.0,75.0,NULL,NULL), - ('EY','EY','EY',1,262,'EY','Tajikistan','Tadzhikistan','AS','17','30',NULL,-5.0,38.75,71.0,NULL,NULL), - ('EY','EY','EY',2,262,'EY4','Tajikistan','Gorno Badakhstan','AS','17','30',NULL,-5.0,40.0,67.0,NULL,NULL), - ('EY','EY','EY',3,262,'EY5','Tajikistan','Kulyabskaya','AS','17','30',NULL,-5.0,40.0,67.0,NULL,NULL), - ('EY','EY','EY',4,262,'EY6','Tajikistan','Kurgan Tyubinskaya','AS','17','30',NULL,-5.0,40.0,67.0,NULL,NULL), - ('EY','EY','EY',5,262,'EY7','Tajikistan','Leninabad','AS','17','30',NULL,-5.0,40.0,67.0,NULL,NULL), - ('EY','EY','EY',6,262,'EY8','Tajikistan','Tadzhik','AS','17','30',NULL,-5.0,40.0,67.0,NULL,NULL), - ('EY','EY','EY',7,262,'EY9','Tajikistan','Nurek','AS','17','30',NULL,-5.0,40.0,67.0,NULL,NULL), - ('EZ','EZ','EZ',1,280,'EZ','Turkmenistan','Turkmenistan','AS','17','30',NULL,-5.0,39.0,59.0,NULL,NULL), - ('EZ','EZ','EZ',2,280,'EZ5','Turkmenistan','Maryiskaya','AS','17','30',NULL,-5.0,37.0,62.0,NULL,NULL), - ('EZ','EZ','EZ',3,280,'EZ6','Turkmenistan','Dashkovuzsky Veloyat','AS','17','30',NULL,-5.0,41.0,59.0,NULL,NULL), - ('EZ','EZ','EZ',4,280,'EZ7','Turkmenistan','Lebapsky Veloyat','AS','17','30',NULL,-5.0,38.0,65.0,NULL,NULL), - ('EZ','EZ','EZ',5,280,'EZ8','Turkmenistan','Ashkhabad City','AS','17','30',NULL,-5.0,37.95,58.3833,NULL,NULL), - ('F','F','F',1,227,'F,TH,TM,TP,TQ,TV,TW,HW,HX,HY','France','France','EU','14','27',NULL,-1.0,47.0,4.0,NULL,NULL), - ('FG','F','FG',1,79,'FG','Guadeloupe','Guadeloupe','NA','8','11','',4.0,16.15,-61.6,NULL,NULL), - ('FH','F','FH',1,169,'FH','Mayotte Island','Mayotte','AF','39','53','AF-027',-3.0,-12.75,45.1667,'1975-07-05 00:00:00.000',NULL), - ('FK','F','FK',1,162,'FK','New Caledonia','New Caledonia','OC','32','56',NULL,-11.0,-21.2666,166.4333,NULL,NULL), - ('FM','F','FM',1,84,'FM','Martinique','Martinique','NA','8','11','NA-107',4.0,14.6,-61.0,NULL,NULL), - ('FO0','F','FO-C',1,36,'FO0CI,FO0AAA,FO0','Clipperton Island','Clipperton Island','NA','7','10','NA-011',7.0,10.3,-109.2167,NULL,NULL), - ('FO-F','F','FO-F',1,175,'FO','French Polynesia','French Polynesia','OC','32','63',NULL,10.0,-17.6,-149.5,NULL,NULL), - ('FP','F','FP',1,277,'FP','Saint Pierre & Miquelon','Saint Pierre & Miquelon Island','NA','5','9','NA-032',3.0,46.77,-56.2,NULL,NULL), - ('FR-G','F','FR-G',1,99,'FR-G,FT#G','Glorioso Island','Glorioso Island','AF','39','53','AF-011',-4.0,-11.58,47.3,'1960-06-25 00:00:00.000',NULL), - ('FR-J','F','FR-J',1,124,'FR-J,FT#J','Juan de Nova','Juan de Nova Island','AF','39','53','AF-012',-4.0,-17.0555,42.733,'1960-06-25 00:00:00.000',NULL), - ('FR','F','FR-R',1,453,'FR','Reunion Island','Reunion Island','AF','39','53','AF-016',-4.0,-21.1,55.5,NULL,NULL), - ('FR-T','F','FR-T',1,276,'FR-T,FT#T','Tromelin Island','Tromelin Island','AF','39','53','AF-031',-4.0,-15.8917,54.5236,NULL,NULL), - ('FS','F','FS',1,213,'FS','Saint Martin','Saint Martin, Leeward Islands','NA','8','11',NULL,4.0,18.0695,-63.0833,NULL,NULL), - ('FT8W','F','FT8',1,41,'FT#W,FB8W,FT-W','Crozet Island','Crozet Island','AF','39','68','AF-008',-3.0,-46.4167,51.75,NULL,NULL), - ('FT8X','F','FT8',1,131,'FT#X,FB8X,FT-X','Kerguelen Island','Kerguelen Island','AF','39','68','AF-048',-5.0,-49.3333,69.5,NULL,NULL), - ('FT8Z','F','FT8',1,10,'FT#Z,FB8Z,FT-Z','Amsterdam & Saint Paul Islands','Amsterdam & SaintPaul Islands','AF','39','68','AF-002',-5.0,-37.1667,77.55,NULL,NULL), - ('FW','F','FW',1,298,'FW','Wallis & Futuna Islands','Wallis Island','OC','32','62','',-12.0,-13.28,-176.2,NULL,NULL), - ('FY','F','FY',1,63,'FY','French Guiana','French Guiana','SA','9','12',NULL,3.0,4.8333,-52.333,NULL,NULL), - ('G','G','G',1,223,'G,M,2','England','England','EU','14','27',NULL,0.0,53.0,-1.0,NULL,NULL), - ('GD','G','GD',1,114,'GD,MD,GT,MT,2D,2T','Isle Of Man','Isle Of Man','EU','14','27','EU-116',0.0,54.25,-4.5,NULL,NULL), - ('GI','G','GI',1,265,'GI,MI,GN,MN,2I,2N','Northern Ireland','Northern Ireland','EU','14','27','',0.0,54.75,-6.5,NULL,NULL), - ('GJ','G','GJ',1,122,'GJ,MJ,GH,MH,2J,2H','Jersey','Jersey','EU','14','27',NULL,0.0,49.25,-2.15,NULL,NULL), - ('GM','G','G',1,279,'GM,GS,GA,MM,MS,MA,2M,2S,2A','Scotland','Scotland','EU','14','27',NULL,0.0,56.33,-4.0,NULL,NULL), - ('GU','GU','GU',1,106,'GU,MU,GP,MP,2U,2P','Guernsey','Guernsey','EU','14','27','EU-114',-1.0,49.4,-2.6,NULL,NULL), - ('GW','G','G',1,294,'GW,MW,GC,MC,2W,2C','Wales','Wales','EU','14','27',NULL,0.0,52.5,-3.5,NULL,NULL), - ('H4','H4','H4',1,185,'H44, H4','Solomon Islands','Solomon Islands','OC','28','51',NULL,-11.0,-9.5,160.1667,NULL,NULL), - ('HA','HA','HA',1,239,'HA,HG','Hungary','Hungary','EU','15','28',NULL,-1.0,47.5,19.0,NULL,NULL), - ('HB','HB','HB',1,287,'HB,HE','Switzerland','Switzerland','EU','14','28',NULL,-1.0,47.0,8.3,NULL,NULL), - ('HB0','HB','HB0',1,251,'HB0,HE0','Liechtenstein','Liechtenstein','EU','14','28',NULL,-1.0,47.1667,9.55,NULL,NULL), - ('HC','HC','HC',1,120,'HC,HD','Ecuador','Ecuador','SA','10','12',NULL,5.0,-13.0,-78.5,NULL,NULL), - ('HC','HC','HC',2,120,'HC1,HD1','Ecuador','Ecuador 1','SA','10','12',NULL,5.0,0.0,-78.0,NULL,NULL), - ('HC','HC','HC',6,120,'HC2,HD2','Ecuador','Ecuador 2','SA','10','12',NULL,5.0,-2.0,-79.0,NULL,NULL), - ('HC','HC','HC',8,120,'HC3,HD3','Ecuador','Ecuador 3','SA','10','12',NULL,5.0,-4.0,-79.5,NULL,NULL), - ('HC','HC','HC',7,120,'HC4,HD4','Ecuador','Ecuador 4','SA','10','12',NULL,5.0,-1.0,-80.0,NULL,NULL), - ('HC','HC','HC',5,120,'HC5,HD5','Ecuador','Ecuador 5','SA','10','12',NULL,5.0,-3.0,-78.0,NULL,NULL), - ('HC','HC','HC',4,120,'HC6,HD6','Ecuador','Ecuador 6','SA','10','12',NULL,5.0,-3.0,-78.0,NULL,NULL), - ('HC','HC','HC',3,120,'HC7,HD7','Ecuador','Ecuador 7','SA','10','12',NULL,5.0,-2.0,-76.0,NULL,NULL), - ('HC8','HC','HC',9,71,'HC8,HD8','Galapagos Islands','Galapagos Islands','SA','10','12','SA-004',5.0,-0.6,-90.3,NULL,NULL), - ('HH','HH','HH',1,78,'HH,4V','Haiti','Haiti','NA','8','11',NULL,5.0,18.6,-72.3,NULL,NULL), - ('HI','HI','HI',1,72,'HI','Dominican Republic','Dominican Republic','NA','8','11',NULL,4.0,19.0,-70.5,NULL,NULL), - ('HK','HK','HK',1,116,'HK,5J,HJ,5K','Colombia','Colombia','SA','9','12',NULL,5.0,4.5,-74.1667,NULL,NULL), - ('HK','HK','HK',8,116,'HK1,5J1,HJ1,5K1','Colombia','Colombia 1','SA','9','12',NULL,5.0,8.0,-75.0,NULL,NULL), - ('HK','HK','HK',7,116,'HK2,5J2,HJ2,5K2','Colombia','Colombia 2','SA','9','12',NULL,5.0,9.0,-74.0,NULL,NULL), - ('HK','HK','HK',6,116,'HK3,5J3,HJ3,5K3','Colombia','Colombia 3','SA','9','12',NULL,5.0,5.0,-71.0,NULL,NULL), - ('HK','HK','HK',2,116,'HK4,5J4,HJ4,5K4','Colombia','Colombia 4','SA','9','12',NULL,5.0,5.0,-77.0,NULL,NULL), - ('HK','HK','HK',5,116,'HK5,5J5,HJ5,5K5','Colombia','Colombia 5','SA','9','12',NULL,5.0,2.0,-77.0,NULL,NULL), - ('HK','HK','HK',9,116,'HK6,5J6,HJ6,5K6','Colombia','Colombia 6','SA','9','12',NULL,5.0,2.0,-76.0,NULL,NULL), - ('HK','HK','HK',4,116,'HK7,5J7,HJ7,5K7','Colombia','Colombia 7','SA','9','12',NULL,5.0,7.0,-73.0,NULL,NULL), - ('HK','HK','HK',3,116,'HK8,5J8,HJ8,5K8','Colombia','Colombia 8','SA','9','12',NULL,5.0,1.0,-75.0,NULL,NULL), - ('HK0-M','HK','HK0-M',1,161,'HK0T,HJ0M,HK0M,HK0-M','Malpelo Island','Malpelo Island','SA','9','12','SA-007',5.0,4.1333,-81.61,NULL,NULL), - ('HK0-S','HK','HK0-S',1,216,'HK0,5J0,5K0,HJ0,HK0-S','San Andres Island','San Andres & Providencia','NA','7','11',NULL,5.0,12.5833,-81.7167,NULL,NULL), - ('HL','HL','HL',1,137,'HL,DS,DT,D7,D8,D9,6K,6L,6M,6N','Republic of Korea','South Korea','AS','25','44',NULL,-9.0,37.0,128.0,NULL,NULL), - ('HP','HP','HP',1,88,'HP,HO,H3,H8,H9,3E,3F','Panama','Panama','NA','7','11',NULL,5.0,9.25,-79.5,NULL,NULL), - ('HR','HR','HR',1,80,'HR,HQ','Honduras','Honduras','NA','7','11',NULL,6.0,14.1,-87.25,NULL,NULL), - ('HS','HS','HS',1,387,'HS,E2','Thailand','Thailand','AS','26','49',NULL,-7.0,13.75,100.5,NULL,NULL), - ('HV','HV','HV',1,295,'HV','Vatican','Vatican City','EU','15','28',NULL,-1.0,41.9022,12.4533,NULL,NULL), - ('HZ','HZ','HZ',1,378,'HZ,7Z,8Z','Saudi Arabia','Saudi Arabia','AS','21','39',NULL,-3.0,24.7167,46.75,NULL,NULL), - ('I','I','I',1,248,'I','Italy','Italy','EU','15','28',NULL,-1.0,42.5,13.1667,NULL,NULL), - ('I','I','I',21,248,'IT9,IW9','Italy','Sicily ','EU','15','28','EU-025',-1.0,37.5,14.1667,NULL,NULL), - ('IS0','I','I',1,225,'IS0,IM0,IW0[U-Z]','Sardinia','Sardinia','EU','15','28',NULL,-1.0,40.1667,9.0,NULL,NULL), - ('J2','J2','J2',1,382,'J2','Djibouti','Djibouti','AF','37','48',NULL,-3.0,11.5833,43.1458,NULL,NULL), - ('J3','J3','J3',1,77,'J3,VP2G','Grenada','Grenada','NA','8','11','',4.0,12.1,-61.7,NULL,NULL), - ('J5','J5','J5',1,109,'J5','Guinea-Bissau','Guinea-Bissau','AF','35','46',NULL,0.0,11.8667,-15.6,NULL,NULL), - ('J6','J6','J6',1,97,'J6,VP2L','Saint Lucia','Saint Lucia','NA','8','11','NA-108',4.0,13.9,-61.0,NULL,NULL), - ('J7','J7','J7',1,95,'J7,VP2D','Dominica','Dominica','NA','8','11','NA-101',4.0,15.4,-61.33,NULL,NULL), - ('J8','J8','J8',1,98,'J8, VP2S','Saint Vincent','St Vincent','NA','8','11','',4.0,13.25,-61.2,NULL,NULL), - ('JA','JA','JA',1,339,'JA,J[E-S]','Japan','Japan','AS','25','45',NULL,-9.0,36.33,138.5,NULL,NULL), - ('JA','JA','JA',9,339,'JA6,J[E-R]6,7J6','Japan','Kyushu','AS','25','45',NULL,-9.0,33.0,131.0,NULL,NULL), - ('JA','JA','JA',8,339,'JA5,J[E-S]5,7J5','Japan','Shikoku','AS','25','45','AS-076',-9.0,34.0,133.0,NULL,NULL), - ('JA','JA','JA',12,339,'JA8,J[E-S]8,7J8','Japan','Hokkaido','AS','25','45',NULL,-9.0,43.0,143.0,NULL,NULL), - ('JA','JA','JA',10,339,'JR6[R-Z],JS6,7J6C','Japan','Okinawa','AS','25','45','AS-017',-9.0,26.0,128.0,NULL,NULL), - ('JD1-M','JA','JD1-M',1,177,'JD1-M,JD1M,JD1YBJ','Minami Torishima','Minami Torishima Island ','OC','27','90','OC-073',-10.0,24.23,153.9,NULL,NULL), - ('JD1-O','JA','JD1-O',1,192,'JD1-O,JD1,8N1OGA,JD1BLG','Ogasawara','Ogasawara Island ','AS','27','45',NULL,-9.0,27.07,142.22,NULL,NULL), - ('JT','JT','JT',1,363,'JT,JU,JV','Mongolia','Mongolia','AS','23',NULL,NULL,-8.0,47.8,107.0,NULL,NULL), - ('JW','JW','JW',1,259,'JW','Svalbard','Svalbard Island','EU','40','18',NULL,-1.0,78.22,15.65,NULL,NULL), - ('JX','JX','JX',1,118,'JX','Jan Mayen','Jan Mayen Island','EU','40','18','EU-022',1.0,71.05,-8.4,NULL,NULL), - ('JY','JY','JY',1,342,'JY','Jordan','Jordan','AS','20','39',NULL,-2.0,32.0,36.0,NULL,NULL), - ('K','K','K',12,291,'4U1WB','United States','World Bank (Washington DC)','NA','5','8',NULL,5.0,39.0,-77.0,NULL,NULL), - ('K','K','K',1,291,'K,W,N','United States','United States','NA',NULL,NULL,NULL,6.0,39.0,-98.0,NULL,NULL), - ('K','K','K',11,291,'K0,K$0,N0,N$0,W0,W$0,A&0','United States','United States','NA','4','7',NULL,6.0,41.0,-100.0,NULL,NULL), - ('K','K','K',2,291,'K1,K%1,N1,N%1,W1,W%1,A&1','United States','United States','NA','5','8',NULL,5.0,44.0,-72.0,NULL,NULL), - ('K','K','K',3,291,'K2,K%2,N2,N%2,W2,W%2,A&2','United States','United States','NA','5','8',NULL,5.0,42.0,-75.0,NULL,NULL), - ('K','K','K',4,291,'K3,K%3,N3,N%3,W3,W%3,A&3,K3J?','United States','United States','NA','5','8',NULL,5.0,39.0,-77.0,NULL,NULL), - ('K','K','K',5,291,'K4,K%4,N4,N%4,W4,W%4,A&4','United States','United States','NA',NULL,'',NULL,5.0,33.0,-83.0,NULL,NULL), - ('K','K','K',6,291,'K5,K%5,N5,N%5,W5,W%5,A&5','United States','United States','NA','4','',NULL,6.0,33.0,-94.0,NULL,NULL), - ('K','K','K',8,291,'K7,K$7,N7,N$7,W7,W$7,A&7','United States','United States','NA','3',NULL,NULL,7.0,44.0,-115.0,NULL,NULL), - ('K','K','K',9,291,'K8,K$8,N8,N$8,W8,W$8,A&8','United States','United States','NA',NULL,'',NULL,5.0,40.0,-83.0,NULL,NULL), - ('K','K','K',10,291,'K9,K$9,N9,N$9,W9,W$9,A&9','United States','United States','NA','4',NULL,NULL,6.0,40.0,-89.0,NULL,NULL), - ('K','K','K',7,291,'K6,K$6,N6,N$6,W6,W$6,A&6','United States','United States','NA','3','6',NULL,8.0,37.0,-120.0,NULL,NULL), - ('T8','T8','T8',1,22,'T8','Palau','Western Caroline and Palau Island','OC','27','64','OC-009',-10.0,7.5,134.6166,NULL,NULL), - ('KH0','K','KH0',1,166,'KH0,AH0,NH0,WH0','Mariana Islands','Mariana Islands','OC','27','64','OC-086',-10.0,15.1667,145.75,NULL,NULL), - ('KH1','K','KH1',1,20,'KH1,AH1,WH1,NH1','Baker & Howland Islands','Baker and Howland Islands','OC','31','61','OC-089',11.0,0.1958,-176.479,NULL,NULL), - ('KH2','K','KH2',1,103,'KH2,AH2,WH2,NH2','Guam','Guam','OC','27','64','OC-026',-10.0,13.4667,144.75,NULL,NULL), - ('KH3','K','KH3',1,123,'KH3,AH3,NH3,WH3','Johnston Island','Johnston Island','OC','31','61','OC-023',10.0,16.72,179.52,NULL,NULL), - ('KH4','K','KH4',1,174,'KH4','Midway Island','Midway Island','OC','31','61','OC-030',11.0,28.2083,-177.3667,NULL,NULL), - ('KH5-K','K','KH5-K',1,134,'~KH5-K','Kingman Reef','Kingman Reef','OC','31','61','OC-096',10.0,6.3912,-162.3417,NULL,'2016-03-29 00:00:00.000'), - ('KH5-P','K','KH5-P',1,197,'KH5,WH5,AH5,NH5,KH5-P','Palmyra & Jarvis Islands','Palmyra Island','OC','31','61',NULL,10.0,5.8889,-162.0778,NULL,NULL), - ('KH6','K','KH6',1,110,'KH6,WH6,NH6,AH6,KH7[A-J;L-Z],WH7,NH7,AH7','Hawaii','Hawaiian Islands','OC','31','61','',10.0,21.3333,-157.9167,NULL,NULL), - ('KH7K','K','KH7',1,138,'KH7K','Kure Island','Kure Island','OC','31','61','OC-020',10.0,28.39,-178.29,NULL,NULL), - ('KH8','K','KH8',1,9,'KH8,AH8,NH8,WH8','American Samoa','American Samoa','OC','32','62',NULL,11.0,-14.3,-170.7,NULL,NULL), - ('KH9','K','KH9',1,297,'KH9,NH9,AH9,WH9','Wake Island','Wake Island','OC','31','65','OC-053',-12.0,19.28,166.65,NULL,NULL), - ('KL7','K','KL7',1,6,'KL#,NL#,WL#,AL#','Alaska','Alaska','NA','1','',NULL,9.0,65.0,-151.0,NULL,NULL), - ('KP1','K','KP1',1,182,'KP1,NP1,WP1','Navassa Island','Navassa Island','NA','8','11','NA-098',5.0,18.4,-75.008,NULL,NULL), - ('KP2','K','KP2',1,285,'KP2,NP2,WP2,KV4FZ,KV4AA','US Virgin Islands','U.S. Virgin Islands','NA','8','11','NA-106',4.0,18.35,-64.93,NULL,NULL), - ('KP4','K','KP4',1,202,'KP4,WP4,NP4,KP3,NP3,WP3','Puerto Rico','Puerto Rico','NA','8','11','NA-099',4.0,18.25,-66.5,'1979-05-01 00:00:00.000',NULL), - ('KP5','K','KP5',1,43,'KP5,NP5,WP5','Desecheo Island','Desecheo Island','NA','8','11','NA-095',4.0,18.38,-67.47,'1979-05-01 00:00:00.000',NULL), - ('KZ5','K','HP',1,28,'~KZ5','Canal Zone','Canal Zone','NA','7','11',NULL,5.0,9.0,-81.0,NULL,'1979-09-30 00:00:00.000'), - ('LA','LA','LA',1,266,'L[A-N]','Norway','Norway','EU','14','18',NULL,-1.0,59.9139,10.7523,NULL,NULL), - ('LX','LX','LX',1,254,'LX','Luxembourg','Luxembourg','EU','14','27',NULL,-1.0,49.6111,6.1292,NULL,NULL), - ('LY','LY','LY',1,146,'LY','Lithuania','Lithuania','EU','15','29',NULL,-3.0,54.8834,23.8834,NULL,NULL), - ('LZ','LZ','LZ',1,212,'LZ','Bulgaria','Bulgaria','EU','20','28',NULL,-2.0,42.7017,23.3334,NULL,NULL), - ('OA','OA','OA',1,136,'O[A-C],4T','Peru','Peru','SA','10','12',NULL,5.0,-12.1,-76.9,NULL,NULL), - ('OA','OA','OA',9,136,'O[A-C]1,4T1','Peru','Peru 1','SA','10','12',NULL,5.0,-5.0,-81.0,NULL,NULL), - ('OA','OA','OA',8,136,'O[A-C]2,4T2','Peru','Peru 2','SA','10','12',NULL,5.0,-7.0,-78.0,NULL,NULL), - ('LU','LU','LU',2,100,'AY#A,AZ#A,L#A,LO#A,LP#A,LQ#A','Argentina','Buenos Aires City ','SA','13','14',NULL,3.0,-34.5,-58.5,NULL,NULL), - ('OA','OA','OA',7,136,'O[A-C]3,4T3','Peru','Peru 3','SA','10','12',NULL,5.0,-9.0,-76.0,NULL,NULL), - ('OA','OA','OA',6,136,'O[A-C]4,4T4','Peru','Peru 4','SA','10','12',NULL,5.0,-13.0,-76.0,NULL,NULL), - ('OA','OA','OA',2,136,'O[A-C]5,4T5','Peru','Peru 5','SA','10','12',NULL,5.0,-15.0,-74.0,NULL,NULL), - ('OA','OA','OA',5,136,'O[A-C]6,4T6','Peru','Peru 6','SA','10','12',NULL,5.0,-18.0,-72.0,NULL,NULL), - ('OA','OA','OA',10,136,'O[A-C]7,4T7','Peru','Peru 7','SA','10','12',NULL,5.0,-15.0,-72.0,NULL,NULL), - ('OA','OA','OA',4,136,'O[A-C]8,4T8','Peru','Peru 8','SA','10','12',NULL,5.0,-5.0,-75.0,NULL,NULL), - ('OA','OA','OA',3,136,'O[A-C]9,4T9','Peru','Peru 9','SA','10','12',NULL,5.0,-7.0,-77.0,NULL,NULL), - ('OD','OD','OD',1,354,'OD','Lebanon','Lebanon','AS','20','39',NULL,-2.0,33.8889,35.5,NULL,NULL), - ('OE','OE','OE',1,206,'OE','Austria','Austria','EU','15','28',NULL,-1.0,48.2083,16.3736,NULL,NULL), - ('OH','OH','OH',1,224,'O[F-J]','Finland','Finland','EU','15','18',NULL,-2.0,60.2,24.95,NULL,NULL), - ('OH0','OH','OH',1,5,'O[F-I]0','Aland Island','Aland Island','EU','15','18','EU-002',-2.0,60.1528,19.95,NULL,NULL), - ('OJ0','OH','OH',1,167,'OJ0','Market Reef','Market Reef','EU','15','18','EU-053',-1.0,60.3011,19.1314,NULL,NULL), - ('OK','OK','OK',1,218,'~OK','Czechoslovakia','Czechoslovakia','EU','15','28',NULL,-1.0,50.0,14.0,NULL,'1992-12-31 00:00:00.000'), - ('OL','OL','OL',1,503,'OK,OL','Czech Republic','Czech Republic','EU','15','28',NULL,-1.0,50.0834,14.45,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',1,504,'OM','Slovakia','Slovakia','EU','15','28',NULL,-1.0,48.6667,19.5,'1993-01-01 00:00:00.000',NULL), - ('ON','ON','ON',1,209,'O[N-T]','Belgium','Belgium','EU','14','27',NULL,-1.0,50.845,4.3639,NULL,NULL), - ('OX','OX','OX',1,237,'OX,XP','Greenland','Greenland','NA','40','',NULL,3.0,64.1917,-51.6778,NULL,NULL), - ('OY','OY','OY',1,222,'OY,OW','Faroe Islands','Faroe Islands','EU','14','18','EU-018',0.0,62.0167,-6.7667,NULL,NULL), - ('OZ','OZ','OZ',1,221,'OZ,OU,OV,5P,5Q','Denmark','Denmark','EU','14','18',NULL,-1.0,55.3,10.5,NULL,NULL), - ('P2','P2','P2',1,163,'P2','Papua New Guinea','Papua New Guinea','OC','28','51',NULL,-10.0,-9.25,147.2,'1975-09-16 00:00:00.000',NULL), - ('P4','P4','P4',1,91,'P4','Aruba','Aruba','SA','9','11','SA-036',4.0,12.5,-70.0,'1986-01-01 00:00:00.000',NULL), - ('P5','P5','P5',1,344,'P5,P6,P7,P8,P9,HM','DPRK (North Korea)','North Korea','AS','25','44',NULL,-9.0,39.0333,125.75,NULL,NULL), - ('PA','PA','PA',1,263,'P[A-I]','Netherlands','Netherlands','EU','14','27',NULL,-1.0,52.3667,4.85,NULL,NULL), - ('E4','E4','E4',1,510,'E4','Palestine','Palestine','AS','20','39',NULL,-2.0,31.9,35.2042,'1999-02-01 00:00:00.000',NULL), - ('PJ4','PJ2','PJ',1,520,'PJ4','Bonaire','Bonaire','SA','9','11','SA-006',4.0,12.2,-68.25,'2010-10-10 00:00:00.000',NULL), - ('PJ5','PJ5','PJ',1,519,'PJ5','Saba & Saint Eustatius','St Eustatius Is.','NA','8','11','NA-145',4.0,17.49,-61.97,'2010-10-10 00:00:00.000',NULL), - ('PY','PY','PY',1,108,'P[P-Y], Z[V-Z]','Brazil','Brazil','SA','11',NULL,NULL,4.0,-15.8,-47.9167,NULL,NULL), - ('PY','PY','PY',22,108,'PP2, PU2[F-H], Z[V-Z]2F, Z[V-Z]2G, Z[V-Z]2H','Brazil','Goias ','SA','11','',NULL,5.0,-15.8,-50.0,NULL,NULL), - ('PY','PY','PY',12,108,'PP1, PU1[A-I], ZV1[A-I], ZW1[A-I], ZX1[A-I], ZY1[A-I], ZZ1[A-I]','Brazil','Esprito Santo ','SA','11','15',NULL,4.0,-20.0,-40.6,NULL,NULL), - ('PY','PY','PY',75,108,'PT7, PU7[M-P], Z[V-Z]7M, Z[V-Z]7N, Z[V-Z]7O, Z[V-Z]7P','Brazil','Ceara ','SA','11','15',NULL,4.0,-5.6,-37.0,NULL,NULL), - ('PY','PY','PY',52,108,'PP5, PU5[A-L], ZV5[A-L], ZW5[A-L], ZX5[A-L], ZY5[A-L], ZZ5[A-L]','Brazil','Santa Catarina ','SA','11','15',NULL,4.0,-27.0,-50.6,NULL,NULL), - ('PY','PY','PY',62,108,'PP6, PU6[A-I], ,ZV6[A-I], ZW6[A-I], ZX6[A-I], ZY6[A-I], ZZ6[A-I]','Brazil','Sergipe ','SA','11','13',NULL,4.0,-10.7,-37.3,NULL,NULL), - ('PY','PY','PY',72,108,'PP7, PU7[A-D], Z[V-Z]7A, Z[V-Z]7B, Z[V-Z]7C, Z[V-Z]7D','Brazil','Algonas ','SA','11','13',NULL,4.0,-9.8,-36.6,NULL,NULL), - ('PY','PY','PY',82,108,'PP8, PU8[A-C], Z[V-Z]8A, Z[V-Z]8B, Z[V-Z]8C','Brazil','Amazonas ','SA','11','',NULL,4.0,-3.9,-65.0,NULL,NULL), - ('PY','PY','PY',86,108,'PT8, PU8[J-L], Z[V-Z]8J, Z[V-Z]8K, Z[V-Z]8L','Brazil','Acre ','SA','11','12',NULL,4.0,-9.0,-70.3,NULL,NULL), - ('PY','PY','PY',11,108,'P[Q-Y]1, Z[V-Z]1','Brazil','Rio de Janeiro ','SA','11','15',NULL,4.0,-22.75,-43.0,NULL,NULL), - ('PY','PY','PY',21,108,'PR2,PS2,P[U-Y]2, Z[V-Z]2','Brazil','Sao Paulo ','SA','11','15',NULL,4.0,-22.6,-48.3,NULL,NULL), - ('PY','PY','PY',31,108,'P[P-Y]3, Z[V-Z]3','Brazil','Rio Grande do Sul ','SA','11','15',NULL,4.0,-29.8,-53.5,NULL,NULL), - ('PY','PY','PY',41,108,'P[P-Y]4, Z[V-Z]4','Brazil','Minas Gerias ','SA','11','',NULL,4.0,-18.8,-45.2,NULL,NULL), - ('PY','PY','PY',51,108,'P[Q-Y]5, Z[V-Z]5','Brazil','Parana ','SA','11','15',NULL,4.0,-24.8,-52.2,NULL,NULL), - ('PY','PY','PY',61,108,'P[Q-Y]6, Z[V-Z]6','Brazil','Bahia ','SA','11','',NULL,4.0,-12.2,-42.1,NULL,NULL), - ('PY','PY','PY',71,108,'PQ7, P[U-Y]7, Z[V-Z]7','Brazil','Pernambuco ','SA','11','13',NULL,4.0,-8.5,-37.7,NULL,NULL), - ('PY','PY','PY',81,108,'P[X-Y]8, PU8[W-Y], Z[V-Z]8','Brazil','Para ','SA','11','13',NULL,4.0,-3.3,-52.7,NULL,NULL), - ('PY','PY','PY',91,108,'P[P-S]9, P[U-Y]9, ZV9[O-Z], ZW9[O-Z], ZX9[O-Z], ZY9[O-Z], ZZ9[O-Z]','Brazil','Mato Grosso ','SA','11','',NULL,4.0,-13.3,-56.0,NULL,NULL), - ('PY','PY','PY',23,108,'PQ2, PU2[I-J], Z[V-Z]2I, Z[V-Z]2J','Brazil','Tocantins ','SA','11','13',NULL,4.0,-10.4,-48.4,NULL,NULL), - ('PY','PY','PY',84,108,'PR8, PU8[M-O], Z[V-Z]8M, Z[V-Z]8N ,Z[V-Z]8O','Brazil','Maranhao ','SA','11','15',NULL,4.0,-4.9,-45.2,NULL,NULL), - ('PY','PY','PY',24,108,'PT2, PU2[A-E], Z[V-Z]2A, Z[V-Z]2B, Z[V-Z]2C, Z[V-Z]2D, Z[V-Z]2E','Brazil','Brasilia ','SA','11','15',NULL,4.0,-15.9,-47.9,NULL,NULL), - ('PY','PY','PY',83,108,'PQ8, PU8[G-I], Z[V-Z]G ,Z[V-Z]8H, Z[V-Z]8I','Brazil','Amapa ','SA','11','13',NULL,4.0,1.62,-52.1,NULL,NULL), - ('PY','PY','PY',73,108,'PR7, PU7[E-H], Z[V-Z]7E, Z[V-Z]7F, Z[V-Z]7G, Z[V-Z]7H','Brazil','Paraiba ','SA','11','13',NULL,4.0,-7.1,-36.3,NULL,NULL), - ('PY','PY','PY',85,108,'PS8, PU8[P-S], Z[V-Z]8P, Z[V-Z]8Q, Z[V-Z]8R, Z[V-Z]8S','Brazil','Piaui ','SA','11','13',NULL,4.0,-7.4,-42.4,NULL,NULL), - ('PY','PY','PY',74,108,'PS7, PU7[I-L], Z[V-Z]7I, Z[V-Z]7J, Z[V-Z]7K, Z[V-Z]7L','Brazil','Rio Grande del Norte ','SA','11','12',NULL,4.0,-5.8,-36.7,NULL,NULL), - ('PY0-F','PY','PY',1,56,'PY0-F,P[P-Y]0F,P[P-Y]0ZF','Fernando De Noronha','Fernando De Noronha','SA','11','13','SA-003',2.0,-3.8333,-32.4,NULL,NULL), - ('PY0-F','PY','PY',2,56,'Z[V-Z]0F,Z[V-Z]0ZF','Fernando De Noronha','Fernando De Noronha','SA','11','13','SA-003',2.0,-3.8333,-32.4,NULL,NULL), - ('PY0-S','PY','PY',1,253,'PY0-S,P[P-Y]0S,P[P-Y]0ZS,Z[V-Z]0S,Z[V-Z]0ZS','Saint Peter & Saint Paul Rocks','Saint Peter and Saint Paul Rocks','SA','11','13','SA-014',2.0,0.9167,-29.3458,NULL,NULL), - ('PY0-T','PY','PY',1,273,'PY0-T,P[P-Y]0T,P[P-Y]0ZT,Z[V-Z]0T,Z[V-Z]0ZT,ZV0M','Trindade & Martim Vaz Islands','Trindade and Martim Vas Islands','SA','11','15','SA-010',2.0,-20.5083,-29.3333,NULL,NULL), - ('PZ','PZ','PZ',1,140,'PZ','Suriname','Suriname','SA','9','12',NULL,3.0,5.8333,-55.1667,NULL,NULL), - ('S0','S0','S0',1,302,'S0','Western Sahara','Western Sahara','AF','33','46',NULL,0.0,24.5,-13.75,NULL,NULL), - ('S2','S2','S2',1,305,'S2,S3','Bangladesh','Bangladesh','AS','22','41',NULL,-6.0,23.7,90.4,NULL,NULL), - ('S5','S5','S5',1,499,'S5','Slovenia','Slovenia','EU','15','28',NULL,-1.0,46.05,14.5,'1991-06-26 00:00:00.000',NULL), - ('S7','S7','S7',1,379,'S7','Seychelles Islands','Seychelles Islands','AF','39','53',NULL,-4.0,-4.6167,55.45,NULL,NULL), - ('S9','S9','S9',1,219,'S9','Sao Tome & Principe','Sao Tome','AF','36','47','',0.0,0.333,6.725,NULL,NULL), - ('SM','SM','SM',1,284,'S[A-M],7S,8S','Sweden','Sweden','EU','14','18',NULL,-1.0,59.3292,18.0653,NULL,NULL), - ('SP','SP','SP',1,269,'S[N-R],HF,3Z','Poland','Poland','EU','15','28',NULL,-1.0,52.2334,21.0167,NULL,NULL), - ('ST','ST','ST',1,466,'ST,6T,6U','Sudan','Sudan','AF','34','',NULL,-2.0,15.55,32.5,NULL,NULL), - ('ST0','ST0','ST0',1,244,'~ST0,~6T0,~6U0','Southern Sudan','Southern Sudan','AF','34','',NULL,-2.0,5.0,32.0,'1972-05-07 00:00:00.000','1998-04-30 00:00:00.000'), - ('SU','SU','SU',1,478,'SU,6A,6B','Egypt','Egypt','AF','34','38',NULL,-2.0,30.05,31.25,NULL,NULL), - ('SV','SV','SV',1,236,'S[V-Z],J4','Greece','Greece','EU','20','28',NULL,-2.0,38.0,23.725,NULL,NULL), - ('SV-A','SV','SV',1,180,'SV-A,SV2ASP,SV2RSG','Mount Athos','Mount Athos','EU','20','28',NULL,-2.0,40.1667,24.3334,NULL,NULL), - ('SV5','SV','SV',1,45,'S[V-Z]5,J45','Dodecanese','Dodecanese','EU','20','28','EU-001',-2.0,36.2,28.0,NULL,NULL), - ('SV9','SV','SV',1,40,'S[V-Z]9,J49','Crete','Crete','EU','20','28','',-2.0,35.25,25.0,NULL,NULL), - ('T2','T2','T2',1,282,'T2','Tuvalu','Tuvalu','OC','31','65','OC-015',-12.0,-7.4834,178.683,'1976-01-01 00:00:00.000',NULL), - ('T30','T30','T3',1,301,'T30','Western Kiribati','Western Kiribati','OC','31','65','OC-017',-12.0,1.3517,173.0414,NULL,NULL), - ('T31','T31','T3',1,31,'T31','Central Kiribati','Central Kiribati','OC','31','62','OC-043',-13.0,-2.7695,-171.7178,NULL,NULL), - ('T32','T32','FO-F',1,48,'T32','Eastern Kiribati','Eastern Kiribati','OC','31','','',-14.0,1.9987,-157.3539,NULL,NULL), - ('T33','T33','T3',1,490,'T33','Banaba Island','Banaba Island','OC','31','65','OC-018',-11.0,-0.8583,169.3333,NULL,NULL), - ('T5','T5','T5',1,232,'T5,6O','Somalia','Somalia','AF','37','48',NULL,-3.0,2.05,45.33,NULL,NULL), - ('T7','T7','T7',1,278,'T7','San Marino','San Marino','EU','15','28',NULL,-1.0,43.9333,12.45,NULL,NULL), - ('E7','E7','E7',1,501,'E7','Bosnia-Herzegovina','Bosnia-Herzegovina','EU','15','28',NULL,-1.0,43.8567,18.4131,'1991-10-15 00:00:00.000',NULL), - ('TA','TA','TA',2,390,'TA,TB,TC,YM','Turkey','Turkey (Asia)','AS','20','39',NULL,-3.0,39.9167,33.8667,NULL,NULL), - ('TF','TF','TF',1,242,'TF','Iceland','Iceland','EU','40','17',NULL,0.0,64.667,-18.5,NULL,NULL), - ('TG','TG','TG',1,76,'TG,TD','Guatemala','Guatemala','NA','7','11',NULL,6.0,14.64,-90.5,NULL,NULL), - ('TI','TI','TI',1,308,'TI,TE','Costa Rica','Costa Rica','NA','7','11',NULL,6.0,9.9333,-84.1,NULL,NULL), - ('TI9','TI','TI9',1,37,'TI9,TE9','Cocos Island','Cocos Island','NA','7','11','NA-012',6.0,5.55,-87.05,NULL,NULL), - ('TJ','TJ','TJ',1,406,'TJ','Cameroon','Cameroon','AF','36','47',NULL,-1.0,3.9167,11.5,NULL,NULL), - ('TK','F','TK',1,214,'TK','Corsica','Corsica','EU','15','28','',-1.0,42.1,9.0,NULL,NULL), - ('TL','TL','TL',1,408,'TL','Central African Republic','Central African Republic','AF','36','47',NULL,-1.0,4.3667,18.5,'1960-08-13 00:00:00.000',NULL), - ('TN','TN','TN',1,412,'TN','Republic of the Congo','Congo','AF','36','52',NULL,-1.0,-4.25,15.25,'1960-08-15 00:00:00.000',NULL), - ('TR','TR','TR',1,420,'TR','Gabon','Gabon','AF','36','52',NULL,-1.0,0.4167,9.5,'1960-08-17 00:00:00.000',NULL), - ('TT','TT','TT',1,410,'TT','Chad','Chad','AF','36','47',NULL,-1.0,12.1083,15.1,'1960-08-11 00:00:00.000',NULL), - ('TU','TU','TU',1,428,'TU','Cote D''Ivoire','Ivory Coast','AF','35','46',NULL,0.0,6.8167,-5.2833,'1960-08-07 00:00:00.000',NULL), - ('TY','TY','TY',1,416,'TY','Benin','Benin','AF','35','46',NULL,-1.0,6.5111,2.6,'1960-08-01 00:00:00.000',NULL), - ('TZ','TZ','TZ',1,442,'TZ','Mali','Mali','AF','35','46',NULL,0.0,12.667,-8.0,'1960-06-20 00:00:00.000',NULL), - ('UA','UA','UA',5,54,'R?1A,R?1B,U!1A,U!1B,R?1L,R[A-H;J-Z]1M,U!1L,U!1M','European Russia','St. Petersburg ','EU','16','',NULL,-4.0,59.6,30.3,NULL,NULL), - ('UA','UA','UA',7,54,'R?1C,R?1D,U!1C,U!1D,R1C,R1D,U1C,U1D','European Russia','Leningrad ','EU','16','',NULL,-4.0,59.6,30.3,NULL,NULL), - ('UA','UA','UA',10,54,'R[A-H;J-Z]1O,R1O,U!1O,U1O','European Russia','Arkhangelsk ','EU','16','75',NULL,-4.0,64.3,40.3,NULL,NULL), - ('UA','UA','UA',12,54,'R[A-H;J-Z]1P,U!1P,R1P,U1P','European Russia','Nenetsky Autonomous Okrug ','EU','16','',NULL,-4.0,67.8,53.1,NULL,NULL), - ('UA','UA','UA',14,54,'R?1Q,U!1Q,R1Q,U1Q,R?1R,U!1R,R1R,U1R,R?1S,U!1S,R1S,U1S','European Russia','Vologda ','EU','16','',NULL,-4.0,59.1,39.9,NULL,NULL), - ('UA','UA','UA',15,54,'R?1T,U!1T,R1T,U1T','European Russia','Novgorod ','EU','16','29',NULL,-4.0,58.3,31.3,NULL,NULL), - ('UA','UA','UA',16,54,'R?1W,U!1W,R1W,U1W,R?1X,U!1X,R1X,U1X','European Russia','Pskov ','EU','16','29',NULL,-4.0,57.5,28.3,NULL,NULL), - ('UA','UA','UA',17,54,'R?1Z,U!1Z,R1Z,U1Z,R!1Y,U!1Y,R1Y,U1Y','European Russia','Murmansk ','EU','16','19',NULL,-4.0,68.8,33.5,NULL,NULL), - ('UA','UA','UA',18,54,'R[B-Z]2A,R[B-Z]2B,R[B-Z]2C,R2A,R2B,R2C,U2A,U2B,U2C','European Russia','Moscow ','EU','16','29',NULL,-4.0,55.5,38.2,NULL,NULL), - ('UA','UA','UA',22,54,'R?3D,U!3D,R?3F,U!3F,R?3H,U!3H,R3D,R3F,R3H,U3D,U3H','European Russia','Moscow region ','EU','16','29',NULL,-4.0,55.5,38.2,NULL,NULL), - ('UA','UA','UA',24,54,'R[B-Z]2E,R2E,U2E,R?3E,U!3E,R3E,U3E,R?5E,U!5E,R5E','European Russia','Orel ','EU','16','29',NULL,-4.0,52.6,46.1,NULL,NULL), - ('UA','UA','UA',25,54,'R[B-Z]2G,R2G,U2G,R?3G,U!3G,R3G,U3G,R?5G,U!5G,R5G','European Russia','Lipetsk ','EU','16','29',NULL,-4.0,52.4,39.6,NULL,NULL), - ('UA','UA','UA',26,54,'R[B-Z]2I,R[B-Z]2J,R2I,R2J,U2I,U2J','European Russia','Tver ','EU','16','29',NULL,-4.0,56.5,35.9,NULL,NULL), - ('UA','UA','UA',29,54,'R[B-Z]2L,R2L,U2L,R?3L,U!3L,R3L,U3L,R?5L,U!5L,R5L','European Russia','Smolensk ','EU','16','29',NULL,-4.0,54.5,32.1,NULL,NULL), - ('UA','UA','UA',30,54,'R[B-Z]2M,R2M,U2M,R?3M,U!3M,R3M,U3M,R?5M,U!5M,R5M','European Russia','Yaroslavl ','EU','16','29',NULL,-4.0,57.4,39.9,NULL,NULL), - ('UA','UA','UA',31,54,'R[B-Z]2N,R2N,U2N,R?3N,U!3N,R3N,U3N,R?5N,U!5N,R5N','European Russia','Kostroma ','EU','16','29',NULL,-4.0,57.5,40.9,NULL,NULL), - ('UA','UA','UA',32,54,'R[B-Z]2P,R2P,U2P,R?3P,U!3P,R3P,U3P,R?5P,U!5P,R5P','European Russia','Tula ','EU','16','29',NULL,-4.0,54.1,39.2,NULL,NULL), - ('UA','UA','UA',34,54,'R[B-Z]2Q,R2Q,U2Q,R?3Q,U!3Q,R3Q,U3Q,R?5Q,U!5Q,R5Q','European Russia','Voronezh ','EU','16','29',NULL,-4.0,51.4,39.2,NULL,NULL), - ('UA','UA','UA',36,54,'R[B-Z]2R,R2R,U2R,R?3R,U!3R,R3R,U3R,R?5R,U!5R,R5R','European Russia','Tambov ','EU','16','29',NULL,-4.0,52.4,41.5,NULL,NULL), - ('UA','UA','UA',37,54,'R[B-Z]2S,R2S,U2S,R?3S,U!3S,R3S,U3S,R?5S,U!5S,R5S','European Russia','Ryazan ','EU','16','29',NULL,-4.0,54.4,39.8,NULL,NULL), - ('UA','UA','UA',38,54,'R[B-Z]2T,R2T,U2T,R?3T,U!3T,R3T,U3T,R?5T,U!5T,R5T','European Russia','Nizhny Novgorod ','EU','16','29',NULL,-4.0,56.2,44.1,NULL,NULL), - ('UA','UA','UA',39,54,'R[B-Z]2U,R2U,U2U,R?3U,U!3U,R3U,U3U,R?5U,U!5U,R5U','European Russia','Ivanovo ','EU','16','29',NULL,-4.0,57.1,41.1,NULL,NULL), - ('UA','UA','UA',40,54,'R[B-Z]2V,R2V,U2V,R?3V,U!3V,R3V,U3V,R?5V,U!5V,R5V','European Russia','Vladimir ','EU','16','29',NULL,-4.0,56.1,40.4,NULL,NULL), - ('UA','UA','UA',41,54,'R[B-Z]2W,U[B-I]2W,R2W,U2W,R?3W,U!3W,R3W,U3W,R?5W,U!5W,R5W','European Russia','Kursk ','EU','16','29',NULL,-4.0,51.4,36.2,NULL,NULL), - ('UA','UA','UA',42,54,'R[B-Z]2X,R2X,U2X,R?3X,U!3X,R3X,U3X,R?5X,U!5X,R5X','European Russia','Kaluga ','EU','16','29',NULL,-4.0,54.3,36.3,NULL,NULL), - ('UA','UA','UA',43,54,'R[B-Z]2Y,R2Y,U2Y,R?3Y,U!3Y,R3Y,U3Y,R?5Y,U!5Y,R5Y','European Russia','Bryansk ','EU','16','29',NULL,-4.0,53.2,34.3,NULL,NULL), - ('UA','UA','UA',44,54,'R[B-Z]2Z,R2Z,U2Z,R?3Z,U!3Z,R3Z,U3Z,R?5Z,U!5Z,R5Z','European Russia','Belgorod ','EU','16','29',NULL,-4.0,50.4,36.7,NULL,NULL), - ('UA','UA','UA',45,54,'R?4A,R?4B,U!4A,U!4B,R4A,U4A','European Russia','Volgograd ','EU','16','29',NULL,-4.0,48.4,44.5,NULL,NULL), - ('UA','UA','UA',46,54,'R?4C,R?4D,U!4C,U!4D,R4C,R4D,U4C,U4D','European Russia','Saratov ','EU','16','',NULL,-4.0,51.3,46.1,NULL,NULL), - ('UA','UA','UA',47,54,'R?4F,U!4F,R4F,U4F','European Russia','Penza ','EU','16','29',NULL,-4.0,53.1,45.1,NULL,NULL), - ('UA','UA','UA',48,54,'R?4H,R?4I,U!4H,U!4I,R4H,R4I,U4H,U4I','European Russia','Samara ','EU','16','',NULL,-4.0,53.1,50.1,NULL,NULL), - ('UA','UA','UA',49,54,'R?4L,R?4M,U!4L,U!4M,R4L,R4M,U4L,U4M','European Russia','Uljanovsk ','EU','16','29',NULL,-4.0,54.2,48.4,NULL,NULL), - ('UA','UA','UA',50,54,'R?4N,R?4O,U!4N,U!4O,R4N,R4O,U4N,U4O','European Russia','Kirov ','EU','16','30',NULL,-4.0,58.4,49.7,NULL,NULL), - ('UA','UA','UA',51,54,'R?4P,R?4Q,R?4R,U!4P,U!4Q,U!4R,R4P,R4Q,R4R,U4P,U4Q,U4R','European Russia','Republic of Tataria ','EU','16','',NULL,-4.0,55.5,49.1,NULL,NULL), - ('UA','UA','UA',52,54,'R?4S,R?4T,U!4S,U!4T,R4S,R4T,U4S,U4T','European Russia','Republic of Marij-El ','EU','16','29',NULL,-4.0,56.6,47.9,NULL,NULL), - ('UA','UA','UA',53,54,'R?4U,U!4U,R4U,U4U','European Russia','Republic of Mordovia ','EU','16','29',NULL,-4.0,54.1,45.2,NULL,NULL), - ('UA','UA','UA',54,54,'R?4W,U!4W,R4W,U4W','European Russia','Republic of Udmurtia ','EU','16','30',NULL,-4.0,57.1,52.1,NULL,NULL), - ('UA','UA','UA',55,54,'R?4Y,R?4Z,U!4Y,U!4Z,R4Y,R4Z,U4Y,U4Z','European Russia','Republic of Chuvashia ','EU','16','29',NULL,-4.0,56.8,47.1,NULL,NULL), - ('UA','UA','UA',56,54,'R?6A,R?6B,R?6C,R?6D,U!6A,U!6B,U!6C,U!6D,R6A,R6B,R6C,R6D,U6A,U6B,U6C,U6D,R?7A,R?7B,R?7C,R?7D,U!7A,U!7B,U!7C,U!7D,R7A,R7B,R7C,R7D','European Russia','Krasnodar ','EU','16','29',NULL,-4.0,45.1,39.1,NULL,NULL), - ('UA','UA','UA',58,54,'R?6E,U!6E,R6E,U6E,R?7E,U!7E,R7E','European Russia','Repub of Karachaevo-Cherkessia ','EU','16','29',NULL,-4.0,43.8,41.8,NULL,NULL), - ('UA','UA','UA',59,54,'R?6F,R?6G,R?6H,U!6F,U!6G,U!6H,R6F,R6G,R6H','European Russia','Stavropol ','EU','16','29',NULL,-4.0,45.2,41.9,NULL,NULL), - ('UA','UA','UA',60,54,'R?6I,U!6I,R6I,U6I,R?7I,U!7I,R7I','European Russia','Republic of Kalmykia ','EU','16','29',NULL,-4.0,46.2,44.2,NULL,NULL), - ('UA','UA','UA',61,54,'R?6J,U!6J,R6J,U6J,R?7J,U!7J,R7J','European Russia','Republic of Northern Ossetia ','EU','16','29',NULL,-4.0,43.1,44.7,NULL,NULL), - ('UA','UA','UA',62,54,'R?6L,R?6M,R?6N,U!6L,U!6M,U!6N,R6L,R6M,R6N,U6L,U6M,U6N','European Russia','Rostov ','EU','16','29',NULL,-4.0,47.1,39.7,NULL,NULL), - ('UA','UA','UA',64,54,'R?6P,U!6P,R6P,U6P,R?7P,U!7P,R7P','European Russia','Republic of Chechnya ','EU','16','29',NULL,-4.0,43.2,45.8,NULL,NULL), - ('UA','UA','UA',66,54,'R?6U,U!6U,R6U,U6U,R?7U,U!7U,R7U','European Russia','Astrakhan ','EU','16','29',NULL,-4.0,47.0,48.0,NULL,NULL), - ('UA','UA','UA',68,54,'R?6W,U!6W,R6W,U6W,R?7W,U!7W,R7W','European Russia','Republic of Daghestan ','EU','16','29',NULL,-4.0,43.1,47.0,NULL,NULL), - ('UA','UA','UA',69,54,'R?6X,U!6X,R6X,U6X,R?7X,U!7X,R7X','European Russia','Republic of Kabardino-Balkaria ','EU','16','29',NULL,-4.0,43.7,43.0,NULL,NULL), - ('UA','UA','UA',70,54,'R?6Y,U!6Y,R6Y,U6Y,R?7Y,U!7Y,R7Y','European Russia','Republic of Adygeya ','EU','16','29',NULL,-4.0,44.5,40.1,NULL,NULL), - ('UA','UA','UA',8,54,'R[A-H;J-Z]1N,U!1N,R1N,U1N','European Russia','Republic of Karelia ','EU','16','19',NULL,-4.0,61.8,34.4,NULL,NULL), - ('UA','UA','UA',1,54,'R#,U1,U2,U3,U4,U6,U9,U0, R?1,R?2,R?3,R?4,R?5,R?6,R?7,R?8,R?9,R?0,U!1,U!2,U!3,U!4,U!5,U!6,U!7,U!8,U!9,U[B-I]0','European Russia','European Russia','EU','16',NULL,NULL,-4.0,54.0,40.0,NULL,NULL), - ('UA0','UA0','UA',25,15,'R?0A,U!0A,R0A,U0A','Asiatic Russia','Krasnoyarsk ','AS','18','',NULL,-8.0,56.0,93.0,NULL,NULL), - ('UA0','UA0','UA',26,15,'R?0B,U!0B,R0B,U0B','Asiatic Russia','Krasnoyarsk ','AS','18','',NULL,-8.0,73.0,91.0,NULL,NULL), - ('UA0','UA0','UA',28,15,'R[A-H;J-Z]0C,U!0C,R0C,U0C','Asiatic Russia','Khabarovsk ','AS','19','',NULL,-11.0,48.0,135.0,NULL,NULL), - ('UA0','UA0','UA',30,15,'R?0D,U!0D,R0D,U0D','Asiatic Russia','Yevreyskaya Autonomous Okrug ','AS','19','33',NULL,-12.0,48.0,133.0,NULL,NULL), - ('UA0','UA0','UA',32,15,'R?0E,R[A-H;J-Z]0F,R?0G,U!0E,U!0F,U!0G,R0E,R0F,R0G,U0E,U0F,U0G','Asiatic Russia','Sakhalin ','AS','19','34',NULL,-12.0,47.0,143.0,NULL,NULL), - ('UA0','UA0','UA',27,15,'R?0H,U!0H,R0H,U0H','Asiatic Russia','Krasnoyarsk ','AS','18','',NULL,-8.0,64.0,100.0,NULL,NULL), - ('UA0','UA0','UA',33,15,'R?0I,U!0I,R0I,U0I','Asiatic Russia','Magadan ','AS','19','24',NULL,-12.0,60.0,151.0,NULL,NULL), - ('UA0','UA0','UA',34,15,'R?0J,U!0J,R0J,U0J','Asiatic Russia','Amurskaya ','AS','19','33',NULL,-10.0,52.0,127.0,NULL,NULL), - ('UA0','UA0','UA',35,15,'R[A-H;J-Z]0K,U!0K,R0K,U0K','Asiatic Russia','Chukotka Autonomous Okrug ','AS','19','26',NULL,-12.0,65.0,175.0,NULL,NULL), - ('UA0','UA0','UA',37,15,'R?0L,R?0M,R[A-H;J-Z]0N,U!0L,U!0M,U!0N,R0L,R0M,R0N,U0L,UOM,U0N','Asiatic Russia','Primorskiy Kray ','AS','19','34',NULL,-11.0,43.0,132.0,NULL,NULL), - ('UA0','UA0','UA',39,15,'R?0O,R?0P,U!0O,U!0P,R0O,R0P,U0O,U0P','Asiatic Russia','Republic of Buryatia ','AS','18','',NULL,-9.0,52.0,107.0,NULL,NULL), - ('UA0','UA0','UA',40,15,'R[A-H;J-Z]0Q,U!0Q,R0Q,U0Q','Asiatic Russia','Republic of Yakutia ','AS','19','',NULL,-10.0,62.0,130.0,NULL,NULL), - ('UA0','UA0','UA',44,15,'R?0S,R?0T,U!0S,U!0T,R0S,R0T,U0S,U0T','Asiatic Russia','Irkutsk ','AS','18','',NULL,-9.0,52.0,104.0,NULL,NULL), - ('UA0','UA0','UA',45,15,'R?0U,U!0U,R0U,U0U','Asiatic Russia','Zabajkal``skiy Kraj ','AS','18','',NULL,-10.0,52.0,113.0,NULL,NULL), - ('UA0','UA0','UA',47,15,'R?0W,U!0W,R0W,U0W','Asiatic Russia','Republic of Khakassia ','AS','18','',NULL,-8.0,53.0,93.0,NULL,NULL), - ('UA0','UA0','UA',48,15,'R[A-H;J-Z]0X,U!0X,R0X,U0X','Asiatic Russia','Kamchatka ','AS','19','',NULL,-12.0,57.0,160.0,NULL,NULL), - ('UA0','UA0','UA',50,15,'R?0Y,U!0Y,R0Y,U0Y','Asiatic Russia','Republic of Tuva ','AS','23','',NULL,-8.0,52.0,95.0,NULL,NULL), - ('UA0','UA0','UA',51,15,'R[A-H;J-Z]0Z,U!0Z,R0Z,U0Z','Asiatic Russia','Kamchatka ','AS','19','35',NULL,-12.0,53.0,159.0,NULL,NULL), - ('UA0','UA0','UA',43,15,'R?0R,U!0R,R0R,U0R','Asiatic Russia','Irkutsk ','AS','18','32',NULL,-9.0,56.0,102.0,NULL,NULL), - ('UA0','UA0','UA',46,15,'R?0V,U!0V,R0V','Asiatic Russia','Zabajkal``skiy Kraj ','AS','18','32',NULL,-10.0,52.0,107.0,NULL,NULL), - ('UA0','UA0','UA',3,15,'R?9A,U!9A,R?9B,U!9B,R9A,R9B,U9A,U9B','Asiatic Russia','Chelyabinsk ','AS','17','30',NULL,-6.0,54.0,61.0,NULL,NULL), - ('UA0','UA0','UA',5,15,'R?9C,R?9D,R?9E,U!9C,U!9D,U!9E,R9C,R9D,R9E,U9C,U9D,U9E','Asiatic Russia','Sverdlovsk ','AS','17','',NULL,-6.0,57.0,61.0,NULL,NULL), - ('UA','UA','UA',73,54,'R?8F,U!8F,R8F,R?9F,U!9F,R9F,U9F','European Russia','Perm ','EU','17','',NULL,-6.0,59.0,56.0,NULL,NULL), - ('UA','UA','UA',74,54,'R?8G,U!8G,R8G,R?9G,U!9G,R9G,U9G','European Russia','Perm ','EU','17','',NULL,-6.0,59.0,56.0,NULL,NULL), - ('UA0','UA0','UA',8,15,'R?9H,R?9I,U!9H,U!9I,R9H,R9I,U9H,U9I','Asiatic Russia','Tomsk ','AS','18','',NULL,-7.0,57.0,85.0,NULL,NULL), - ('UA0','UA0','UA',9,15,'R?8J,U!8J,R8J,R?9J,U!9J,R9J,U9J','Asiatic Russia','Khanty-Mansyisky Auton. Okrug ','AS','17','',NULL,-6.0,61.0,69.0,NULL,NULL), - ('UA0','UA0','UA',10,15,'R?8K,U!8K,R8K,R?9K,U!9K,R9K,U9K','Asiatic Russia','Yamalo-Nenetsky Auton. Okrug ','AS','17','',NULL,-6.0,65.0,75.0,NULL,NULL), - ('UA0','UA0','UA',11,15,'R?8L,U!8L,R8L,R?9L,U!9L,R9L,U9L','Asiatic Russia','Tyumen ','AS','17','30',NULL,-6.0,57.0,65.0,NULL,NULL), - ('UA0','UA0','UA',13,15,'R?9M,R?9N,U!9M,U!9N,R9M,R9N,U9M,U9N','Asiatic Russia','Omsk ','AS','17','',NULL,-7.0,55.0,74.0,NULL,NULL), - ('UA0','UA0','UA',14,15,'R?8O,R?9O,R?9P,U!8O,U!9O,U!9P,R8O,R9O,R9P,U9O,U9P','Asiatic Russia','Novosibirsk ','AS','18','31',NULL,-7.0,55.0,83.0,NULL,NULL), - ('UA0','UA0','UA',16,15,'R?9Q,R?9R,U!9Q,U!9R,R9Q,R9R,U9Q,U9R','Asiatic Russia','Kurgan ','AS','17','30',NULL,-6.0,55.0,65.0,NULL,NULL), - ('UA0','UA0','UA',19,15,'R?8U,R?9U,R?9V,U!8U,U!9U,U!9V,R8U,R9U,R9V,U9U,U9V','Asiatic Russia','Kemerovo ','AS','18','31',NULL,-8.0,55.0,86.0,NULL,NULL), - ('UA0','UA0','UA',20,15,'R?8W,U!8W,R8W,R?9W,U!9W,R9W,U9W','Asiatic Russia','Bashkortostan ','EU','16','30',NULL,-6.0,54.4,56.0,NULL,NULL), - ('UA','UA','UA',75,54,'R?8X,U!8X,R8X,R?9X,U!9X,R9X,U9X','European Russia','Komi ','EU','17','',NULL,-6.0,63.0,54.0,NULL,NULL), - ('UA0','UA0','UA',21,15,'R?8Y,U!8Y,R8Y,R?9Y,U!9Y,R9Y,U9Y','Asiatic Russia','Altaysky Kray ','AS','18','31',NULL,-7.0,53.2,83.8,NULL,NULL), - ('UA0','UA0','UA',22,15,'R?8Z,U!8Z,R8Z,R?9Z,U!9Z,R9Z,U9Z','Asiatic Russia','Republic of Altay ','AS','18','31',NULL,-7.0,51.0,87.0,NULL,NULL), - ('UA2','UA2','UA',1,126,'R?2F,R?2K,UA2?,U[B-I]2F,U[B-I]2K,R2F,R2K,U2F,U2K','Kaliningrad','Kaliningrad ','EU','15','29',NULL,-3.0,54.7167,20.5,NULL,NULL), - ('UJ','UJ','UJ',1,292,'UJ,UK,UL,UM,U8','Uzbekistan','Uzbekistanian','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',2,292,'UJ#A,UK#A,UL#A,UM#A,U8A','Uzbekistan','Tashkent','AS','17','30',NULL,-5.0,41.0,70.0,NULL,NULL), - ('UJ','UJ','UJ',3,292,'UJ#B,UK#B,UL#B,UM#B,U8B','Uzbekistan','Tashkentskaya','AS','17','30',NULL,-5.0,41.0,70.0,NULL,NULL), - ('UJ','UJ','UJ',4,292,'UJ#C,UK#C,UL#C,UM#C,U8C','Uzbekistan','Kashkadarskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',5,292,'UJ#D,UK#D,UL#D,UM#D,U8D','Uzbekistan','Syrdarinskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',6,292,'UJ#F,UK#F,UL#F,UM#F,U8F','Uzbekistan','Andijanskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',7,292,'UJ#G,UL#G,UM#G,U8G','Uzbekistan','Ferganskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',8,292,'UJ#I,UK#I,UL#I,UM#I,U8I','Uzbekistan','Samarkandskaya','AS','17','30',NULL,-5.0,39.0,66.0,NULL,NULL), - ('UJ','UJ','UJ',9,292,'UJ#L,UK#L,UL#L,UM#L,U8L','Uzbekistan','Bukharskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',10,292,'UJ#O,UK#O,UL#O,UM#O,U8O','Uzbekistan','Namangan','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',11,292,'UJ#Q,UK#Q,UL#Q,UM#Q,U8Q','Uzbekistan','Navoyaskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',12,292,'UJ#T,UK#T,UL#T,UM#T,U8T','Uzbekistan','Surkham Darinskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',13,292,'UJ#U,UK#U,UL#U,UM#U,U8U','Uzbekistan','Khorezmskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',14,292,'UJ#V,UK#V,UL#V,UM#V,U8V','Uzbekistan','Dzhizakskaya','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UJ','UJ','UJ',15,292,'UJ#Z,UK#Z,UL#Z,UM#Z,U8Z','Uzbekistan','Kara-Kalpakia','AS','17','30',NULL,-5.0,40.0,64.0,NULL,NULL), - ('UN','UN','UN',1,130,'UN,UO,UP,UQ','Kazakhstan','Kazakhstanian','AS','17',NULL,NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',2,130,'UN#A,UO#A,UP#A,UQ#A,U7A','Kazakhstan','Mangishlakskaya','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',3,130,'UN#B,UO#B,UP#B,UQ#B,U7B','Kazakhstan','Celinogradskaya','AS','17','30',NULL,-5.0,51.0,71.0,NULL,NULL), - ('UN','UN','UN',4,130,'UN#C,UO#C,UP#C,UQ#C,U7C','Kazakhstan','North Kazakhstanskaya','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',5,130,'UN#D,UO#D,UP#D,UQ#D,U7D','Kazakhstan','Semipalatinskaya','AS','17','31',NULL,-5.0,51.0,81.0,NULL,NULL), - ('UN','UN','UN',6,130,'UN#E,UO#E,UP#E,UQ#E,U7E','Kazakhstan','Kokchetavaskaya','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',7,130,'UN#F,UO#F,UP#F,UQ#F,U7F','Kazakhstan','Pavoldarskaya','AS','17','',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',8,130,'UN#G,UO#G,UP#G,U7G','Kazakhstan','Alma Ata','AS','17','30',NULL,-5.0,43.0,78.0,NULL,NULL), - ('UN','UN','UN',9,130,'UN#I,UO#I,UP#I,UQ#I,U7I','Kazakhstan','Aktubinskaya','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',10,130,'UN#J,UO#J,UP#J,UQ#J,U7J','Kazakhstan','East Kazakhstanskaya','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',11,130,'UN#K,UO#K,UQ#K,U7K','Kazakhstan','Kizil-Ordinskaya','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',12,130,'UN#L,UO#L,UP#L,UQ#L,U7L','Kazakhstan','Kustanayskaya','AS','17','30',NULL,-5.0,53.0,73.0,NULL,NULL), - ('UN','UN','UN',13,130,'UN#M,UO#M,UP#M,UQ#M,U7M','Kazakhstan','Uralskaya','AS','17','',NULL,-5.0,53.0,53.0,NULL,NULL), - ('UN','UN','UN',14,130,'UO#N,UP#N,UQ#N,U7N','Kazakhstan','Chimkentskaya','AS','17','30',NULL,-5.0,43.0,69.0,NULL,NULL), - ('UN','UN','UN',15,130,'UN#O,UO#O,UP#O,UQ#O,U7O','Kazakhstan','Guryevskaya','AS','17','',NULL,-5.0,48.0,49.0,NULL,NULL), - ('UN','UN','UN',16,130,'UN#P,UO#P,UP#P,UQ#P,U7P','Kazakhstan','Karagandinskaya','AS','17','',NULL,-5.0,50.0,74.0,NULL,NULL), - ('UN','UN','UN',17,130,'UN#Q,UO#Q,UP#Q,UQ#Q,U7Q','Kazakhstan','Alma-Atinskaya','AS','17','',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',18,130,'UN#R,UO#R,UP#R,UQ#R,U7R','Kazakhstan','Dzhezkaganskaya','AS','17','',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',19,130,'UN#T,UO#T,UP#T,UQ#T,U7T','Kazakhstan','Jambulskaya','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',20,130,'UN#V,UO#V,UP#V,UQ#V,U7V','Kazakhstan','Taldy Kurganskaya','AS','17','31',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UN','UN','UN',21,130,'UN#Y,UO#Y,UP#Y,UQ#Y,U7Y','Kazakhstan','Turgay','AS','17','30',NULL,-5.0,53.0,76.0,NULL,NULL), - ('UT','UT','UT',1,288,'UR,US,UT,UU,UV,UW,UX,UY,UZ,EM,EN,EO,U5','Ukraine','Ukraine','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',2,288,'UR#A,US#A,UT#A,UV#A,UW#A,UX#A,UY#A','Ukraine','Sumska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',4,288,'UR#B,US#B,UT#B,UV#B,UW#B,UX#B,UY#B','Ukraine','Ternopilska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',6,288,'UR#C,US#C,UT#C,UV#C,UW#C,UX#C,UY#C','Ukraine','Cherkaska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',8,288,'UR#D,US#D,UT#D,UV#D,UW#D,UX#D,UY#D','Ukraine','Zakarpatska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',10,288,'UR#E,US#E,UT#E,UV#E,UW#E,UX#E,UY#E','Ukraine','Dnipropetrovska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',12,288,'UR#F,US#F,UT#F,UV#F,UW#F,UX#F,UY#F','Ukraine','Odeska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',14,288,'UR#G,US#G,UT#G,UV#G,UW#G,UX#G,UY#G','Ukraine','Khersonska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',16,288,'UR#H,US#H,UT#H,UV#H,UW#H,UX#H,UY#H','Ukraine','Poltavska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',18,288,'UR#I,US#I,UT#I,UV#I,UW#I,UX#I,UY#I','Ukraine','Donetska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',20,288,'UR#J,US#J,UT0J,UT1J,UT2J,UT3J,UT4J,UT6J,UT7J,UT8J,UT9J,UV#J,UW#J,UX#J,UY#J','Ukraine','Crimea','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',22,288,'UR#K,US#K,UT#K,UV#K,UW#K,UX#K,UY#K','Ukraine','Rivnenska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',24,288,'UR#L,US#L,UT#L,UV#L,UW#L,UX#L,UY#L','Ukraine','Kharkivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',26,288,'UR#M,US#M,UT#M,UV#M,UW#M,UX#M,UY#M','Ukraine','Luhanska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',28,288,'UR#N,US#N,UT#N,UV#N,UW#N,UX#N,UY#N','Ukraine','Vinnytska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',30,288,'UR#P,US#P,UT#P,UV#P,UW#P,UX#P,UY#P','Ukraine','Volyoska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',32,288,'UR#Q,US#Q,UT#Q,UV#Q,UW#Q,UX#Q,UY#Q','Ukraine','Zaporizka Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',34,288,'UR#R,US#R,UT#R,UV#R,UW#R,UX#R,UY#R','Ukraine','Chernihivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',36,288,'UR#S,US#S,UT#S,UV#S,UW#S,UX#S,UY#S','Ukraine','Ivano-Frankivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',38,288,'UR#T,US#T,UT#T,UV#T,UW#T,UX#T,UY#T','Ukraine','Khmelnytska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',40,288,'UR#U,US#U,UT#U,UV#U,UW#U,UX#U,UY#U','Ukraine','Kiev','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',42,288,'UR#V,US#V,UT#V,UV#V,UW#V,UX#V,UY#V','Ukraine','Kirovohradska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',44,288,'UR#W,US#W,UT#W,UV#W,UW#W,UX#W,UY#W','Ukraine','Lvivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',46,288,'UR#X,US#X,UT#X,UV#X,UW#X,UX#X,UY#X','Ukraine','Zhytomyrska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',48,288,'UR#Y,US#Y,UT#Y,UV#Y,UW#Y,UX#Y,UY#Y','Ukraine','Chernivetska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',50,288,'UR#Z,US#Z,UT#Z,UV#Z,UW#Z,UX#Z,UY#Z','Ukraine','Mykolaivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',3,288,'UZ#A,EM#A,EN#A,EO#A,U5A','Ukraine','Sumska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',5,288,'UZ#B,EM#B,EN#B,EO#B,U5B','Ukraine','Ternopilska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',7,288,'UZ#C,EM#C,EN#C,EO#C,U5C','Ukraine','Cherkaska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',9,288,'UZ#D,EM#D,EN#D,EO#D,U5D','Ukraine','Zakarpatska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',11,288,'UZ#E,EM#E,EN#E,EO#E,U5E','Ukraine','Dnipropetrovska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',13,288,'UZ#F,EM#F,EN#F,EO#F,U5F','Ukraine','Odeska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',15,288,'UZ#G,EM#G,EN#G,EO#G,U5G','Ukraine','Khersonska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',17,288,'UZ#H,EM#H,EN#H,EO#H,U5H','Ukraine','Poltavska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',19,288,'UZ#I,EM#I,EN#I,EO#I,U5I','Ukraine','Donetska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',21,288,'UZ#J,EM#J,EN#J,EO#J,U5J','Ukraine','Crimea','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',23,288,'UZ#K,EM#K,EN#K,EO#K,U5K','Ukraine','Rivnenska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',25,288,'UZ#L,EM#L,EN#L,EO#L,U5L','Ukraine','Kharkivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',27,288,'UZ#M,EM#M,EN#M,EO#M,U5M','Ukraine','Luhanska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',29,288,'UZ#N,EM#N,EN#N,EO#N,U5N','Ukraine','Vinnytska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',31,288,'UZ#P,EM#P,EN#P,EO#P,U5P','Ukraine','Volyoska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',33,288,'UZ#Q,EM#Q,EN#Q,EO#Q,U5Q','Ukraine','Zaporizka Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',35,288,'UZ#R,EM#R,EN#R,EO#R,U5R','Ukraine','Chernihivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',37,288,'UZ#S,EM#S,EN#S,EO#S,U5S','Ukraine','Ivano-Frankivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',39,288,'UZ#T,EM#T,EN#T,EO#T,U5T','Ukraine','Khmelnytska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',41,288,'UZ#U,EN#U,EO#U, EM0U, EM2U, EM3U, EM4U, EM5U, EM6U, EM7U, EM8U, EM9U,U5U','Ukraine','Kiev','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',43,288,'UZ#V,EM#V,EN#V,EO#V,U5V','Ukraine','Kirovohradska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',45,288,'UZ#W,EM#W,EN#W,EO#W,U5W','Ukraine','Lvivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',47,288,'UZ#X,EM#X,EN#X,EO#X,U5X','Ukraine','Zhytomyrska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',49,288,'UZ#Y,EM#Y,EN#Y,EO#Y,U5Y','Ukraine','Chernivetska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',51,288,'UZ#Z,EM#Z,EN#Z,EO#Z,U5Z','Ukraine','Mykolaivska Oblast ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('V2','V2','V2',1,94,'V2,VP2A','Antigua & Barbuda','Antigua and Barbuda','NA','8','11','NA-100',4.0,17.1,-61.8,NULL,NULL), - ('V3','V3','V3',1,66,'V3,VP1','Belize','Belize','NA','7','11',NULL,6.0,17.25,-88.75,NULL,NULL), - ('V4','V4','V4',1,249,'V4,VP2K','Saint Kitts & Nevis','St Kitts and Nevis Islands','NA','8','11','NA-104',4.0,17.3,-62.74,NULL,NULL), - ('V5','V5','V5',1,464,'V5','Namibia','Namibia','AF','38','57',NULL,-2.0,-22.5667,17.0833,NULL,NULL), - ('V6','V6','V6',1,173,'V6','Micronesia','Eastern Caroline and Yap Islands','OC','27','65',NULL,-10.0,6.9167,158.1667,NULL,NULL), - ('V7','V7','V7',1,168,'V7','Marshall Islands','Marshall Islands','OC','31','65',NULL,-12.0,8.7208,167.7333,NULL,NULL), - ('V8','V8','V8',1,345,'V8','Brunei ','Brunei Darussalam','OC','28','54',NULL,-8.0,4.9,114.95,NULL,NULL), - ('VE','VE','VE',1,1,'V[A-G],VO,VY,VX,C[F-K],CY,CZ,X[J-O]','Canada','Canada','NA','',NULL,NULL,6.0,54.0,-106.0,NULL,NULL), - ('VE','VE','VE',9,1,'V[A-C]1,VE1,VG1,CG1,CK1,VX1,XM1,CF1,CJ1,XL1','Canada','Nova Scotia ','NA','5','9',NULL,4.0,46.0,-66.0,NULL,NULL), - ('VE','VE','VE',10,1,'V[A-C]2,VE2,VG2,CG2,CK2,VX2,XM2,CF2,CJ2,XL2','Canada','Quebec ','NA','',NULL,NULL,5.0,53.0,-72.0,NULL,NULL), - ('VE','VE','VE',11,1,'V[A-G]3,CG3,CK3,VX3,XM3,CF3,CJ3,XL3','Canada','Ontario ','NA','4',NULL,NULL,5.0,50.0,-84.0,NULL,NULL), - ('VE','VE','VE',12,1,'V[A-G]4,CG4,CK4,VX4,XM4,CF4,CJ4,XL4','Canada','Manitoba ','NA','4','3',NULL,6.0,54.0,-98.0,NULL,NULL), - ('VE','VE','VE',13,1,'V[A-G]5,CG5,CK5,VX5,XM5,CF5,CJ5,XL5','Canada','Saskatchewan ','NA','4','3',NULL,6.0,54.0,-106.0,NULL,NULL), - ('VE','VE','VE',14,1,'V[A-G]6,CG6,CK6,VX6,XM6,CF6,CJ6,XL6','Canada','Alberta ','NA','4','2',NULL,7.0,55.0,-114.0,NULL,NULL), - ('VE','VE','VE',15,1,'V[A-G]7,CG7,CK7,VX7,XM7,CF7,CJ7,XL7','Canada','British Columbia ','NA','3','2',NULL,8.0,54.0,-125.0,NULL,NULL), - ('VE','VE','VE',16,1,'V[A-G]8,CG8,CK8,VX8,XM8,CF8,CJ8,XL8','Canada','Northwest Territory ','NA','1',NULL,NULL,7.0,65.0,-114.0,NULL,NULL), - ('VE','VE','VE',3,1,'V[A-G]9,CG9,CK9,VX9,XM9,CF9,CJ9,XL9','Canada','New Brunswick ','NA','5','9',NULL,4.0,46.0,-67.0,NULL,NULL), - ('VE','VE','VE',4,1,'VO1,CH1,CY1,XJ1,XN1,VD1','Canada','Newfoundland ','NA','5','9',NULL,3.5,49.0,-56.0,NULL,NULL), - ('VE','VE','VE',5,1,'VO2,CH2,CY2,XJ2,XN2,VD2','Canada','Labrador ','NA','2','9',NULL,4.0,54.0,-61.0,NULL,NULL), - ('VE','VE','VE',7,1,'VY1,CI1,CZ1,XK1,XO1,VF1','Canada','Yukon Territory ','NA','1','2',NULL,8.0,65.0,-135.0,NULL,NULL), - ('VE','VE','VE',8,1,'VY2,CI2,CZ2,XK2,XO2,VF2','Canada','Prince Edward Island ','NA','5','',NULL,4.0,46.0,-63.0,NULL,NULL), - ('VK','VK','VK',1,150,'V[H-N],VZ,AX','Australia','Australia','OC',NULL,NULL,NULL,-10.0,-28.0,147.0,NULL,NULL), - ('VK','VK','VK',2,150,'V[H-N]1,VZ1,AX1','Australia','Australian Capital Territory ','OC','30','59',NULL,-10.0,-35.0,149.0,NULL,NULL), - ('VK','VK','VK',3,150,'V[H-N]2,VZ2,AX2','Australia','New South Wales ','OC','30','59',NULL,-10.0,-34.0,151.0,NULL,NULL), - ('VK','VK','VK',4,150,'V[H-N]3,VZ3,AX3','Australia','Victoria ','OC','30','59',NULL,-10.0,-38.0,145.0,NULL,NULL), - ('VK','VK','VK',5,150,'V[H-N]4,VZ4,AX4','Australia','Queensland ','OC','30','55',NULL,-10.0,-28.0,153.0,NULL,NULL), - ('VK','VK','VK',6,150,'V[H-N]5,VZ5,AX5','Australia','South Australia ','OC','30','59',NULL,-9.5,-30.0,134.0,NULL,NULL), - ('VK','VK','VK',7,150,'V[H-N]6,VZ6,AX6','Australia','Western Australia ','OC','29','58',NULL,-8.0,-27.0,122.0,NULL,NULL), - ('VK','VK','VK',8,150,'V[H-N]7,VZ7,AX7','Australia','Tasmania ','OC','30','59',NULL,-10.0,-42.0,147.0,NULL,NULL), - ('VK','VK','VK',9,150,'V[H-N]8,VZ8,AX8','Australia','Northern Territory ','OC','29','55',NULL,-9.5,-20.0,134.0,NULL,NULL), - ('VK0-H','VK','VK0-H',1,111,'VK0HI,VK0XH,VK0KH,VK0NH,VK0ZH,VK0IR,VK0CW,VK0JS,VK0-H','Heard Island','Heard Island','AF','39','68','AN-003',-5.0,-53.1,73.5,NULL,NULL), - ('VK0-M','VK','VK0-M',1,153,'V[H-N]0,VZ0,AX0,VK0-M','Macquarie Island','Macquarie Island ','OC','30','60','AN-005',-11.0,-54.6167,158.8667,NULL,NULL), - ('VK9-C','VK','VK9-C',1,38,'V[H-N]9C,VZ9C,AX9C,VK9?C,VK9-C','Cocos (Keeling) Islands','Cocos-Keeling Island','OC','29','54','OC-003',-6.5,-12.1917,96.8333,NULL,NULL), - ('VK9-C','VK','VK9-C',2,38,'V[H-N]9Y,VK9?Y,VZ9Y,AX9Y','Cocos (Keeling) Islands','Cocos-Keeling Island','OC','29','54','OC-003',-6.5,-12.1917,96.8333,NULL,NULL), - ('VK9-L','VK','VK9-L',1,147,'V[H-N]9L,VK9?L,VZ9L,AX9L,VK9-L','Lord Howe Island','Lord Howe Island ','OC','30','60','OC-004',-10.5,-31.5417,159.0778,NULL,NULL), - ('VK9-M','VK','VK9-M',1,171,'V[H-N]9M,VK9?M,VZ9M,AX9M,VK9-M','Mellish Reef','Mellish Reef','OC','30','56','OC-072',-11.0,-17.4028,155.8553,NULL,NULL), - ('VK9-N','VK','VK9-N',1,189,'V[H-N]9,VZ9,AX9,VK9N,VK9-N','Norfolk Island','Norfolk and Philip Islands','OC','32','60','OC-005',-11.5,-29.05,167.97,NULL,NULL), - ('VK9-W','VK','VK9-W',2,303,'VK9GS,VK9TR,VK9ZG','Willis Island','Willis Island','OC','30','55','OC-007',-10.0,-16.288,149.965,NULL,NULL), - ('VK9-W','VK','VK9-W',1,303,'V[H-N]9W,VK9?W,VZ9W,AX9W,VK9-W','Willis Island','Willis Island','OC','30','55','OC-007',-10.0,-16.288,149.965,NULL,NULL), - ('VK9-X','VK','VK9-X',1,35,'V[H-N]9X,VK9?X,VZ9X,AX9X,VK9GA,VK9VKL,VK9-X','Christmas Island','Christmas Island','OC','29','54','OC-002',-7.0,-10.45,105.667,NULL,NULL), - ('VP2-E','VP2E','VP2-E',1,12,'VP2E,VP25,VP2-E,VP29E','Anguilla','Anguilla','NA','8','11','NA-022',4.0,18.217,-63.05,NULL,NULL), - ('VP2-M','VP2M','VP2-M',1,96,'VP2M,VP2-M','Montserrat','Montserrat','NA','8','11','NA-103',4.0,16.75,-62.2,NULL,NULL), - ('VP2-V','VP2V','VP2-V',1,65,'VP2V,VP2-V','British Virgin Islands','British Virgin Islands','NA','8','11','NA-023',4.0,18.43,-64.62,NULL,NULL), - ('VP5','VP5','VP5',1,89,'VP5, VQ5','Turks & Caicos Islands','Turks and Caicos Islands','NA','8','11',NULL,4.0,21.8,-71.9,NULL,NULL), - ('VP8-F','VP8F','VP8-F',1,141,'VP8,VP8-F','Falkland Islands','Falkland Islands','SA','13','16','SA-002',4.0,-51.7,-57.85,NULL,NULL), - ('VP8-G','VP8G','VP8-GS',2,235,'VP8CID,VP8CIZ,VP8CKB,VP8CLR,VP8SGB,VP8SGP','South Georgia Island','South Georgia Islands','SA','13','73','AN-007',2.0,-54.25,-36.45,NULL,NULL), - ('VP8-G','VP8G','VP8-GS',1,235,'VP8G,VP8BUB,VP8CBA,VP8CDJ,VP8CGE,VP8CGK,VP8-G','South Georgia Island','South Georgia Islands','SA','13','73','AN-007',2.0,-54.25,-36.75,NULL,NULL), - ('VP8-H','VP8H','VP8-H',1,241,'VP8HG,VP8-H,RI1ANF,HF0POL,D88S,LZ0A,DT8A, LU#ZC, LU#ZI, LU#ZO, LU#ZT ','South Shetland Islands','South Shetland Islands','SA','13','73','AN-010',4.0,-62.0333,-58.21,NULL,NULL), - ('VP8-O','VP8O','VP8-O',1,238,'VP8BXK, VP8-O, ED0BUD, VP8LU, LU#ZA, LU#ZM','South Orkney Islands','South Orkney Islands','SA','13','73','AN-008',3.0,-60.7167,-45.6,NULL,NULL), - ('VP8-S','VP8S','VP8-GS',1,240,'VP8S,VP8-S,4K1ZI, VP8THU','South Sandwich Islands','South Sandwich Islands','SA','13','73','AN-009',4.0,-59.4267,-27.0833,NULL,NULL), - ('VP9','VP9','VP9',1,64,'VP9','Bermuda','Bermuda','NA','5','11','NA-005',4.0,32.2958,-64.7833,NULL,NULL), - ('VQ9','VQ9','VQ9',1,33,'VQ9','Chagos','Chagos','AF','39','41','',-5.0,-7.3083,72.411,NULL,NULL), - ('VP6','VP6','VP6',1,172,'VP6,VP6DB','Pitcairn Island','Pitcairn Island','OC','32','63','',8.0,-25.0667,-130.1,NULL,NULL), - ('VR','VR','VR',1,321,'VS6,VR','Hong Kong','Hong Kong','AS','24','44','',-8.0,22.4,114.1,NULL,NULL), - ('VU','VU','VU',1,324,'V[T-W],8[T-Y],A[T-W]','India','India','AS','22','41',NULL,-5.5,24.0,80.0,NULL,NULL), - ('VU4','VU','VU',1,11,'V[T-W]4,8[T-X]4,A[T-W]4','Andaman & Nicobar Islands','Andaman and Nicobar Islands','AS','26','49',NULL,-5.5,11.667,92.667,NULL,NULL), - ('VU7','VU','VU',1,142,'V[T-W]7,8[T-Y]7,A[T-W]7','Lakshadweep Islands','Laccadive Islands','AS','22','41','AS-011',-5.5,10.56,72.641,NULL,NULL), - ('XE','XE','XE',1,50,'X[A-I],4[A-C],6[D-J]','Mexico','Mexico','NA','6','10',NULL,6.0,19.4,-99.133,NULL,NULL), - ('XF4','XE','XE',1,204,'X[A-I]4,XF0C,4[A-C]4,6[D-J]4','Revillagigedo','Revillagigedo Archipelago','NA','6','10',NULL,7.0,18.8,-110.983,NULL,NULL), - ('XT','XT','XT',1,480,'XT','Burkina Faso','Burkina Faso','AF','35','46',NULL,0.0,12.333,-1.55,'1960-08-05 00:00:00.000',NULL), - ('XU','XU','XU',1,312,'XU','Cambodia','Cambodia','AS','26','49',NULL,-7.0,11.566,104.9167,NULL,NULL), - ('XW','XW','XW',1,143,'XW','Laos','Laos','AS','26','49',NULL,-7.0,17.9667,102.5833,NULL,NULL), - ('XX9','XX9','XX9',1,152,'XX9','Macao','Macao','AS','24','44','',-8.0,22.2,113.55,NULL,NULL), - ('XZ','XZ','XZ',1,309,'XY,XZ,1Z','Myanmar','Myanmar','AS','26','49',NULL,-6.5,19.75,96.1,NULL,NULL), - ('Y','DL','DL',1,229,'~Y,~DM','German Democratic Republic','German Democratic Republic','EU','14','28',NULL,-1.0,51.0,6.0,'1973-09-17 00:00:00.000','1990-10-02 00:00:00.000'), - ('YA','YA','YA',1,3,'YA,T6','Afghanistan','Afghanistan','AS','21','40',NULL,-3.5,34.53,69.1667,NULL,NULL), - ('YB','YB','YB',1,327,'Y[B-H],7[A-I],8[A-I],JZ,P[K-O]','Indonesia','Indonesia','OC','28',NULL,NULL,-7.0,-6.2,106.8333,NULL,NULL), - ('YI','YI','YI',1,333,'YI,HN','Iraq','Iraq','AS','21','39',NULL,-3.0,33.33,44.4,NULL,NULL), - ('YJ','YJ','YJ',1,158,'YJ','Vanuatu','Vanuatu','OC','32','56','',-11.0,-17.7,168.317,NULL,NULL), - ('YK','YK','YK',1,384,'YK,6C','Syria','Syria','AS','20','39',NULL,-2.0,33.5,36.3,NULL,NULL), - ('YL','YL','YL',1,145,'YL','Latvia','Latvia','EU','15','29',NULL,-3.0,56.95,24.1,NULL,NULL), - ('YN','YN','YN',1,86,'YN,HT,H6,H7','Nicaragua','Nicaragua','NA','7','11',NULL,6.0,12.133,-86.25,NULL,NULL), - ('YO','YO','YO',1,275,'YO,YP,YQ,YR','Romania','Romania','EU','20','28',NULL,-2.0,44.45,26.1,NULL,NULL), - ('YS','YS','YS',1,74,'YS,HU','El Salvador','El Salvador','NA','7','11',NULL,6.0,14.0,-89.0,NULL,NULL), - ('YU','YU','YU',1,296,'YU,YT','Serbia','Serbia','EU','15','28',NULL,-1.0,44.833,20.45,NULL,NULL), - ('4O','4O','4O',1,514,'4O','Montenegro','Montenegro','EU','15','28',NULL,-1.0,42.4458,19.2722,'2006-06-28 00:00:00.000',NULL), - ('YU','YU','YU',2,296,'YU7,YT7','Serbia','Vojvodina','EU','15','28',NULL,-1.0,45.5,20.0,NULL,NULL), - ('YV','YV','YV',1,148,'Y[V-Y],4M','Venezuela','Venezuela','SA','9','12',NULL,4.5,10.5,-66.9167,NULL,NULL), - ('YV','YV','YV',8,148,'Y[V-Y]1,4M1','Venezuela','Venezuela 1','SA','9','12',NULL,4.5,10.0,-72.0,NULL,NULL), - ('YV','YV','YV',7,148,'Y[V-Y]2,4M2','Venezuela','Venezuela 2','SA','9','12',NULL,4.5,8.0,-71.0,NULL,NULL), - ('YV','YV','YV',6,148,'Y[V-Y]3,4M3','Venezuela','Venezuela 3','SA','9','12',NULL,4.5,10.0,-70.0,NULL,NULL), - ('YV','YV','YV',9,148,'Y[V-Y]4,4M4','Venezuela','Venezuela 4','SA','9','12',NULL,4.5,10.0,-68.0,NULL,NULL), - ('YV','YV','YV',4,148,'Y[V-Y]5,4M5','Venezuela','Venezuela 5','SA','9','12',NULL,4.5,9.0,-66.0,NULL,NULL), - ('YV','YV','YV',5,148,'Y[V-Y]6,4M6','Venezuela','Venezuela 6','SA','9','12',NULL,4.5,7.0,-64.0,NULL,NULL), - ('YV','YV','YV',10,148,'Y[V-Y]7,4M7','Venezuela','Venezuela 7','SA','9','12',NULL,4.5,11.0,-64.0,NULL,NULL), - ('YV','YV','YV',3,148,'Y[V-Y]8,4M8','Venezuela','Venezuela 8','SA','9','12',NULL,4.5,9.0,-62.0,NULL,NULL), - ('YV','YV','YV',2,148,'Y[V-Y]9,4M9','Venezuela','Venezuela 9','SA','9','12',NULL,4.5,4.0,-66.0,NULL,NULL), - ('YV0','YV','YV0',1,17,'Y[V-Y]0,4M0','Aves Island','Aves Island','NA','8','11','NA-020',4.5,15.6717,-63.6164,NULL,NULL), - ('Z2','Z2','Z2',1,452,'ZE,Z2','Zimbabwe','Zimbabwe','AF','38','53',NULL,-2.0,-17.8,31.05,NULL,NULL), - ('Z3','Z3','Z3',1,502,'Z3','Macedonia','Macedonia','EU','15','28',NULL,-1.0,41.9906,21.4264,'1991-09-08 00:00:00.000',NULL), - ('ZA','ZA','ZA',1,7,'ZA','Albania','Albania','EU','15','28',NULL,-1.0,41.3278,19.8186,NULL,NULL), - ('ZB2','ZB2','ZB2',1,233,'ZB,ZG','Gibraltar','Gibraltar','EU','14','37',NULL,-1.0,36.15,-5.33,NULL,NULL), - ('ZC4','ZC4','5B',1,283,'ZC4,ZB4','U K Bases on Cyprus','Cyprus (UK Military Bases)','AS','20','39','AS-004',-2.0,34.6,32.983,'1960-08-16 00:00:00.000',NULL), - ('ZD7','ZD7','ZD7',1,250,'ZD7','Saint Helena','Saint Helena Island','AF','36','66','AF-022',0.0,-15.967,-5.67,NULL,NULL), - ('ZD8','ZD8','ZD8',1,205,'ZD8','Ascension Island','Ascension Island','AF','36','66','AF-003',0.0,-7.933,-14.367,NULL,NULL), - ('ZD9','ZD9','ZD9',1,274,'ZD9','Tristan Da Cunha & Gough Is.','Tristan De Cunha and Gough Islands','AF','38','66',NULL,0.0,-37.1,-12.3,NULL,NULL), - ('ZF','ZF','ZF',1,69,'ZF','Cayman Islands','Cayman Islands','NA','8','11','NA-016',5.0,19.3,-81.25,NULL,NULL), - ('E5-N','E5','E5',1,191,'E5-N,E51WL,E50W','North Cook Islands','North Cook Islands','OC','32','62',NULL,10.0,-10.425,-161.0333,NULL,NULL), - ('E5-S','E5','E5',1,234,'E5,E5-S','South Cook Islands','South Cook Islands','OC','32','62',NULL,10.0,-21.233,-159.7833,NULL,NULL), - ('E6','E6','ZK2',1,188,'E6,ZK2','Niue','Niue','OC','32','62','OC-040',11.0,-19.05,-169.8583,NULL,NULL), - ('ZK3','ZL','ZK3',1,270,'ZK3','Tokelau Islands','Tokelau Islands','OC','31','62','OC-048',11.0,-9.13,-171.79,NULL,NULL), - ('ZL','ZL','ZL',1,170,'ZL,ZK,ZM','New Zealand','New Zealand','OC','32','60',NULL,-12.0,-41.25,174.75,NULL,NULL), - ('ZL7','ZL','ZL7',1,34,'ZL7','Chatham Island','Chatham Island','OC','32','60','OC-038',-12.75,-44.0,-176.5,NULL,NULL), - ('ZL8','ZL','ZL8',1,133,'ZL8','Kermadec Island','Kermadec Island','OC','32','60','OC-039',-12.0,-29.267,-177.817,NULL,NULL), - ('ZL9','ZL','ZL9',1,16,'ZL9','New Zealand Subantarctic Is.','Auckland, Campbell, Antipodes & Bounty','OC','32','60','',-12.0,-50.67,166.1,NULL,NULL), - ('ZP','ZP','ZP',1,132,'ZP','Paraguay','Paraguay','SA','11','14',NULL,4.0,-25.25,-57.65,NULL,NULL), - ('ZP','ZP','ZP',9,132,'ZP1','Paraguay','Paraguay 1','SA','11','14',NULL,4.0,-22.0,-60.0,NULL,NULL), - ('ZP','ZP','ZP',8,132,'ZP2','Paraguay','Paraguay 2','SA','11','14',NULL,4.0,-24.0,-59.0,NULL,NULL), - ('ZP','ZP','ZP',7,132,'ZP3','Paraguay','Paraguay 3','SA','11','14',NULL,4.0,-23.0,-57.0,NULL,NULL), - ('ZP','ZP','ZP',6,132,'ZP4','Paraguay','Paraguay 4','SA','11','14',NULL,4.0,-25.0,-57.0,NULL,NULL), - ('ZP','ZP','ZP',5,132,'ZP5','Paraguay','Asuncion','SA','11','14',NULL,4.0,-26.0,-56.0,NULL,NULL), - ('ZP','ZP','ZP',2,132,'ZP6','Paraguay','Paraguay 6','SA','11','14',NULL,4.0,-27.0,-56.0,NULL,NULL), - ('ZP','ZP','ZP',4,132,'ZP7','Paraguay','Paraguay 7','SA','11','14',NULL,4.0,-26.0,-55.0,NULL,NULL), - ('ZP','ZP','ZP',10,132,'ZP8','Paraguay','Paraguay 8','SA','11','14',NULL,4.0,-27.0,-56.0,NULL,NULL), - ('ZP','ZP','ZP',3,132,'ZP9','Paraguay','Paraguay 9','SA','11','14',NULL,4.0,-27.0,-56.0,NULL,NULL), - ('ZS','ZS','ZS',1,462,'Z[R-U],S8','Republic of South Africa','South Africa','AF','38','57',NULL,-2.0,-25.45,28.167,NULL,NULL), - ('ZS8','ZS','ZS',1,201,'Z[R-U]8','Prince Edward & Marion Islands','Prince Edward and Marion Islands','AF','38','57','AF-021',0.0,-46.883,37.75,NULL,NULL), - ('LU','LU','LU',1,100,'AY,AZ,L[O-W],L#','Argentina','Argentina','SA','13',NULL,NULL,3.0,-34.6167,-64.0,NULL,NULL), - ('ZS9','ZS','ZS',1,488,'~ZS9','Walvis Bay','Walvis Bay','AF','38','57',NULL,0.0,-27.0,15.0,'1977-09-01 00:00:00.000','1994-02-28 00:00:00.000'), - ('ZS0','ZS','ZS',1,493,'~ZS0','Penguin Islands','Penguin Island','AF','38','57',NULL,0.0,-27.0,15.0,NULL,'1994-02-28 00:00:00.000'), - ('4W','4W','4W',1,511,'4W,4U1ET','Timor - Leste','East Timor','OC','28','54',NULL,-8.0,-9.0,126.0,'2000-03-01 00:00:00.000',NULL), - ('FK-C','TX0','TX0',1,512,'FK-C','Chesterfield Islands','Chesterfield Islands','OC','30','56','OC-176',-10.0,-19.975,158.475,'2000-03-21 00:00:00.000',NULL), - ('UA0','UA0','UA',18,15,'R?9S,R?9T,U!9S,U!9T,R9S,R9T,U9S,U9T','Asiatic Russia','Orenburg ','EU','16','30',NULL,-6.0,52.0,55.0,NULL,NULL), - ('2',NULL,NULL,1,23,'~2,~1B9','Blenheim Reef','Blenheim Reef','AF','39','41',NULL,NULL,NULL,NULL,'1967-05-04 00:00:00.000','1975-06-30 00:00:00.000'), - ('VP6D','VP6','VP6',1,513,'VP6D','Ducie Island','Ducie Island','OC','32','63','OC-182',8.0,-24.39,-124.48,'2001-11-16 00:00:00.000',NULL), - ('BY','BY','BY',11,318,'B[A-L;R-T;Y-Z]3G,B[A-L;R-T;Y-Z]3H, B[A-L;R-T;Y-Z]3I','China','NeiMenggu ','AS','23',NULL,NULL,-8.0,38.0,100.0,NULL,NULL), - ('3B6','3B6','3B6',3,4,'3B7','Agalega & St Brandon Islands','St. Brandon Islands','AF','39','53','AF-015',-4.0,-16.5725,59.7028,NULL,NULL), - ('CE9','CE9','CE9',31,13,'EM1HO, EM1U','Antarctica','Vernadsky Station, Galindez Is.','AN','13','73','AN-006',0.0,-65.23,-64.25,NULL,NULL), - ('KG4','K','CO',1,105,'KG4','Guantanamo Bay','Guantanamo Bay','NA','8','11','NA-015',5.0,19.95,-75.16,NULL,NULL), - ('CE9','CE9','CE9',32,13,'DP1POL,DP0GVN','Antarctica','Neumayer Research Base','AN','38','67','AN-016',0.0,-70.65,-8.25,NULL,NULL), - ('VE','VE','VE',6,1,'VY0,CI0,CZ0,XK0,XO0,VF0','Canada','Nunavut ','NA',NULL,NULL,NULL,5.0,67.0,-70.0,NULL,NULL), - ('UA','UA','UA',4,54,'R1A,R1B,R1F[A-I;K-Z],R1G,R1H,R1I,R1J,R1L,R1M ','European Russia','St. Petersburg ','EU','16','',NULL,-4.0,59.6,30.3,NULL,NULL), - ('UA','UA','UA',3,54,'U1A,U1B,U1F,U1G,U1H,U1I,U1J,U1L,U1M','European Russia','St. Petersburg ','EU','16','',NULL,-4.0,59.6,30.3,NULL,NULL), - ('UA','UA','UA',19,54,'R?3A,R?3B,R?3C,U!3A,U!3B,U!3C,R3A,R3B,R3C,U3A,U3B,U3C','European Russia','Moscow ','EU','16','29',NULL,-4.0,55.5,38.2,NULL,NULL), - ('4J','4J','4J',2,18,'4J2,4K2','Azerbaijan','Nakhichevan','AS','21','29',NULL,-4.0,45.5,39.3,NULL,NULL), - ('4J','4J','4J',3,18,'4J4,4J5,4J6,4J7,4J8,4J9,4K4,4K5,4K6,4K7,4K8,4K9','Azerbaijan','Baku','AS','21','29',NULL,-4.0,40.5,50.0,NULL,NULL), - ('JA','JA','JA',2,339,'7J','Japan','Japan (reciprocal)','AS','25','45',NULL,-9.0,36.33,138.5,NULL,NULL), - ('JA','JA','JA',4,339,'JA1,J[E-S]1,7J1,7K,7L,7M,7N','Japan','Kanto','AS','25','45',NULL,-9.0,36.0,140.0,NULL,NULL), - ('JA','JA','JA',5,339,'JA2,J[E-S]2,7J2','Japan','Tokai','AS','25','45',NULL,-9.0,35.0,137.0,NULL,NULL), - ('JA','JA','JA',6,339,'JA3,J[E-S]3,7J3','Japan','Kansai','AS','25','45',NULL,-9.0,35.0,135.0,NULL,NULL), - ('JA','JA','JA',7,339,'JA4,J[E-S]4,7J4','Japan','Chugoku','AS','25','45',NULL,-9.0,35.0,133.0,NULL,NULL), - ('JA','JA','JA',11,339,'JA7,J[E-S]7,7J7','Japan','Tohoku','AS','25','45',NULL,-9.0,39.0,141.0,NULL,NULL), - ('JA','JA','JA',13,339,'JA9,J[E-S]9,7J9','Japan','Hokuriku','AS','25','45',NULL,-9.0,37.0,137.0,NULL,NULL), - ('JA','JA','JA',14,339,'JA0,J[E-S]0,7J0','Japan','Shinetsu','AS','25','45',NULL,-9.0,38.0,139.0,NULL,NULL), - ('JA','JA','JA',3,339,'8[J-N]','Japan','Japan (special events)','AS','25','45',NULL,-9.0,36.33,138.5,NULL,NULL), - ('I','I','I',16,248,'ID9','Italy','Lipari Islands','EU','15','28','EU-017',-1.0,38.0,15.0,NULL,NULL), - ('I','I','I',17,248,'IE9','Italy','Ustica Islands','EU','15','28','EU-051',-1.0,38.0,13.0,NULL,NULL), - ('I','I','I',18,248,'IF9','Italy','Egadi Islands','EU','15','28','EU-054',-1.0,38.0,12.0,NULL,NULL), - ('I','I','I',19,248,'IG9','Italy','Pelagie Islands ','AF','33','37','AF-019',-1.0,35.5166,12.5833,NULL,NULL), - ('BY','BY','BY',60,318,'B[A-L;R-T;Y-Z]0G,B[A-L;R-T;Y-Z]0H,B[A-L;R-T;Y-Z]0I','China','Xizanh (Tibet) ','AS','23','',NULL,-6.0,32.0,90.0,NULL,NULL), - ('I','I','I',20,248,'IH9','Italy','Pantelleria Island ','AF','33','37','AF-018',-1.0,36.7833,12.0,NULL,NULL), - ('I','I','I',2,248,'I1,IK1,IW1,IX1,IZ1','Italy','Liguria, Piemonte, Valle dAosta','EU','15','28',NULL,-1.0,45.0,8.0,NULL,NULL), - ('I','I','I',3,248,'I2,IK2,IW2,IZ2','Italy','Lombardia','EU','15','28',NULL,-1.0,46.0,10.0,NULL,NULL), - ('I','I','I',4,248,'I3,IK3,IZ3,IW3[E-P]','Italy','Veneto','EU','15','28',NULL,-1.0,46.0,12.0,NULL,NULL), - ('I','I','I',7,248,'I4,IK4,IW4,IZ4','Italy','Emilia-Romagna','EU','15','28',NULL,-1.0,44.0,11.0,NULL,NULL), - ('I','I','I',8,248,'I5,IK5,IW5,IZ5','Italy','Tuscany','EU','15','28',NULL,-1.0,43.0,11.0,NULL,NULL), - ('I','I','I',10,248,'I6,IK6,IW6,IZ6','Italy','Marche, Abruzzo','EU','15','28',NULL,-1.0,43.0,13.0,NULL,NULL), - ('I','I','I',11,248,'I7,IK7,IW7,IZ7','Italy','Puglia, Matera ','EU','15','28',NULL,-1.0,41.0,16.0,NULL,NULL), - ('I','I','I',14,248,'I8,ID8,IK8,IW8,IZ8','Italy','Campania, Calabria, Molise, Potenza','EU','15','28',NULL,-1.0,40.0,16.0,NULL,NULL), - ('I','I','I',22,248,'I0,IK0,IW0[A-T],IZ0','Italy','Lazio, Umbria','EU','15','28',NULL,-1.0,42.0,13.0,NULL,NULL), - ('I','I','I',9,248,'IA5','Italy','Tuscan Islands Group','EU','15','28','EU-028',-1.0,43.0,10.0,NULL,NULL), - ('I','I','I',13,248,'IL7','Italy','Foggia Island Group (Tremiti)','EU','15','28','EU-050',-1.0,42.0,15.0,NULL,NULL), - ('I','I','I',12,248,'IJ7','Italy','Puglia (Taranto) Group','EU','15','28','EU-073',-1.0,40.0,17.0,NULL,NULL), - ('I','I','I',15,248,'IC8','Italy','Campania Region Group','EU','15','28','EU-031',-1.0,41.0,14.0,NULL,NULL), - ('I','I','I',23,248,'IB0','Italy','Lazio Region Group','EU','15','28','EU-045',-1.0,42.0,12.0,NULL,NULL), - ('CE','CE','CE',9,112,'C[A-E]8,3G8,XR8,XQ8','Chile','Magallanes y de la Antarctica','SA','12','16',NULL,4.0,-50.0,-73.0,NULL,NULL), - ('LU','LU','LU',4,100,'AY#B,AZ#B,L#B,LO#B,LP#B,LQ#B','Argentina','Buenos Aires City ','SA','13','14',NULL,3.0,-34.5,-58.5,NULL,NULL), - ('LU','LU','LU',6,100,'AY#C,AZ#C,L#C,LO#C,LP#C,LQ#C,','Argentina','Buenos Aires City ','SA','13','14',NULL,3.0,-34.5,-58.5,NULL,NULL), - ('LU','LU','LU',7,100,'LR#C,LS#C,LT#C,LU#C,LV#C,LW#C','Argentina','Buenos Aires City ','SA','13','14',NULL,3.0,-34.5,-58.5,NULL,NULL), - ('LU','LU','LU',8,100,'AY#D,AZ#D,L#D,LO#D,LP#D,LQ#D,','Argentina','Buenos Aires ','SA','13','14',NULL,3.0,-36.0,-60.0,NULL,NULL), - ('LU','LU','LU',9,100,'LR#D,LS#D,LT#D,LU#D,LV#D,LW#D','Argentina','Buenos Aires ','SA','13','14',NULL,3.0,-36.0,-60.0,NULL,NULL), - ('LU','LU','LU',10,100,'AY#E,AZ#E,L#E,LO#E,LP#E,LQ#E,','Argentina','Buenos Aires ','SA','13','14',NULL,3.0,-36.0,-60.0,NULL,NULL), - ('LU','LU','LU',11,100,'LR#E,LS#E,LT#E,LU#E,LV#E,LW#E','Argentina','Buenos Aires ','SA','13','14',NULL,3.0,-36.0,-60.0,NULL,NULL), - ('LU','LU','LU',12,100,'AY#F,AZ#F,L#F,LO#F,LP#F,LQ#F,','Argentina','Santa Fe ','SA','13','14',NULL,3.0,-30.0,-61.0,NULL,NULL), - ('LU','LU','LU',13,100,'LR#F,LS#F,LT#F,LU#F,LV#F,LW#F','Argentina','Santa Fe ','SA','13','14',NULL,3.0,-30.0,-61.0,NULL,NULL), - ('LU','LU','LU',14,100,'AY#G,AZ#G,L#G,LO#G,LP#G,LQ#G,','Argentina','Chaco, Formosa','SA','13','14',NULL,3.0,-26.0,-60.0,NULL,NULL), - ('LU','LU','LU',15,100,'LR#G,LS#G,LT#G,LU#G,LV#G,LW#G','Argentina','Chaco, Formosa','SA','13','14',NULL,3.0,-26.0,-60.0,NULL,NULL), - ('LU','LU','LU',16,100,'AY#H,AZ#H,L#H,LO#H,LP#H,LQ#H,','Argentina','Cordoba ','SA','13','14',NULL,3.0,-32.0,-64.0,NULL,NULL), - ('LU','LU','LU',17,100,'LR#H,LS#H,LT#H,LU#H,LV#H,LW#H','Argentina','Cordoba ','SA','13','14',NULL,3.0,-32.0,-64.0,NULL,NULL), - ('LU','LU','LU',18,100,'AY#I,AZ#I,L#I,LO#I,LP#I,LQ#I,','Argentina','Misiones ','SA','13','14',NULL,3.0,-27.0,-55.0,NULL,NULL), - ('LU','LU','LU',19,100,'LR#I,LS#I,LT#I,LU#I,LV#I,LW#I','Argentina','Misiones ','SA','13','14',NULL,3.0,-27.0,-55.0,NULL,NULL), - ('LU','LU','LU',20,100,'AY#J,AZ#J,L#J,LO#J,LP#J,LQ#J,','Argentina','Entre Rios ','SA','13','14',NULL,3.0,-32.0,-59.0,NULL,NULL), - ('LU','LU','LU',21,100,'LR#J,LS#J,LT#J,LU#J,LV#J,LW#J','Argentina','Entre Rios ','SA','13','14',NULL,3.0,-32.0,-59.0,NULL,NULL), - ('LU','LU','LU',22,100,'AY#K,AZ#K,L#K,LO#K,LP#K,LQ#K,','Argentina','Tucuman ','SA','13','14',NULL,3.0,-27.0,-65.0,NULL,NULL), - ('LU','LU','LU',23,100,'LR#K,LS#K,LT#K,LU#K,LV#K,LW#K','Argentina','Tucuman ','SA','13','14',NULL,3.0,-27.0,-65.0,NULL,NULL), - ('LU','LU','LU',24,100,'AY#L,AZ#L,L#L,LO#L,LP#L,LQ#L,','Argentina','Corrientes ','SA','13','14',NULL,3.0,-29.0,-58.0,NULL,NULL), - ('LU','LU','LU',25,100,'LR#L,LS#L,LT#L,LU#L,LV#L,LW#L','Argentina','Corrientes ','SA','13','14',NULL,3.0,-29.0,-58.0,NULL,NULL), - ('LU','LU','LU',26,100,'AY#M,AZ#M,L#M,LO#M,LP#M,LQ#M,','Argentina','Mendoza ','SA','13','14',NULL,3.0,-34.0,-68.0,NULL,NULL), - ('LU','LU','LU',27,100,'LR#M,LS#M,LT#M,LU#M,LV#M,LW#M','Argentina','Mendoza ','SA','13','14',NULL,3.0,-34.0,-68.0,NULL,NULL), - ('LU','LU','LU',28,100,'AY#N,AZ#N,L#N,LO#N,LP#N,LQ#N,','Argentina','Santiago del Estero ','SA','13','14',NULL,3.0,-28.0,-63.0,NULL,NULL), - ('LU','LU','LU',29,100,'LR#N,LS#N,LT#N,LU#N,LV#N,LW#N','Argentina','Santiago del Estero ','SA','13','14',NULL,3.0,-28.0,-63.0,NULL,NULL), - ('LU','LU','LU',30,100,'AY#O,AZ#O,L#O,LO#O,LP#O,LQ#O,','Argentina','Salta ','SA','13','14',NULL,3.0,-25.0,-65.0,NULL,NULL), - ('LU','LU','LU',31,100,'LR#O,LS#O,LT#O,LU#O,LV#O,LW#O','Argentina','Salta ','SA','13','14',NULL,3.0,-25.0,-65.0,NULL,NULL), - ('LU','LU','LU',32,100,'AY#P,AZ#P,L#P,LO#P,LP#P,LQ#P,','Argentina','San Juan ','SA','13','14',NULL,3.0,-31.0,-69.0,NULL,NULL), - ('LU','LU','LU',33,100,'LR#P,LS#P,LT#P,LU#P,LV#P,LW#P','Argentina','San Juan ','SA','13','14',NULL,3.0,-31.0,-69.0,NULL,NULL), - ('LU','LU','LU',34,100,'AY#Q,AZ#Q,L#Q,LO#Q,LP#Q,LQ#Q,','Argentina','San Luis ','SA','13','14',NULL,3.0,-34.0,-66.0,NULL,NULL), - ('LU','LU','LU',35,100,'LR#Q,LS#Q,LT#Q,LU#Q,LV#Q,LW#Q','Argentina','San Luis ','SA','13','14',NULL,3.0,-34.0,-66.0,NULL,NULL), - ('LU','LU','LU',36,100,'AY#R,AZ#R,L#R,LO#R,LP#R,LQ#R,','Argentina','Catamarca ','SA','13','14',NULL,3.0,-27.0,-67.0,NULL,NULL), - ('LU','LU','LU',37,100,'LR#R,LS#R,LT#R,LU#R,LV#R,LW#R','Argentina','Catamarca ','SA','13','14',NULL,3.0,-27.0,-67.0,NULL,NULL), - ('LU','LU','LU',38,100,'AY#S,AZ#S,L#S,LO#S,LP#S,LQ#S,','Argentina','La Rioja ','SA','13','14',NULL,3.0,-30.0,-67.0,NULL,NULL), - ('LU','LU','LU',39,100,'LR#S,LS#S,LT#S,LU#S,LV#S,LW#S','Argentina','La Rioja ','SA','13','14',NULL,3.0,-30.0,-67.0,NULL,NULL), - ('LU','LU','LU',40,100,'AY#T,AZ#T,L#T,LO#T,LP#T,LQ#T,','Argentina','Jujuy ','SA','13','',NULL,3.0,-24.0,-65.0,NULL,NULL), - ('LU','LU','LU',41,100,'LR#T,LS#T,LT#T,LU#T,LV#T,LW#T','Argentina','Jujuy ','SA','13','',NULL,3.0,-24.0,-65.0,NULL,NULL), - ('LU','LU','LU',42,100,'AY#U,AZ#U,L#U,LO#U,LP#U,LQ#U,','Argentina','La Pampa ','SA','13','14',NULL,3.0,-37.0,-65.0,NULL,NULL), - ('LU','LU','LU',43,100,'LR#U,LS#U,LT#U,LU#U,LV#U,LW#U','Argentina','La Pampa ','SA','13','14',NULL,3.0,-37.0,-65.0,NULL,NULL), - ('LU','LU','LU',44,100,'AY#V,AZ#V,L#V,LO#V,LP#V,LQ#V,','Argentina','Rio Negro ','SA','13',NULL,NULL,3.0,-41.0,-68.0,NULL,NULL), - ('LU','LU','LU',45,100,'LR#V,LS#V,LT#V,LU#V,LV#V,LW#V','Argentina','Rio Negro ','SA','13',NULL,NULL,3.0,-41.0,-68.0,NULL,NULL), - ('LU','LU','LU',46,100,'AY#W,AZ#W,L#W,LO#W,LP#W,LQ#W,','Argentina','Chubut ','SA','13','16',NULL,3.0,-44.0,-69.0,NULL,NULL), - ('LU','LU','LU',47,100,'LR#W,LS#W,LT#W,LU#W,LV#W,LW#W','Argentina','Chubut ','SA','13','16',NULL,3.0,-44.0,-69.0,NULL,NULL), - ('LU','LU','LU',48,100,'AY#X,AZ#X,L#X,LO#X,LP#X,LQ#X,','Argentina','Santa Cruz, Tierra del Fuego','SA','13','16',NULL,3.0,-49.0,-69.0,NULL,NULL), - ('LU','LU','LU',49,100,'LR#X,LS#X,LT#X,LU#X,LV#X,LW#X','Argentina','Santa Cruz, Tierra del Fuego','SA','13','16',NULL,3.0,-49.0,-69.0,NULL,NULL), - ('LU','LU','LU',50,100,'AY#Y,AZ#Y,L#Y,LO#Y,LP#Y,LQ#Y,','Argentina','Neuquen ','SA','13','14',NULL,3.0,-39.0,-70.0,NULL,NULL), - ('LU','LU','LU',51,100,'LR#Y,LS#Y,LT#Y,LU#Y,LV#Y,LW#Y','Argentina','Neuquen ','SA','13','14',NULL,3.0,-39.0,-70.0,NULL,NULL), - ('PJ7','PJ7','PJ',1,518,'PJ7','Sint Maarten','St Maarten','NA','8','11','',4.0,18.03,-63.05,'2010-10-10 00:00:00.000',NULL), - ('KH8-S','K','KH8',1,515,'KH8-S','Swains Island','Swains Island','OC','32','62','OC-200',11.0,-11.056,-171.0875,'2006-07-22 00:00:00.000',NULL), - ('I','I','I',5,248,'IN3,IW3[A-D]','Italy','Trentino Alto Adige','EU','15','28',NULL,-1.0,46.0,12.0,NULL,NULL), - ('I','I','I',6,248,'IV3,IW3[Q-Z]','Italy','Friuli Venezia Giulia','EU','15','28',NULL,-1.0,46.0,12.0,NULL,NULL), - ('PJ2','PJ2','PJ',1,517,'PJ2','Curacao','Curacao','SA','9','11','SA-099',4.0,12.1,-68.9,'2010-10-10 00:00:00.000',NULL), - ('CE9','VP8','CE9',33,13,'VP8ROT, VP8ADE','Antarctica','Rothera Station - Adelaide Island','AN','13','73','AN-001',4.0,-67.57,68.13,NULL,NULL), - ('FJ','FJ','FJ',1,516,'FJ','Saint Barthelemy','Saint Barthelemy','NA','8','11','NA-146',4.0,17.9,-62.83,'2007-12-14 00:00:00.000',NULL), - ('BY','BY','BY',9,318,'B[A-L;R-T;Y-Z]3A,B[A-L;R-T;Y-Z]3B,B[A-L;R-T;Y-Z]3C','China','TianJin ','AS','24',NULL,NULL,-8.0,39.5,117.5,NULL,NULL), - ('BY','BY','BY',2,318,'B[A-L;R-T;Y-Z]1','China','Beijing ','AS','24',NULL,NULL,-8.0,40.0,116.5,NULL,NULL), - ('BY','BY','BY',13,318,'B[A-L;R-T;Y-Z]3M,B[A-L;R-T;Y-Z]3N,B[A-L;R-T;Y-Z]3O','China','HeBei ','AS','24',NULL,NULL,-8.0,40.0,116.0,NULL,NULL), - ('BY','BY','BY',15,318,'B[A-L;R-T;Y-Z]3S,B[A-L;R-T;Y-Z]3T,B[A-L;R-T;Y-Z]3U,B[A-L;R-T;Y-Z]3V','China','ShanXi ','AS','24',NULL,NULL,-8.0,38.0,113.0,NULL,NULL), - ('BY','BY','BY',58,318,'B[A-L;R-T;Y-Z]0A,B[A-L;R-T;Y-Z]0B,B[A-L;R-T;Y-Z]0C','China','XinJiang ','AS','23',NULL,NULL,-8.0,37.0,85.0,NULL,NULL), - ('LU','LU','LU',3,100,'LR#A,LS#A,LT#A,LU#A,LV#A,LW#A','Argentina','Buenos Aires City ','SA','13','14',NULL,3.0,-34.5,-58.5,NULL,NULL), - ('LU','LU','LU',5,100,'LR#B,LS#B,LT#B,LU#B,LV#B,LW#B','Argentina','Buenos Aires City ','SA','13','14',NULL,3.0,-34.5,-58.5,NULL,NULL), - ('TA','TA','TA',1,390,'TA1,TB1,TC1,YM1','Turkey','Istanbul ','EU','20','39',NULL,-3.0,41.25,28.0,NULL,NULL), - ('OE','OE','OE',2,206,'4U1V,C7A,4Y1A','Austria','UN Vienna ','EU','15','28',NULL,-1.0,48.2342,16.4169,NULL,NULL), - ('GM','G','G',2,279,'2Z,GZ,MZ','Scotland','Shetland Islands ','EU','14','27','EU-012',0.0,60.4,-1.5,NULL,NULL), - ('GM','G','G',3,279,'2M0ZET,2M1ANT,2M1ASQ,2M1ODL,G0FBJ,GB2ELH,GB2ZET,GB3LER,GB4SI,GM0CXQ,MM6SJK,MS0ZCG,MS0ZET,GM0CYJ,GM0DJI, - GM0EKM,GM0GFL,GM0ILB,GM0JDB,GM0MZD,GM0OMV,GM0VFA,GM1BYL,GM1CBQ,GM1KKI,GM1MXN,GM1ZNR,GM3KLA,GM3KZH, - GM3RFR,GM3SJA,GM3STU,GM3UPU,GM3WCH,GM3WHT,GM3XPQ,GM3ZET,GM3ZNM,GM3ZXH,GM4AGX,MM6BDU,GM4CAQ,GM4DQD, - GM4ENK,GM4FNA,GM4FNE,GM4GPN,GM4GPP,GM4GQD,GM4GQM,GM4IPK,GM4JPI,GM4KJQ,GM4LBE,GM4LER,GM4PXG,GM4SLV, - GM4SRU,GM4SSA,GM4SWU,GM4WXQ,GM4YEL,GM4ZHL,GM6RTO,GM6VZB,GM6WVI,GM6YQA,GM7AFE,GM7GWW,GM7RKD,GM8LNH, - GM8MMA,GM8YEC,GS3ZET,MA1FJM,MM0LSM,MM0XAU,MM0ZAL,MM0ZCG,MM1FJM,MM3ZET,MM5PSL,MM6ACW','Scotland','Shetland Islands ','EU','14','27','EU-012',0.0,60.4,-1.5,NULL,NULL), - ('OL','OL','OL',2,503,'OK1','Czech Republic','Bohemia','EU','15','28',NULL,-1.0,50.0834,14.45,'1993-01-01 00:00:00.000',NULL), - ('OL','OL','OL',3,503,'OK2','Czech Republic','Moravia','EU','15','28',NULL,-1.0,49.5939,17.25,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',2,504,'OM1','Slovakia','Bratslava','EU','15','28',NULL,-1.0,48.1667,17.1,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',3,504,'OM2','Slovakia','Trnva','EU','15','28',NULL,-1.0,48.3828,17.5875,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',4,504,'OM4','Slovakia','Trencin, Prievidza','EU','15','28',NULL,-1.0,48.8944,18.035,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',5,504,'OM5','Slovakia','Nitra, Nove Zamky','EU','15','28',NULL,-1.0,48.31,18.0833,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',6,504,'OM6','Slovakia','Zilina, Cadca, Martin','EU','15','28',NULL,-1.0,49.2167,18.73,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',7,504,'OM7','Slovakia','Banska Bystrica','EU','15','28',NULL,-1.0,48.7375,19.15,'1993-01-01 00:00:00.000',NULL), - ('OM','OM','OM',8,504,'OM8','Slovakia','Kosice, Poprad','EU','15','28',NULL,-1.0,48.7214,21.25,'1993-01-01 00:00:00.000',NULL), - ('SV','SV','SV',2,236,'S[V-Z]1,J41','Greece','Sterea Ellada','EU','20','28',NULL,-2.0,38.5,23.0,NULL,NULL), - ('SV','SV','SV',3,236,'S[V-Z]2,J42','Greece','Central & West Macedonia','EU','20','28',NULL,-2.0,40.5,23.0,NULL,NULL), - ('SV','SV','SV',4,236,'S[V-Z]3,J43','Greece','Peloponnese','EU','20','28',NULL,-2.0,37.5,22.3,NULL,NULL), - ('SV','SV','SV',5,236,'S[V-Z]4,J44','Greece','Thessaly','EU','20','28',NULL,-2.0,39.5,22.5,NULL,NULL), - ('SV','SV','SV',6,236,'S[V-Z]6,J46','Greece','Epirus','EU','20','28',NULL,-2.0,39.6,20.5,NULL,NULL), - ('SV','SV','SV',7,236,'S[V-Z]7,J47','Greece','Thrace & East Macedonia','EU','20','28',NULL,-2.0,41.1,25.7,NULL,NULL), - ('SV','SV','SV',8,236,'S[V-Z]8,J48','Greece','Aegean & Ionian Islands','EU','20','28',NULL,-2.0,37.0,25.0,NULL,NULL), - ('BY','BY','BY',3,318,'B[A-L;R-T;Y-Z]2A,B[A-L;R-T;Y-Z]2B,B[A-L;R-T;Y-Z]2C,B[A-L;R-T;Y-Z]2D','China','Hei Long Jiang ','AS','24','',NULL,-7.0,47.0,128.0,NULL,NULL), - ('BY','BY','BY',5,318,'B[A-L;R-T;Y-Z]2I,B[A-L;R-T;Y-Z]J,B[A-L;R-T;Y-Z]2K,B[A-L;R-T;Y-Z]2L','China','Ji Lin ','AS','24','',NULL,-7.0,42.0,127.0,NULL,NULL), - ('BY','BY','BY',7,318,'B[A-L;R-T;Y-Z]2Q,B[A-L;R-T;Y-Z]2R,B[A-L;R-T;Y-Z]2S,B[A-L;R-T;Y-Z]2T','China','Lio Ning ','AS','24','44',NULL,-7.0,41.0,123.0,NULL,NULL), - ('BY','BY','BY',17,318,'B[A-L;R-T;Y-Z]4A,B[A-L;R-T;Y-Z]4B,B[A-L;R-T;Y-Z]4C,B[A-L;R-T;Y-Z]4D','China','Shang Hai ','AS','24','44',NULL,-7.0,31.0,121.0,NULL,NULL), - ('BY','BY','BY',19,318,'B[A-L;R-T;Y-Z]4I,B[A-L;R-T;Y-Z]4J,B[A-L;R-T;Y-Z]4K,B[A-L;R-T;Y-Z]4L','China','Shandong ','AS','24','44',NULL,-7.0,36.0,118.0,NULL,NULL), - ('BY','BY','BY',21,318,'B[A-L;R-T;Y-Z]4Q,B[A-L;R-T;Y-Z]4R,B[A-L;R-T;Y-Z]4S,B[A-L;R-T;Y-Z]4T,B[A-L;R-T;Y-Z]4U','China','Jiangsu ','AS','24','44',NULL,-7.0,33.5,119.0,NULL,NULL), - ('BY','BY','BY',23,318,'B[A-L;R-T;Y-Z]5A,B[A-L;R-T;Y-Z]5B,B[A-L;R-T;Y-Z]5C,B[A-L;R-T;Y-Z]5D','China','Zhejiang ','AS','24','44',NULL,-7.0,29.0,120.0,NULL,NULL), - ('BY','BY','BY',25,318,'B[A-L;R-T;Y-Z]5I,B[A-L;R-T;Y-Z]5J,B[A-L;R-T;Y-Z]5K,B[A-L;R-T;Y-Z]5L','China','Jiangxi ','AS','24','44',NULL,-7.0,NULL,NULL,NULL,NULL), - ('BY','BY','BY',27,318,'B[A-L;R-T;Y-Z]5Q,B[A-L;R-T;Y-Z]5R,B[A-L;R-T;Y-Z]5S,B[A-L;R-T;Y-Z]5T,B[A-L;R-T;Y-Z]5U','China','Fujian ','AS','24','44',NULL,-7.0,26.0,118.0,NULL,NULL), - ('BY','BY','BY',29,318,'B[A-L;R-T;Y-Z]6A,B[A-L;R-T;Y-Z]6B,B[A-L;R-T;Y-Z]6C,B[A-L;R-T;Y-Z]6D','China','Anhui ','AS','24','44',NULL,-7.0,32.0,117.0,NULL,NULL), - ('BY','BY','BY',31,318,'B[A-L;R-T;Y-Z]6I,B[A-L;R-T;Y-Z]6J,B[A-L;R-T;Y-Z]6K,B[A-L;R-T;Y-Z]6L','China','Henan ','AS','24','44',NULL,-7.0,34.0,114.0,NULL,NULL), - ('BY','BY','BY',37,318,'B[A-L;Y-Z]7I,B[A-L;Y-Z]7J,B[A-L;Y-Z]7K,B[A-L;Y-Z]7L,BR7[I-P]','China','Guangdong ','AS','24','44',NULL,-7.0,24.0,114.0,NULL,NULL), - ('BY','BY','BY',33,318,'B[A-L;R-T;Y-Z]6Q,B[A-L;R-T;Y-Z]6R,B[A-L;R-T;Y-Z]6S,B[A-L;R-T;Y-Z]6T','China','Hubei ','AS','24','',NULL,-7.0,31.0,112.0,NULL,NULL), - ('BY','BY','BY',35,318,'B[A-L;Y-Z]7A,B[A-L;Y-Z]7B,B[A-L;Y-Z]7C,B[A-L;Y-Z]7D,BR7[A-H]','China','Hunan ','AS','22','',NULL,-7.0,27.0,111.0,NULL,NULL), - ('BY','BY','BY',39,318,'B[A-L;Y-Z]7Q,B[A-L;Y-Z]7R,B[A-L;Y-Z]7S,B[A-L;Y-Z]7T,BR7[Q-X]','China','Guangxi ','AS','24','',NULL,-7.0,24.0,109.0,NULL,NULL), - ('BY','BY','BY',42,318,'B[A-L;R-T;Y-Z]8A,B[A-L;R-T;Y-Z]8B,B[A-L;R-T;Y-Z]8C','China','Sichuan ','AS','24','43',NULL,-7.0,30.0,103.0,NULL,NULL), - ('BY','BY','BY',44,318,'B[A-L;R-T;Y-Z]8G,B[A-L;R-T;Y-Z]8H,B[A-L;R-T;Y-Z]8I','China','Chongquing ','AS','24','43',NULL,-7.0,29.5,106.5,NULL,NULL), - ('BY','BY','BY',46,318,'B[A-L;R-T;Y-Z]8M,B[A-L;R-T;Y-Z]8N,B[A-L;R-T;Y-Z]8O','China','Guizhou ','AS','24','43',NULL,-7.0,27.0,107.0,NULL,NULL), - ('BY','BY','BY',48,318,'B[A-L;R-T;Y-Z]8S,B[A-L;R-T;Y-Z]8T,B[A-L;R-T;Y-Z]8U','China','Yunnan ','AS','24','42',NULL,-7.0,25.0,102.7,NULL,NULL), - ('BY','BY','BY',50,318,'B[A-L;R-T;Y-Z]9A,B[A-L;R-T;Y-Z]9B,B[A-L;R-T;Y-Z]9C','China','Shanxi ','AS','24','',NULL,-7.0,37.0,112.0,NULL,NULL), - ('BY','BY','BY',52,318,'B[A-L;R-T;Y-Z]9G,B[A-L;R-T;Y-Z]9H,B[A-L;R-T;Y-Z]9I','China','Gansu ','AS','23','43',NULL,-7.0,36.0,104.0,NULL,NULL), - ('BY','BY','BY',54,318,'B[A-L;R-T;Y-Z]9M,B[A-L;R-T;Y-Z]9N,B[A-L;R-T;Y-Z]9O','China','Ningxia ','AS','23','43',NULL,-7.0,37.0,107.0,NULL,NULL), - ('BY','BY','BY',56,318,'B[A-L;R-T;Y-Z]9S,B[A-L;R-T;Y-Z]9T,B[A-L;R-T;Y-Z]9U','China','Quinghai ','AS','23','43',NULL,-7.0,36.0,96.0,NULL,NULL), - ('CX','CX','CX',2,144,'CX#A,CX#B,CX#C,CV#A,CV#B,CV#C,CW#A,CW#B,CW#C','Uruguay','Montevideo ','SA','13','14',NULL,3.0,-34.9,-56.25,NULL,NULL), - ('CX','CX','CX',3,144,'CX#D,CV#D,CW#D','Uruguay','Canelones ','SA','13','14',NULL,3.0,-34.5,-56.25,NULL,NULL), - ('CX','CX','CX',4,144,'CX#E,CV#E,CW#E','Uruguay','San Jose ','SA','13','14',NULL,3.0,-34.25,-56.75,NULL,NULL), - ('CX','CX','CX',5,144,'CX#F,CV#F,CW#F','Uruguay','Colonia ','SA','13','14',NULL,3.0,-34.25,-57.75,NULL,NULL), - ('CX','CX','CX',6,144,'CX#G,CV#G,CW#G','Uruguay','Soriano ','SA','13','14',NULL,3.0,-33.5,-57.75,NULL,NULL), - ('CX','CX','CX',7,144,'CX#H,CV#H,CW#H','Uruguay','Rio Negro ','SA','13','14',NULL,3.0,-32.75,-57.5,NULL,NULL), - ('CX','CX','CX',8,144,'CX#I,CV#I,CW#I','Uruguay','Paysandu ','SA','13','14',NULL,3.0,-33.3,-50.0,NULL,NULL), - ('CX','CX','CX',9,144,'CX#J,CV#J,CW#J','Uruguay','Salto ','SA','13','14',NULL,3.0,-31.4,-57.9,NULL,NULL), - ('CX','CX','CX',10,144,'CX#K,CV#K,CW#K','Uruguay','Artigas ','SA','13','14',NULL,3.0,-30.5,-57.0,NULL,NULL), - ('CX','CX','CX',11,144,'CX#L,CV#L,CW#L','Uruguay','Florida ','SA','13','14',NULL,3.0,-33.75,-55.9,NULL,NULL), - ('CX','CX','CX',12,144,'CX#M,CV#M,CW#M','Uruguay','Flores ','SA','13','14',NULL,3.0,-33.5,-56.9,NULL,NULL), - ('CX','CX','CX',13,144,'CX#N,CV#N,CW#N','Uruguay','Durazno ','SA','13','14',NULL,3.0,-33.0,-56.0,NULL,NULL), - ('CX','CX','CX',14,144,'CX#O,CV#O,CW#O','Uruguay','Tacuarembo ','SA','13','14',NULL,3.0,-31.7,-56.0,NULL,NULL), - ('CX','CX','CX',15,144,'CX#P,CV#P,CW#P','Uruguay','Rivera ','SA','13','14',NULL,3.0,-31.5,-55.25,NULL,NULL), - ('CX','CX','CX',16,144,'CX#R,CV#R,CW#R','Uruguay','Maldonado ','SA','13','14',NULL,3.0,-34.9,-55.0,NULL,NULL), - ('CX','CX','CX',17,144,'CX#S,CV#S,CW#S','Uruguay','Lavalleja ','SA','13','14',NULL,3.0,-34.35,-55.25,NULL,NULL), - ('CX','CX','CX',18,144,'CX#T,CV#T,CW#T','Uruguay','Rocha ','SA','13','14',NULL,3.0,-34.5,-55.3,NULL,NULL), - ('CX','CX','CX',19,144,'CX#U,CV#U,CW#U','Uruguay','Treinta y Tres ','SA','13','14',NULL,3.0,-33.25,-54.4,NULL,NULL), - ('CX','CX','CX',20,144,'CX#V,CV#V,CW#V','Uruguay','Cerro Largo ','SA','13','14',NULL,3.0,-32.3,-54.2,NULL,NULL), - ('PY','PY','PY',87,108,'PV8, PU8[T-V], Z[V-Z]8T, Z[V-Z]8U, Z[V-Z]8]V','Brazil','Roraima ','SA','11','',NULL,4.0,2.0,-62.0,NULL,NULL), - ('PY','PY','PY',88,108,'PW8, PU8[D-F], Z[V-Z]8D, Z[V-Z]8E, Z[V-Z]8F','Brazil','Rondonia ','SA','11','12',NULL,4.0,-10.8,-63.0,NULL,NULL), - ('PY','PY','PY',92,108,'PT9, PU9[A-N], Z[V-Z]9','Brazil','Mato Grosso do Sul ','SA','11','15',NULL,4.0,-20.7,-55.0,NULL,NULL), - ('BY','BY','BY',4,318,'B[A-L;R-T;Y-Z]2E,B[A-L;R-T;Y-Z]2F,B[A-L;R-T;Y-Z]2G,B[A-L;R-T;Y-Z]2H','China','Hei Long Jiang ','AS','24','',NULL,-7.0,47.0,128.0,NULL,NULL), - ('BY','BY','BY',6,318,'B[A-L;R-T;Y-Z]2M,B[A-L;R-T;Y-Z]N,B[A-L;R-T;Y-Z]2O,B[A-L;R-T;Y-Z]2P','China','Ji Lin ','AS','24','',NULL,-7.0,42.0,127.0,NULL,NULL), - ('BY','BY','BY',8,318,'B[A-L;R-T;Y-Z]2U,B[A-L;R-T;Y-Z]2V,B[A-L;R-T;Y-Z]2W,B[A-L;R-T;Y-Z]2X','China','Lio Ning ','AS','24','44',NULL,-7.0,41.0,123.0,NULL,NULL), - ('BY','BY','BY',10,318,'B[A-L;R-T;Y-Z]3D,B[A-L;R-T;Y-Z]3E,B[A-L;R-T;Y-Z]3F','China','TianJin ','AS','24',NULL,NULL,-8.0,39.5,117.5,NULL,NULL), - ('BY','BY','BY',12,318,'B[A-L;R-T;Y-Z]3J, B[A-L;R-T;Y-Z]3K,B[A-L;R-T;Y-Z]3L','China','NeiMenggu ','AS','23',NULL,NULL,-8.0,38.0,100.0,NULL,NULL), - ('BY','BY','BY',14,318,'B[A-L;R-T;Y-Z]3P,B[A-L;R-T;Y-Z]3Q,B[A-L;R-T;Y-Z]3R','China','HeBei ','AS','24',NULL,NULL,-8.0,40.0,116.0,NULL,NULL), - ('BY','BY','BY',16,318,'B[A-L;R-T;Y-Z]3W,B[A-L;R-T;Y-Z]3X,B[A-L;R-T;Y-Z]3Y,B[A-L;R-T;Y-Z]3Z','China','ShanXi ','AS','24',NULL,NULL,-8.0,38.0,113.0,NULL,NULL), - ('BY','BY','BY',18,318,'B[A-L;R-T;Y-Z]4E,B[A-L;R-T;Y-Z]4F,B[A-L;R-T;Y-Z]4G,B[A-L;R-T;Y-Z]4H','China','Shang Hai ','AS','24','44',NULL,-7.0,31.0,121.0,NULL,NULL), - ('BY','BY','BY',20,318,'B[A-L;R-T;Y-Z]4M,B[A-L;R-T;Y-Z]4N,B[A-L;R-T;Y-Z]4O,B[A-L;R-T;Y-Z]4P','China','Shandong ','AS','24','44',NULL,-7.0,36.0,118.0,NULL,NULL), - ('BY','BY','BY',22,318,'B[A-L;R-T;Y-Z]4V,B[A-L;R-T;Y-Z]4W,B[A-L;R-T;Y-Z]4X,B[A-L;R-T;Y-Z]4Y,B[A-L;R-T;Y-Z]4Z','China','Jiangsu ','AS','24','44',NULL,-7.0,33.5,119.0,NULL,NULL), - ('BY','BY','BY',24,318,'B[A-L;R-T;Y-Z]5E,B[A-L;R-T;Y-Z]5F,B[A-L;R-T;Y-Z]5G,B[A-L;R-T;Y-Z]5H','China','Zhejiang ','AS','24','44',NULL,-7.0,29.0,120.0,NULL,NULL), - ('BY','BY','BY',26,318,'B[A-L;R-T;Y-Z]5M,B[A-L;R-T;Y-Z]5N,B[A-L;R-T;Y-Z]5O,B[A-L;R-T;Y-Z]5P','China','Jiangxi ','AS','24','44',NULL,-7.0,NULL,NULL,NULL,NULL), - ('BY','BY','BY',28,318,'B[A-L;R-T;Y-Z]5V,B[A-L;R-T;Y-Z]5W,B[A-L;R-T;Y-Z]5X,B[A-L;R-T;Y-Z]5Y,B[A-L;R-T;Y-Z]5Z','China','Fujian ','AS','24','44',NULL,-7.0,26.0,118.0,NULL,NULL), - ('BY','BY','BY',30,318,'B[A-L;R-T;Y-Z]6E,B[A-L;R-T;Y-Z]6F,B[A-L;R-T;Y-Z]6G,B[A-L;R-T;Y-Z]6H','China','Anhui ','AS','24','44',NULL,-7.0,32.0,117.0,NULL,NULL), - ('BY','BY','BY',32,318,'B[A-L;R-T;Y-Z]6M,B[A-L;R-T;Y-Z]6N,B[A-L;R-T;Y-Z]6O,B[A-L;R-T;Y-Z]6P','China','Henan ','AS','24','44',NULL,-7.0,34.0,114.0,NULL,NULL), - ('BY','BY','BY',34,318,'B[A-L;R-T;Y-Z]6U,B[A-L;R-T;Y-Z]6V,B[A-L;R-T;Y-Z]6W,B[A-L;R-T;Y-Z]6X','China','Hubei ','AS','24','',NULL,-7.0,31.0,112.0,NULL,NULL), - ('BY','BY','BY',36,318,'B[A-L;Y-Z]7E,B[A-L;Y-Z]7F,B[A-L;Y-Z]7G,B[A-L;Y-Z]7H,BT7[A-H]','China','Hunan ','AS','22','',NULL,-7.0,27.0,111.0,NULL,NULL), - ('BY','BY','BY',38,318,'B[A-L;Y-Z]7M,B[A-L;Y-Z]7N,B[A-L;Y-Z]7O,B[A-L;Y-Z]7P,BT7[I-P]','China','Guangdong ','AS','24','44',NULL,-7.0,24.0,114.0,NULL,NULL), - ('BY','BY','BY',40,318,'B[A-L;Y-Z]7U,B[A-L;Y-Z]7V,B[A-L;Y-Z]7W,B[A-L;Y-Z]7X,BT7[Q-X]','China','Guangxi ','AS','24','',NULL,-7.0,24.0,109.0,NULL,NULL), - ('BY','BY','BY',41,318,'B[A-L;Y-Z]7Y,BR7Y,BT7Y','China','Hainan Island ','AS','24','44','AS-129',-7.0,19.0,110.0,NULL,NULL), - ('BY','BY','BY',43,318,'B[A-L;R-T;Y-Z]8D,B[A-L;R-T;Y-Z]8E,B[A-L;R-T;Y-Z]8F','China','Sichuan ','AS','24','43',NULL,-7.0,30.0,103.0,NULL,NULL), - ('BY','BY','BY',45,318,'B[A-L;R-T;Y-Z]8J,B[A-L;R-T;Y-Z]8K,B[A-L;R-T;Y-Z]8L','China','Chongquing ','AS','24','43',NULL,-7.0,29.5,106.5,NULL,NULL), - ('BY','BY','BY',47,318,'B[A-L;R-T;Y-Z]8P,B[A-L;R-T;Y-Z]8Q,B[A-L;R-T;Y-Z]8R','China','Guizhou ','AS','24','43',NULL,-7.0,27.0,107.0,NULL,NULL), - ('BY','BY','BY',49,318,'B[A-L;R-T;Y-Z]8V,B[A-L;R-T;Y-Z]8W,B[A-L;R-T;Y-Z]8X','China','Yunnan ','AS','24','',NULL,-7.0,37.0,112.0,NULL,NULL), - ('BY','BY','BY',53,318,'B[A-L;R-T;Y-Z]9J,B[A-L;R-T;Y-Z]9K,B[A-L;R-T;Y-Z]9L','China','Gansu ','AS','23','43',NULL,-7.0,36.0,104.0,NULL,NULL), - ('BY','BY','BY',55,318,'B[A-L;R-T;Y-Z]9P,B[A-L;R-T;Y-Z]9Q,B[A-L;R-T;Y-Z]9R','China','Ningxia ','AS','23','43',NULL,-7.0,37.0,107.0,NULL,NULL), - ('BY','BY','BY',57,318,'B[A-L;R-T;Y-Z]9V,B[A-L;R-T;Y-Z]9W,B[A-L;R-T;Y-Z]9X','China','Quinghai ','AS','23','43',NULL,-7.0,36.0,96.0,NULL,NULL), - ('BY','BY','BY',59,318,'B[A-L;R-T;Y-Z]0D,B[A-L;R-T;Y-Z]0E,B[A-L;R-T;Y-Z]0F','China','XinJiang ','AS','23',NULL,NULL,-8.0,37.0,85.0,NULL,NULL), - ('BY','BY','BY',61,318,'B[A-L;R-T;Y-Z]0J,B[A-L;R-T;Y-Z]0K,B[A-L;R-T;Y-Z]0L','China','Xizanh (Tibet) ','AS','23','42',NULL,-6.0,32.0,90.0,NULL,NULL), - ('FR-J','F','FR-J',2,124,'FR-E,FT#E','Juan de Nova','Europa Island','AF','39','53','AF-009',-4.0,-22.3667,40.35,'1960-06-25 00:00:00.000',NULL), - ('UT','UT','UT',52,288,'UU0,UU1,UU2,UU3,UU4,UU5,UU6,UU8','Ukraine','Respublika Krym ','EU','16','29',NULL,-3.0,51.0,31.0,NULL,NULL), - ('UT','UT','UT',53,288,'UU9,UT5J','Ukraine','Sevastopol ','EU','16','29',NULL,-3.0,50.45,30.5,NULL,NULL), - ('CE9','CE9','CE9',5,13,'AY#ZS, AZ#ZS, LU#ZS','Antarctica','Marambio Station (Argentina)','AN','30','73','AN-013',3.0,-64.23,56.62,NULL,NULL), - ('CE9','CE9','CE9',2,13,'CE9AP','Antarctica','Capt. Arturo Pratt Base (Chile)','AN','13','73',NULL,4.0,-62.5,59.68,NULL,NULL), - ('CE9','CE9','CE9',11,13,'VK0-W','Antarctica','Mawson Base (Austtralia)','AN','39','69',NULL,-5.0,-67.6,62.87,NULL,NULL), - ('UA','UA','UA',6,54,'R[A-H;J-Z]1F,R?1G,R?1H,R?1I,R?1J,U!1[F-J]','European Russia','St. Petersburg ','EU','16','',NULL,-4.0,59.6,30.3,NULL,NULL), - ('UA','UA','UA',20,54,'R?5A,R?5B,R?5C,U!5A,U!5B,U!5C,R5A,R5B,R5C','European Russia','Moscow ','EU','16','29',NULL,-4.0,55.5,38.2,NULL,NULL), - ('UA','UA','UA',21,54,'R[B-Z]2D,R[B-Z]2H,R2D,R2H,U2D,U2H','European Russia','Moscow region ','EU','16','29',NULL,-4.0,55.5,38.2,NULL,NULL), - ('UA','UA','UA',23,54,'R?5D,U!5D,R?5F,U!5F,R?5H,U!5H,R5D,R5F,R5H','European Russia','Moscow region ','EU','16','29',NULL,-4.0,55.5,38.2,NULL,NULL), - ('UA','UA','UA',27,54,'R?3I,R?3J,U!3I,U!3J,R3I,R3J,U3I,U3J','European Russia','Tver ','EU','16','29',NULL,-4.0,56.5,35.9,NULL,NULL), - ('UA','UA','UA',28,54,'R?5I,R?5J,U!5I,U!5J,R5I,R5J','European Russia','Tver ','EU','16','29',NULL,-4.0,55.0,35.0,NULL,NULL), - ('UA','UA','UA',33,54,'R[B-Z]2O,R2O,U2O,R?3O,U!3O,R3O,U3O,R?5O,U!5O,R5O','European Russia','Voronezh ','EU','16','29',NULL,-4.0,51.4,39.2,NULL,NULL), - ('UA','UA','UA',35,54,'R?3K,U!3K,R3K,U3K,R?5K,U!5K,R5K','European Russia','Voronezh ','EU','16','29',NULL,-4.0,51.4,39.2,NULL,NULL), - ('UA','UA','UA',65,54,'R?6Q,U!6Q,R6Q,U6Q,R?7Q,U!7Q,R7Q','European Russia','Republic of Ingushetia ','EU','16','29',NULL,-4.0,43.2,44.8,NULL,NULL), - ('UA','UA','UA',63,54,'R?7L,R?7M,R?7N,U!7L,U!7M,U!7N,R7L,R7M,R7N','European Russia','Rostov ','EU','16','29',NULL,-4.0,47.1,39.7,NULL,NULL), - ('UA','UA','UA',67,54,'R?6V,U[A-E;G-I]6V,R6V,U6V,R?7V,U!7V,R7V','European Russia','Astrakhan ','EU','16','29',NULL,-4.0,47.0,48.0,NULL,NULL), - ('UA0','UA0','UA',2,15,'R?8A,U!8A,R?8B,U!8B,R8A,R8B','Asiatic Russia','Chelyabinsk ','AS','17','30',NULL,-6.0,54.0,61.0,NULL,NULL), - ('UA0','UA0','UA',4,15,'R?8C,R?8D,U!8C,U!8D,R8C,R8D','Asiatic Russia','Sverdlovsk ','AS','17','',NULL,-6.0,57.0,61.0,NULL,NULL), - ('UA0','UA0','UA',7,15,'R?8H,R?8I,U!8H,U!8I,R8H,R8I','Asiatic Russia','Tomsk ','AS','18','',NULL,-7.0,57.0,85.0,NULL,NULL), - ('UA0','UA0','UA',12,15,'R?8M,R?8N,U!8M,U!8N,R8M,R8N','Asiatic Russia','Omsk ','AS','17','',NULL,-7.0,55.0,74.0,NULL,NULL), - ('UA0','UA0','UA',15,15,'R?8Q,R?8R,U!8Q,U!8R,R8Q,R8R','Asiatic Russia','Kurgan ','AS','17','30',NULL,-6.0,55.0,65.0,NULL,NULL), - ('UA0','UA0','UA',17,15,'R?8S,R?8T,U!8S,U!8T,R8S,R8T','Asiatic Russia','Orenburg ','EU','16','30',NULL,-6.0,52.0,55.0,NULL,NULL), - ('UA','UA','UA',11,54,'RI1O','European Russia','Novaya Zemlya ','EU','16','75','EU-035',-4.0,73.0,55.0,NULL,NULL), - ('UA','UA','UA',13,54,'RI1P','European Russia','Kolguev Is. ','EU','16','20','EU-085',-4.0,69.0,49.0,NULL,NULL), - ('UA0','UA0','UA',32,15,'RI0F','Asiatic Russia','Kuril Islands ','AS','19','34','AS-025',-12.0,47.0,150.0,NULL,NULL), - ('UA0','UA0','UA',36,15,'RI0K','Asiatic Russia','Wrangel Ia. ','AS','19','26','AS-027',-12.0,71.3,-179.0,NULL,NULL), - ('UA0','UA0','UA',41,15,'RI0Q[A-L],RI0QA?','Asiatic Russia','Bear Is. ','AS','19','23','AS-022',-10.0,70.6,161.0,NULL,NULL), - ('UA0','UA0','UA',42,15,'RI0Q[M-Z],RI0QC?','Asiatic Russia','Siberian Islands. ','AS','19','23','AS-070',-10.0,70.5,157.0,NULL,NULL), - ('UA0','UA0','UA',49,15,'RI0X','Asiatic Russia','Karaginskij Island ','AS','19','25','AS-064',-12.0,59.5,164.6,NULL,NULL), - ('UA0','UA0','UA',52,15,'RI0Z','Asiatic Russia','Commander Islands ','AS','19','35','AS-039',-12.0,55.0,166.0,NULL,NULL), - ('UA0','UA0','UA',29,15,'RI0C','Asiatic Russia','Iony Is. ','AS','19','34','AS-069',-12.0,56.3,143.4,NULL,NULL), - ('UA','UA','UA',9,54,'RI1N','European Russia','Islands of European Russia','EU','16',NULL,NULL,-4.0,NULL,NULL,NULL,NULL), - ('UA0','UA0','UA',38,15,'RI0N','Asiatic Russia','Islands of Asiatic Russia','AS','19',NULL,NULL,-11.0,NULL,NULL,NULL,NULL), - ('PJ5','PJ5','PJ',2,519,'PJ6','Saba & Saint Eustatius','Saba','NA','8','11','NA-145',4.0,17.63,-63.23,'2010-10-10 00:00:00.000',NULL), - ('PJ9','PJ2','PJ',1,85,'~PJ9','Bonaire, Curacao ','Bonaire, Curacao (Neth Antilles)','SA','9','11','SA-006',4.0,12.15,-68.9,NULL,'2010-10-09 00:00:00.000'), - ('PJ8','PJ5','PJ',1,255,'~PJ7,~PJ8','St Maarten, Saba, St Eustatius','Sint Maarten, Saba, Saint Eustatius','NA','8','11',NULL,4.0,17.5,-62.0,NULL,'2010-10-09 00:00:00.000'), - ('Z8','Z8','Z8',1,521,'Z8','Republic of South Sudan','South Sudan','AF','34',NULL,NULL,-2.0,4.95,31.5,'2011-07-14 00:00:00.000',NULL), - ('FW','F','FW',2,298,'TW0F','Wallis & Futuna Islands','Futuna & Horne Islands','OC','32','62','OC-118',-12.0,-14.28,-178.13,NULL,NULL), - ('VP8-H','VP8H','VP8-H',2,241,'AY#ZC, AY#ZI, AY#ZO, AY#ZT, AZ#ZC, AZ#ZI, AZ#ZO, AZ#ZT ','South Shetland Islands','South Shetland Islands','AN','13','73','AN-010',4.0,-62.0333,-58.21,NULL,NULL), - ('VP8-S','VP8S','VP8-GS',2,240,'AY#ZY, AZ#ZY, LU#ZY','South Sandwich Islands','South Sandwich Islands',NULL,'13','73','AN-009',4.0,-59.4267,-27.0833,NULL,NULL), - ('VP8-O','VP8O','VP8-O',2,238,' AY#ZA, AY#ZM, AZ#ZA, AZ#ZM','South Orkney Islands','South Orkney Islands','AN','13','73','AN-008',3.0,-60.7167,-45.6,NULL,NULL), - ('CE9','CE9','CE9',19,13,'8J1RF','Antarctica','Dome Fuji Base (Japan)','AN','39','67','AN-016',-3.0,-77.2,38.5,NULL,NULL), - ('Z6','Z6','YU',3,522,'Z6','Republic of Kosovo','Kosovo ','EU','15','28',NULL,-1.0,42.7,21.167,'2018-01-21 00:00:00.000',NULL), - ('UA','UA','UA',67,54,'UF6V','European Russia','Russian-occupied Georgia','AD','21','29',NULL,-4.0,41.8333,42.5,NULL,NULL), - ('5B','1B','5B',1,215,'1B','Cyprus','TRNC (Not valid for DXCC)','AS','20','39',NULL,-2.0,35.25,33.5,NULL,NULL), - ('JW','JW','JW',2,259,'JW*/B','Svalbard','Bear Island ','EU','40','18','EU-027',-1.0,74.45,19.0,NULL,NULL), - ('YB','YB','YB',2,327,'Y[B-H]0','Indonesia','Jakarta','OC','28',NULL,NULL,-7.0,-6.25,106.83,NULL,NULL), - ('YB','YB','YB',6,327,'Y[B-H]4','Indonesia','Jambi, S. Sumatra, Bengkulu, & Lampung','OC','28','54',NULL,-7.0,-2.99,104.75,NULL,NULL), - ('YB','YB','YB',9,327,'YB7[A-G],YB7Z[A-G],YC7[A-G],YC7Z[A-G],YD7[A-G],YD7Z[R-G],YE7[A-G],YE7Z[A-G],YF7[A-G],YF7Z[A-G], YG7[A-G],YG7Z[A-G],YH7[A-G],YH7Z[A-G]','Indonesia','West Borneo','OC','28','54',NULL,-7.0,0.0,109.3,NULL,NULL), - ('YB','YB','YB',10,327,'YB7[O-T],YB2Z[O-T],Yc7[O-T],YC2Z[O-T],YD7[O-T],YD2Z[O-T],YE7[O-T],YE2Z[O-T],YF7[O-T],YF2Z[O-T],YG7[O-T],YG2Z[O-T],YH7[O-T],YH2Z[O-T],','Indonesia','Central Borneo','OC','28','54',NULL,-7.0,-2.5,113.0,NULL,NULL), - ('YB','YB','YB',11,327,'YB7[H-N],YB7Z[H-N],YC7[H-N],YC7Z[H-N],YD7[H-N],YD7Z[H-N],YE7[H-N],YE7Z[H-N],YF7[H-N],YF7Z[H-N],YG7[H-N],YG7Z[H-N],YH7[H-N],YH7Z[H-N]','Indonesia','South Borneo','OC','28','54',NULL,-8.0,-3.5,115.0,NULL,NULL), - ('YB','YB','YB',12,327,'YB7[U-Y],YB7Z[U-Z],YC7[U-Y],YC7Z[U-Z],YD7[U-Y],YD7Z[U-Z],YE7[U-Y],YE7Z[U-Z],YF7[U-Y],YF7Z[U-Z],YG7[U-Y],YG7Z[U-Z],YH7[U-Y],YH7Z[U-Z]','Indonesia','East Borneo','OC','28','54',NULL,-8.0,-0.5,117.0,NULL,NULL), - ('YB','YB','YB',13,327,'YB8[A-U],YB8Z[A-U],YC8[A-U],YC8Z[A-U],YD8[A-U],YD8Z[A-U],YE8[A-U],YE8Z[A-U],YF8[A-U],YF8Z[A-U],YG8[A-U],YG8Z[A-U],YH8[A-U],YH8Z[A-U]','Indonesia','Sulawesi','OC','28','54',NULL,-8.0,-2.0,120.5,NULL,NULL), - ('YB','YB','YB',14,327,'YB8[V-Y],YB8Z[V-Z],YC8[V-Y],YC8Z[V-Z],YD8[V-Y],YD8Z[V-Z],YE8[V-Y],YE8Z[V-Z],YF8[V-Y],YF8Z[V-Z],YG8[V-Y],YG8Z[V-Z],YH8[V-Y],YH8Z[V-Z]','Indonesia','Maluku Islands','OC','28','54',NULL,-9.0,-3.7,128.0,NULL,NULL), - ('YB','YB','YB',15,327,'YB9[A-F],YB9Z[A-F],YC9[A-F],YC9Z[A-F],YD9[A-F],YD9Z[A-F],YE9[A-F],YE9Z[A-F],YF9[A-F],YF9Z[A-F],YG9[A-F],YG9Z[A-F],YH9[A-F],YH9Z[A-F]','Indonesia','Bali','OC','28','54',NULL,-8.0,-8.65,115.22,NULL,NULL), - ('YB','YB','YB',18,327,'YB9[Q-Y],YB9Z[Q-Z],YC9[Q-Y],YC9Z[Q-Z],YD9[Q-Y],YD9Z[Q-Z],YE9[Q-Y],YE9Z[Q-Z],YBF[Q-Y],YF9Z[Q-Z],YG9[Q-Y],YG9Z[Q-Z],YH9[Q-Y],YH9Z[Q-Z]','Indonesia','Papua','OC','28','51',NULL,-9.0,-3.75,137.0,NULL,NULL), - ('UA','UA','UA',71,54,'R?6R,U!6R,R6R,U6R,R?7R,U!7R,R7R','European Russia','Russian-occupied Sevastapol','EU','16','29',NULL,-3.0,44.6,33.52,NULL,NULL), - ('UA','UA','UA',72,54,'R?6K,U!6K,R6K,R?97K,U!7K,R7K','European Russia','Russian-occupied Crimea ','EU','16','29',NULL,-3.0,45.5,34.25,NULL,NULL), - ('CE9','HL','CE9',34,13,'D8A','Antarctica','Jang Bogo Station (Korea)','AN','30','71','AN-016',-12.0,-74.62,164.2,NULL,NULL), - ('YB','YB','YB',3,327,'Y[B-H]1','Indonesia','Banten & West Java','OC','28',NULL,NULL,-7.0,-6.91,107.6,NULL,NULL), - ('YB','YB','YB',4,327,'Y[B-H]2','Indonesia','Central Java & Yogyakarta','OC','28',NULL,NULL,-7.0,-6.98,110.43,NULL,NULL), - ('YB','YB','YB',5,327,'Y[B-H]3','Indonesia','East Java','OC','28',NULL,NULL,-7.0,-7.98,112.62,NULL,NULL), - ('YB','YB','YB',7,327,'Y[B-H]5','Indonesia','West Sumatra & Riau','OC','28','54',NULL,-7.0,-0.95,100.4,NULL,NULL), - ('YB','YB','YB',8,327,'Y[B-H]6','Indonesia','North Sumatra & Aceh','OC','28','54',NULL,-7.0,3.28,98.0,NULL,NULL), - ('YB','YB','YB',16,327,'YB9[G-K],YB9Z[G-K],YC9[G-K],YC9Z[G-K],YD9[G-K],YD9Z[G-K],YE9[G-K],YE9Z[G-K],YF9[G-K],YF9Z[G-K],YG9[G-K],YG9Z[G-K],YH9[G-K],YH9Z[G-K]','Indonesia','West Nusatenggara','OC','28','54',NULL,-8.0,-8.67,117.5,NULL,NULL), - ('YB','YB','YB',17,327,'YB9[L-P],YB9Z[L-P],YC9[L-P],YC9Z[L-P],YD9[L-P],YD9Z[L-P],YE9[L-P],YE9Z[L-P],YF9[L-P],YF9Z[L-P],YG9[L-P],YG9Z[L-P],YH9[L-P],YH9Z[L-P]','Indonesia','East Nusatenggara','OC','28','54',NULL,-8.0,-8.67,121.5,NULL,NULL), - ('CE9','CE9','CE9',29,13,'RI1ANZ','Antarctica','Progress Station (Russia)','AN','39','69','AN-016',-6.0,-69.397,76.373,NULL,NULL), - ('UA0','UA0','UA',1,15,'UA0','Asiatic Russia','Asiatic Russia','AS',NULL,NULL,NULL,NULL,64.0,130.0,NULL,NULL);"); - } - } - - public function down(){ - $this->db->query(""); - } -} diff --git a/application/migrations/106_add_user_previous_qsl_type.php b/application/migrations/106_add_user_previous_qsl_type.php deleted file mode 100644 index 2574753ce..000000000 --- a/application/migrations/106_add_user_previous_qsl_type.php +++ /dev/null @@ -1,28 +0,0 @@ -db->field_exists('user_previous_qsl_type', 'users')) { - $fields = array( - 'user_previous_qsl_type integer DEFAULT 0', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('user_previous_qsl_type', 'users')) { - $this->dbforge->drop_column('users', 'user_previous_qsl_type'); - } - } -} diff --git a/application/migrations/107_change_greencube_to_oscar.php b/application/migrations/107_change_greencube_to_oscar.php deleted file mode 100644 index 770c48ddc..000000000 --- a/application/migrations/107_change_greencube_to_oscar.php +++ /dev/null @@ -1,25 +0,0 @@ -db->set('COL_SAT_NAME', 'IO-117'); - $this->db->set('COL_SAT_MODE', 'U'); - $this->db->where('COL_SAT_NAME', 'GREENCUBE'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - $this->db->set('COL_SAT_NAME', 'GREENCUBE'); - $this->db->where('COL_SAT_NAME', 'IO-117'); - $this->db->update($this->config->item('table_name')); - } -} \ No newline at end of file diff --git a/application/migrations/108_add_pota_columns.php b/application/migrations/108_add_pota_columns.php deleted file mode 100644 index 18a1ffe47..000000000 --- a/application/migrations/108_add_pota_columns.php +++ /dev/null @@ -1,68 +0,0 @@ -db->field_exists('COL_POTA_REF', $this->config->item('table_name'))) { - $fields = array( - 'COL_POTA_REF VARCHAR(30) DEFAULT NULL', - 'COL_MY_POTA_REF VARCHAR(50) DEFAULT NULL', - ); - $this->dbforge->add_column($this->config->item('table_name'), $fields, 'COL_VUCC_GRIDS'); - - // Now copy over data from SIG_INFO fields and remove COL_SIG and COL_SIG_INFO only if COL_SIG is POTA - // This cannot be reverted on downgrade to prevent overwriting of other COL_SIG information - $this->db->set('COL_POTA_REF', 'COL_SIG_INFO', FALSE); - $this->db->set('COL_SIG_INFO', ''); - $this->db->set('COL_SIG', ''); - $this->db->where('COL_SIG', 'POTA'); - $this->db->update($this->config->item('table_name')); - - } - if (!$this->db->field_exists('station_pota', 'station_profile')) { - // Add MY_POTA_REF to station profile - $fields = array( - 'station_pota varchar(50) DEFAULT NULL', - ); - $this->dbforge->add_column('station_profile', $fields); - } - if (!$this->db->field_exists('pota', 'bandxuser')) { - $fields = array( - 'pota' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - ), - ); - $this->dbforge->add_column('bandxuser', $fields); - $this->db->query("update bandxuser set pota = 1"); - } - } - - public function down() - { - if ($this->db->field_exists('COL_POTA_REF', $this->config->item('table_name'))) { - $this->dbforge->drop_column($this->config->item('table_name'), 'COL_POTA_REF'); - } - if ($this->db->field_exists('COL_MY_POTA_REF', $this->config->item('table_name'))) { - $this->dbforge->drop_column($this->config->item('table_name'), 'COL_MY_POTA_REF'); - } - if ($this->db->field_exists('station_pota', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'station_pota'); - } - if ($this->db->field_exists('pota', 'bandxuser')) { - $this->dbforge->drop_column('bandxuser', 'pota'); - } - } -} diff --git a/application/migrations/109_add_m17_and_freedv.php b/application/migrations/109_add_m17_and_freedv.php deleted file mode 100644 index 4fcb06d27..000000000 --- a/application/migrations/109_add_m17_and_freedv.php +++ /dev/null @@ -1,49 +0,0 @@ -db->get_where('adif_modes', array('submode' => 'FREEDV')); - if ($query->num_rows() == 0) { - $data = array( - array('mode' => "DIGITALVOICE", 'submode' => "FREEDV", 'qrgmode' => "DATA", 'active' => 1), - ); - $this->db->insert_batch('adif_modes', $data); - } - - // insert new M17 - $query = $this->db->get_where('adif_modes', array('submode' => 'M17')); - if ($query->num_rows() == 0) { - $data = array( - array('mode' => "DIGITALVOICE", 'submode' => "M17", 'qrgmode' => "DATA", 'active' => 1), - ); - $this->db->insert_batch('adif_modes', $data); - } - } - - public function down() - { - $query = $this->db->get_where('adif_modes', array('submode' => 'M17')); - if ($query->num_rows() > 0) { - $this->db->where('mode', 'DIGITALVOICE'); - $this->db->where('submode', 'M17'); - $this->db->delete('adif_modes'); - } - $query = $this->db->get_where('adif_modes', array('submode' => 'FREEDV')); - if ($query->num_rows() > 0) { - $this->db->where('mode', 'DIGITALVOICE'); - $this->db->where('submode', 'FREEDV'); - $this->db->delete('adif_modes'); - } - } -} diff --git a/application/migrations/110_rename_cas5a.php b/application/migrations/110_rename_cas5a.php deleted file mode 100644 index d3cf1fab5..000000000 --- a/application/migrations/110_rename_cas5a.php +++ /dev/null @@ -1,19 +0,0 @@ -db->set('COL_SAT_NAME', 'FO-118'); - $this->db->where('COL_SAT_NAME', 'CAS-5A'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - $this->db->set('COL_SAT_NAME', 'CAS-5A'); - $this->db->where('COL_SAT_NAME', 'FO-118'); - $this->db->update($this->config->item('table_name')); - } -} diff --git a/application/migrations/111_reupload_io117_and_fo118.php b/application/migrations/111_reupload_io117_and_fo118.php deleted file mode 100644 index 6e6506b73..000000000 --- a/application/migrations/111_reupload_io117_and_fo118.php +++ /dev/null @@ -1,21 +0,0 @@ -db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->where('COL_SAT_NAME', 'IO-117'); - $this->db->update($this->config->item('table_name')); - - $this->db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->where('COL_SAT_NAME', 'FO-118'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/112_add_oqrs.php b/application/migrations/112_add_oqrs.php deleted file mode 100644 index e06916517..000000000 --- a/application/migrations/112_add_oqrs.php +++ /dev/null @@ -1,105 +0,0 @@ -db->field_exists('oqrs', 'station_profile')) { - $fields = array( - 'oqrs int DEFAULT 0', - ); - - $this->dbforge->add_column('station_profile', $fields); - } - - if (!$this->db->field_exists('oqrs_text', 'station_profile')) { - $fields = array( - 'oqrs_text text', - ); - - $this->dbforge->add_column('station_profile', $fields); - } - - if (!$this->db->field_exists('oqrs_email', 'station_profile')) { - $fields = array( - 'oqrs_email int DEFAULT 0', - ); - - $this->dbforge->add_column('station_profile', $fields); - } - - if (!$this->db->table_exists('oqrs')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - 'requesttime' => array( - 'type' => 'timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP', - ), - 'date' => array( - 'type' => 'date', - ), - 'time' => array( - 'type' => 'time', - ), - 'band' => array( - 'type' => 'VARCHAR', - 'constraint' => 10, - ), - 'mode' => array( - 'type' => 'VARCHAR', - 'constraint' => 12, - ), - 'requestcallsign' => array( - 'type' => 'VARCHAR', - 'constraint' => 32, - ), - 'station_id' => array( - 'type' => 'int', - ), - 'note' => array( - 'type' => 'TEXT', - ), - 'email' => array( - 'type' => 'TEXT', - ), - 'qslroute' => array( - 'type' => 'VARCHAR', - 'constraint' => 50, - ), - 'status' => array( - 'type' => 'int', - ), - 'qsoid' => array( - 'type' => 'int', - ) - )); - - $this->dbforge->add_key('id', TRUE); - - $this->dbforge->create_table('oqrs'); - } - } - - public function down() - { - if ($this->db->field_exists('oqrs', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'oqrs'); - } - if ($this->db->field_exists('oqrs_text', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'oqrs_text'); - } - - if ($this->db->field_exists('oqrs_email', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'oqrs_email'); - } - - $this->dbforge->drop_table('oqrs'); - } -} \ No newline at end of file diff --git a/application/migrations/113_amsat_status_upload_option.php b/application/migrations/113_amsat_status_upload_option.php deleted file mode 100644 index 47fd767e9..000000000 --- a/application/migrations/113_amsat_status_upload_option.php +++ /dev/null @@ -1,28 +0,0 @@ -db->field_exists('user_amsat_status_upload', 'users')) { - $fields = array( - 'user_amsat_status_upload BOOLEAN DEFAULT FALSE', - ); - $this->dbforge->add_column('users', $fields, 'user_column5'); - } - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_amsat_status_upload'); - } -} diff --git a/application/migrations/114_create_index_for_colsubmode.php b/application/migrations/114_create_index_for_colsubmode.php deleted file mode 100644 index e69a25a4c..000000000 --- a/application/migrations/114_create_index_for_colsubmode.php +++ /dev/null @@ -1,15 +0,0 @@ -db->query("ALTER TABLE `".$this->config->item('table_name')."` ADD INDEX (`COL_SUBMODE`)"); - } - - public function down() { - $this->db->query("ALTER TABLE `".$this->config->item('table_name')."` DROP INDEX (`COL_SUBMODE`)"); - } -} - -?> \ No newline at end of file diff --git a/application/migrations/115_add_webadif_api_export.php b/application/migrations/115_add_webadif_api_export.php deleted file mode 100644 index 22e29007f..000000000 --- a/application/migrations/115_add_webadif_api_export.php +++ /dev/null @@ -1,58 +0,0 @@ -db->field_exists('webadifapikey', 'station_profile')) { - $fields = array( - 'webadifapikey varchar(50) DEFAULT NULL' - ); - $this->dbforge->add_column('station_profile', $fields); - } - if (!$this->db->field_exists('webadifapiurl', 'station_profile')) { - $fields = array( - 'webadifapiurl varchar(256) DEFAULT NULL' - ); - $this->dbforge->add_column('station_profile', $fields); - } - if (!$this->db->field_exists('webadifrealtime', 'station_profile')) { - $fields = array( - 'webadifrealtime bool DEFAULT FALSE' - ); - $this->dbforge->add_column('station_profile', $fields); - } - - - if (!$this->db->table_exists('webadif')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'auto_increment' => TRUE - ), - 'qso_id' => array( - 'type' => 'int', - ), - 'upload_date' => array( - 'type' => 'datetime', - ), - )); - - $this->dbforge->add_key('id', TRUE); - $this->dbforge->add_key(array('qso_id','upload_date'), FALSE); - - $this->dbforge->create_table('webadif'); - } - - } - - public function down() - { - $this->dbforge->drop_column('station_profile', 'webadifapikey'); - $this->dbforge->drop_column('station_profile', 'webadifapiurl'); - $this->dbforge->drop_column('station_profile', 'webadifrealtime'); - $this->dbforge->drop_table('webadif'); - } -} diff --git a/application/migrations/116_add_timestamp_to_api.php b/application/migrations/116_add_timestamp_to_api.php deleted file mode 100644 index c13a21066..000000000 --- a/application/migrations/116_add_timestamp_to_api.php +++ /dev/null @@ -1,21 +0,0 @@ -db->field_exists('last_used', 'api')) { - $this->dbforge->add_column('api', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('api', 'last_used'); - } -} diff --git a/application/migrations/117_add_contest_session_table.php b/application/migrations/117_add_contest_session_table.php deleted file mode 100644 index bdf4b3856..000000000 --- a/application/migrations/117_add_contest_session_table.php +++ /dev/null @@ -1,69 +0,0 @@ -db->table_exists('contest_session')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - 'contestid' => array( - 'type' => 'VARCHAR', - 'constraint' => 100, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'exchangetype' => array( - 'type' => 'VARCHAR', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'exchangesent' => array( - 'type' => 'VARCHAR', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'serialsent' => array( - 'type' => 'VARCHAR', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'copytodok' => array( - 'type' => 'bigint', - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'qso' => array( - 'type' => 'VARCHAR', - 'constraint' => 100, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - 'station_id' => array( - 'type' => 'bigint', - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - )); - - $this->dbforge->add_key('id', TRUE); - - $this->dbforge->create_table('contest_session'); - } - } - - public function down() - { - $this->dbforge->drop_table('contest_session'); - } -} \ No newline at end of file diff --git a/application/migrations/118_make_lotw_use_dxcc_id.php b/application/migrations/118_make_lotw_use_dxcc_id.php deleted file mode 100644 index 882f7e6ed..000000000 --- a/application/migrations/118_make_lotw_use_dxcc_id.php +++ /dev/null @@ -1,38 +0,0 @@ -db->field_exists('cert_dxcc_id', 'lotw_certs')) { - $this->dbforge->add_column('lotw_certs', $fields); - } - - if ($this->db->field_exists('cert_dxcc', 'lotw_certs')) { - $sql = 'UPDATE `lotw_certs` JOIN `dxcc_entities` ON `lotw_certs`.`cert_dxcc` = `dxcc_entities`.`name` SET `lotw_certs`.`cert_dxcc_id` = `dxcc_entities`.`adif`;'; - $this->db->query($sql); - $this->dbforge->drop_column('lotw_certs', 'cert_dxcc'); - } - } - - public function down() - { - $fields = array( - 'cert_dxcc VARCHAR(255) NOT NULL AFTER `callsign`', - ); - - if (!$this->db->field_exists('cert_dxcc', 'lotw_certs')) { - $this->dbforge->add_column('lotw_certs', $fields); - } - - $sql = 'UPDATE `lotw_certs` JOIN `dxcc_entities` ON `lotw_certs`.`cert_dxcc_id` = `dxcc_entities`.`adif` SET `lotw_certs`.`cert_dxcc` = `dxcc_entities`.`name`;'; - $this->db->query($sql); - - $this->dbforge->drop_column('lotw_certs', 'cert_dxcc_id'); - } -} diff --git a/application/migrations/119_remove_dxcc_name_from_station_profile.php b/application/migrations/119_remove_dxcc_name_from_station_profile.php deleted file mode 100644 index 0e556c866..000000000 --- a/application/migrations/119_remove_dxcc_name_from_station_profile.php +++ /dev/null @@ -1,26 +0,0 @@ -db->field_exists('station_country', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'station_country'); - } - } - - public function down() - { - $fields = array( - 'station_country VARCHAR(255) NULL DEFAULT NULL AFTER `station_dxcc`', - ); - - if (!$this->db->field_exists('station_country', 'station_profile')) { - $this->dbforge->add_column('station_profile', $fields); - } - - $sql = 'UPDATE `station_profile` JOIN `dxcc_entities` ON `station_profile`.`station_dxcc` = `dxcc_entities`.`adif` SET `station_profile`.`station_country` = `dxcc_entities`.`name`;'; - $this->db->query($sql); - } -} diff --git a/application/migrations/120_add_station_power.php b/application/migrations/120_add_station_power.php deleted file mode 100644 index b6777ff55..000000000 --- a/application/migrations/120_add_station_power.php +++ /dev/null @@ -1,24 +0,0 @@ -db->field_exists('station_power', 'station_profile')) { - $this->dbforge->add_column('station_profile', $fields); - } - } - - public function down() - { - - if ($this->db->field_exists('station_power', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'station_power'); - } - } -} diff --git a/application/migrations/121_add_user_pota_lookup.php b/application/migrations/121_add_user_pota_lookup.php deleted file mode 100644 index 5575da432..000000000 --- a/application/migrations/121_add_user_pota_lookup.php +++ /dev/null @@ -1,29 +0,0 @@ -db->field_exists('user_pota_lookup', 'users')) { - $fields = array( - 'user_pota_lookup integer DEFAULT 0 AFTER user_wwff_lookup', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('user_pota_lookup', 'users')) { - $this->dbforge->drop_column('users', 'user_pota_lookup'); - } - } -} diff --git a/application/migrations/122_reupload_tevel.php b/application/migrations/122_reupload_tevel.php deleted file mode 100644 index d5d67e56e..000000000 --- a/application/migrations/122_reupload_tevel.php +++ /dev/null @@ -1,17 +0,0 @@ -db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->like('COL_SAT_NAME', 'TEVEL', 'after'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/123_add_lotw_users.php b/application/migrations/123_add_lotw_users.php deleted file mode 100644 index 9afa6a391..000000000 --- a/application/migrations/123_add_lotw_users.php +++ /dev/null @@ -1,42 +0,0 @@ -db->table_exists('lotw_users')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - 'callsign' => array( - 'type' => 'VARCHAR', - 'constraint' => 32, - 'unsigned' => TRUE, - ), - 'lastupload' => array( - 'type' => 'datetime', - ) - )); - - $this->dbforge->add_key('id', TRUE); - - $this->dbforge->create_table('lotw_users'); - - $this->db->query("ALTER TABLE lotw_users ADD INDEX `callsign` (`callsign`)"); - } - - } - - public function down() - { - if ($this->db->table_exists('lotw_users')) { - $this->dbforge->drop_table('lotw_users'); - } - } -} diff --git a/application/migrations/124_create_label_types_table.php b/application/migrations/124_create_label_types_table.php deleted file mode 100644 index 5ce71d2db..000000000 --- a/application/migrations/124_create_label_types_table.php +++ /dev/null @@ -1,128 +0,0 @@ -db->table_exists('label_types')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 5, - 'unsigned' => TRUE, - 'auto_increment' => TRUE - ), - - 'user_id' => array( - 'type' => 'INT', - 'constraint' => 5, - ), - - 'label_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '250', - ), - - 'paper_type' => array( - 'type' => 'VARCHAR', - 'constraint' => '250', - ), - - 'metric' => array( - 'type' => 'VARCHAR', - 'constraint' => '10', - ), - - 'marginleft' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'margintop' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'nx' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'ny' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'spacex' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'spacey' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'width' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'height' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'font_size' => array( - 'type' => 'INT', - 'constraint' => '5', - 'null' => TRUE, - ), - - 'font' => array( - 'type' => 'VARCHAR', - 'constraint' => '250', - 'null' => TRUE, - ), - - 'qsos' => array( - 'type' => 'INT', - 'constraint' => '5', - 'null' => TRUE, - ), - - 'useforprint' => array( - 'type' => 'INT', - 'constraint' => '5', - 'null' => TRUE, - ), - - 'last_modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ), - )); - - $this->dbforge->add_key('id', TRUE); - $this->dbforge->add_key('user_id', TRUE); - - $this->dbforge->create_table('label_types'); - } - - } - - public function down(){ - if ($this->db->table_exists('label_types')) { - $this->dbforge->drop_table('label_types'); - } - } -} diff --git a/application/migrations/125_lotw_enddates.php b/application/migrations/125_lotw_enddates.php deleted file mode 100644 index e09e26d3b..000000000 --- a/application/migrations/125_lotw_enddates.php +++ /dev/null @@ -1,21 +0,0 @@ -db->table_exists('lotw_certs')) { - $sql = 'UPDATE lotw_certs SET qso_end_date = DATE_ADD(qso_end_date, INTERVAL 24*60*60 -1 SECOND) WHERE TIME(qso_end_date) = "00:00:00";'; - $this->db->query($sql); - } - } - - public function down() - { - if ($this->db->table_exists('lotw_certs')) { - $sql = 'UPDATE lotw_certs SET qso_end_date = DATE_SUB(qso_end_date, INTERVAL 24*60*60 -1 SECOND) WHERE TIME(qso_end_date) = "23:59:59";'; - $this->db->query($sql); - } - } -} diff --git a/application/migrations/126_mastodon_url.php b/application/migrations/126_mastodon_url.php deleted file mode 100644 index ec2a5992e..000000000 --- a/application/migrations/126_mastodon_url.php +++ /dev/null @@ -1,30 +0,0 @@ -db->field_exists('user_mastodon_url', 'users')) { - $fields = array( - 'user_mastodon_url varchar(32) default NULL', - ); - $this->dbforge->add_column('users', $fields, 'user_column5'); - } - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_mastodon_url'); - } -} - - - diff --git a/application/migrations/127_add_hrdlog_fields.php b/application/migrations/127_add_hrdlog_fields.php deleted file mode 100644 index 8d1cdf1cc..000000000 --- a/application/migrations/127_add_hrdlog_fields.php +++ /dev/null @@ -1,42 +0,0 @@ -db->field_exists('hrdlogrealtime', 'station_profile')) { - $fields = array( - 'hrdlogrealtime tinyint(1)' - ); - $this->dbforge->add_column('station_profile', $fields); - } - - if (!$this->db->field_exists('hrdlog_code', 'station_profile')) { - $fields = array( - 'hrdlog_code varchar(20) DEFAULT NULL', - ); - $this->dbforge->add_column('station_profile', $fields); - } - - if ( (!$this->db->field_exists('COL_HRDLOG_QSO_UPLOAD_DATE', $this->config->item('table_name'))) && - (!$this->db->field_exists('COL_HRDLOG_QSO_UPLOAD_STATUS', $this->config->item('table_name')))) { - $fields = array( - 'COL_HRDLOG_QSO_UPLOAD_DATE datetime default NULL', - 'COL_HRDLOG_QSO_UPLOAD_STATUS varchar(10) default NULL' - ); - $this->dbforge->add_column($this->config->item('table_name'), $fields); - } - } - - public function down() - { - if ($this->db->field_exists('hrdlogrealtime', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'hrdlogrealtime'); - } - if ($this->db->field_exists('hrdlog_code', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'hrdlog_code'); - } - } -} diff --git a/application/migrations/128_user_default_map_settings.php b/application/migrations/128_user_default_map_settings.php deleted file mode 100644 index 79bee0af6..000000000 --- a/application/migrations/128_user_default_map_settings.php +++ /dev/null @@ -1,43 +0,0 @@ -db->field_exists('user_gridmap_default_band', 'users')) { - $fields = array( - 'user_gridmap_default_band varchar(10) default NULL', - ); - $this->dbforge->add_column('users', $fields); - } - if (!$this->db->field_exists('user_gridmap_confirmation', 'users')) { - $fields = array( - 'user_gridmap_confirmation varchar(3) default NULL', - ); - $this->dbforge->add_column('users', $fields); - } - $data = array( - 'user_gridmap_default_band' => 'All', - 'user_gridmap_confirmation' => 'QL', - ); - $this->db->update('users', $data); - } - - public function down() - { - $this->dbforge->drop_column('users', 'user_gridmap_default_band'); - $this->dbforge->drop_column('users', 'user_gridmap_confirmation'); - } -} - - - diff --git a/application/migrations/129_add_public_search_option.php b/application/migrations/129_add_public_search_option.php deleted file mode 100644 index c98841fbd..000000000 --- a/application/migrations/129_add_public_search_option.php +++ /dev/null @@ -1,28 +0,0 @@ -db->field_exists('public_search', 'station_logbooks')) { - $fields = array( - 'public_search integer DEFAULT 0 AFTER public_slug', - ); - - $this->dbforge->add_column('station_logbooks', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('public_search', 'logbooks')) { - $this->dbforge->drop_column('logbooks', 'public_search'); - } - } -} diff --git a/application/migrations/130_add_version_to_config.php b/application/migrations/130_add_version_to_config.php deleted file mode 100644 index 2bce2913f..000000000 --- a/application/migrations/130_add_version_to_config.php +++ /dev/null @@ -1,24 +0,0 @@ - "version", 'option_value' => "2.4.5", 'autoload' => "yes"), - ); - - $this->db->insert_batch('options', $data); - } - - public function down() - { - // No option to down - } -} \ No newline at end of file diff --git a/application/migrations/131_reset_lotw_upload_for_ledsat.php b/application/migrations/131_reset_lotw_upload_for_ledsat.php deleted file mode 100644 index 0141e7794..000000000 --- a/application/migrations/131_reset_lotw_upload_for_ledsat.php +++ /dev/null @@ -1,17 +0,0 @@ -db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->where('COL_SAT_NAME', 'LEDSAT'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/132_create_cwmacros_table.php b/application/migrations/132_create_cwmacros_table.php deleted file mode 100644 index 42940d36a..000000000 --- a/application/migrations/132_create_cwmacros_table.php +++ /dev/null @@ -1,116 +0,0 @@ -db->table_exists('cwmacros')) { - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'unique' => TRUE - ), - - 'user_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'station_location_id' => array( - 'type' => 'BIGINT', - 'constraint' => 20, - 'unsigned' => TRUE, - 'auto_increment' => FALSE - ), - - 'function1_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function1_macro' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function2_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function2_macro' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function3_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function3_macro' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function4_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function4_macro' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function5_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'function5_macro' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE - ), - - 'modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ) - )); - - $this->dbforge->add_key('id', TRUE); - $this->dbforge->add_key('user_id', TRUE); - $this->dbforge->add_key('station_location_id', TRUE); - - $this->dbforge->create_table('cwmacros'); - } - } - - public function down() - { - $this->dbforge->drop_table('cwmacros'); - } -} \ No newline at end of file diff --git a/application/migrations/133_add_user_language.php b/application/migrations/133_add_user_language.php deleted file mode 100644 index b6222b7f8..000000000 --- a/application/migrations/133_add_user_language.php +++ /dev/null @@ -1,28 +0,0 @@ -db->field_exists('language', 'users')) { - $fields = array( - 'language varchar(32) default "english"', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('language', 'users')) { - $this->dbforge->drop_column('users', 'language'); - } - } -} diff --git a/application/migrations/134_create_label_paper_types_table.php b/application/migrations/134_create_label_paper_types_table.php deleted file mode 100644 index 660d1b739..000000000 --- a/application/migrations/134_create_label_paper_types_table.php +++ /dev/null @@ -1,91 +0,0 @@ -db->table_exists('paper_types')) { - $this->dbforge->add_field(array( - 'paper_id' => array( - 'type' => 'INT', - 'constraint' => 5, - 'unsigned' => TRUE, - 'auto_increment' => TRUE - ), - - 'user_id' => array( - 'type' => 'INT', - 'constraint' => 5, - ), - - 'paper_name' => array( - 'type' => 'VARCHAR', - 'constraint' => '191', - ), - - 'metric' => array( - 'type' => 'VARCHAR', - 'constraint' => '10', - ), - - 'width' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'orientation' => array( - 'type' => 'VARCHAR', - 'constraint' => '1', - 'null' => TRUE, - ), - - 'height' => array( - 'type' => 'DECIMAL', - 'constraint' => '6,3', - 'null' => TRUE, - ), - - 'last_modified' => array( - 'type' => 'timestamp', - 'null' => TRUE, - ), - )); - - $this->dbforge->add_key('paper_id', TRUE); - $this->dbforge->add_key('user_id', TRUE); - - $this->dbforge->create_table('paper_types'); - $this->db->query("ALTER TABLE label_types ADD COLUMN paper_type_id INT(5) NOT NULL;"); - $this->db->query("CREATE UNIQUE INDEX idx_paper_types_user_id_paper_name ON paper_types (user_id, paper_name) ALGORITHM DEFAULT LOCK DEFAULT;"); - $this->db->query("insert into paper_types (paper_id,user_id,paper_name,metric,width,orientation,height) values ('1','-1','A4','mm','210.000','P','297.000');"); - $this->db->query("insert into paper_types (paper_id,user_id,paper_name,metric,width,orientation,height) values ('2','-1','A5','mm','148.000','P','210.000');"); - $this->db->query("insert into paper_types (paper_id,user_id,paper_name,metric,width,orientation,height) values ('3','-1','letter','mm','215.900','P','279.400');"); - $this->db->query("insert ignore paper_types (user_id,paper_name,metric,width,orientation,height) SELECT u.user_id, pt.paper_name, pt.metric, pt.width, pt.orientation,pt.height FROM paper_types pt inner join users u where pt.user_id = -1;"); - $this->db->query("update label_types l set l.paper_type_id=(select p.paper_id from paper_types p where upper(p.paper_name)=upper(l.paper_type) and p.user_id=l.user_id limit 1) where l.paper_type_id=0;"); - $this->db->query("update label_types l set l.paper_type_id = (select p.paper_id from paper_types p where p.user_id = l.user_id limit 1) where l.paper_type_id = 0;"); - $this->db->query("alter table label_types drop column paper_type;"); - } - - } - - public function down(){ - if ($this->db->table_exists('paper_types')) { - $this->dbforge->drop_table('paper_types'); - } - - if ($this->db->field_exists('paper_type_id', 'label_types')) { - $this->dbforge->drop_column('label_types', 'paper_type_id'); - } - - if (!$this->db->field_exists('paper_type', 'label_types')) { - $fields = array( - 'paper_type varchar(250)', - ); - - $this->dbforge->add_column('label_types', $fields); - $this->db->query("update label_types set paper_type = 'a4';"); - } - } -} diff --git a/application/migrations/135_add_winkey.php b/application/migrations/135_add_winkey.php deleted file mode 100644 index 640a226b2..000000000 --- a/application/migrations/135_add_winkey.php +++ /dev/null @@ -1,29 +0,0 @@ -db->field_exists('winkey', 'users')) { - $fields = array( - 'winkey boolean default 0', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('winkey', 'users')) { - $this->dbforge->drop_column('users', 'winkey'); - } - } -} diff --git a/application/migrations/136_tag_2_4_6.php b/application/migrations/136_tag_2_4_6.php deleted file mode 100644 index 8d05eef7e..000000000 --- a/application/migrations/136_tag_2_4_6.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.6')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.5')); - } -} \ No newline at end of file diff --git a/application/migrations/137_tag_2_4_7.php b/application/migrations/137_tag_2_4_7.php deleted file mode 100644 index 5351229e5..000000000 --- a/application/migrations/137_tag_2_4_7.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.7')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.6')); - } -} \ No newline at end of file diff --git a/application/migrations/138_user_options_table.php b/application/migrations/138_user_options_table.php deleted file mode 100644 index 8961d37d2..000000000 --- a/application/migrations/138_user_options_table.php +++ /dev/null @@ -1,19 +0,0 @@ -db->table_exists('user_options')) { - $this->db->query("CREATE TABLE `user_options` ( `user_id` int(11) NOT NULL, `option_type` varchar(45) NOT NULL, `option_name` varchar(45) NOT NULL, `option_key` varchar(45) NOT NULL, `option_value` varchar(45) DEFAULT NULL, PRIMARY KEY (`user_id`,`option_type`,`option_key`,`option_name`))"); - } - - } - - public function down(){ - if ($this->db->table_exists('user_options')) { - $this->dbforge->drop_table('user_options'); - } - } -} diff --git a/application/migrations/139_modify_eqsl.php b/application/migrations/139_modify_eqsl.php deleted file mode 100644 index 8050bdb58..000000000 --- a/application/migrations/139_modify_eqsl.php +++ /dev/null @@ -1,17 +0,0 @@ -db->where('id', '1'); - $this->db->update('config', array('eqsl_download_url' => 'https://www.eqsl.cc/qslcard/DownloadInBox.cfm')); - } - - public function down() - { - // Will not go back to insecure connections - } -} diff --git a/application/migrations/140_tag_2_4_8.php b/application/migrations/140_tag_2_4_8.php deleted file mode 100644 index 5df370824..000000000 --- a/application/migrations/140_tag_2_4_8.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.8')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.7')); - } -} \ No newline at end of file diff --git a/application/migrations/141_alter_user_options_table.php b/application/migrations/141_alter_user_options_table.php deleted file mode 100644 index f62cbba65..000000000 --- a/application/migrations/141_alter_user_options_table.php +++ /dev/null @@ -1,13 +0,0 @@ -db->query("ALTER TABLE user_options CHANGE COLUMN option_value option_value text DEFAULT NULL;"); - } - - public function down(){ - } -} diff --git a/application/migrations/142_alter_lotw_user_table.php b/application/migrations/142_alter_lotw_user_table.php deleted file mode 100644 index 958982975..000000000 --- a/application/migrations/142_alter_lotw_user_table.php +++ /dev/null @@ -1,16 +0,0 @@ -db->query("ALTER TABLE lotw_users ADD UNIQUE INDEX callsign_UNIQUE (callsign ASC)"); - $this->db->query("ALTER TABLE lotw_users DROP INDEX callsign"); - } - - public function down(){ - $this->db->query("ALTER TABLE lotw_users DROP INDEX callsign_UNIQUE"); - $this->db->query("ALTER TABLE lotw_users ADD INDEX callsign (callsign)"); - } -} diff --git a/application/migrations/143_tag_2_4_9.php b/application/migrations/143_tag_2_4_9.php deleted file mode 100644 index 756893850..000000000 --- a/application/migrations/143_tag_2_4_9.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.9')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.8')); - } -} \ No newline at end of file diff --git a/application/migrations/144_tag_2_4_10.php b/application/migrations/144_tag_2_4_10.php deleted file mode 100644 index bf85d9436..000000000 --- a/application/migrations/144_tag_2_4_10.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.10')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.9')); - } -} \ No newline at end of file diff --git a/application/migrations/145_rename_gridmap_variables.php b/application/migrations/145_rename_gridmap_variables.php deleted file mode 100644 index cba66f0c6..000000000 --- a/application/migrations/145_rename_gridmap_variables.php +++ /dev/null @@ -1,34 +0,0 @@ -db->field_exists('user_gridmap_default_band', 'users')) { - $this->db->query("ALTER TABLE `users` CHANGE `user_gridmap_default_band` `user_default_band` VARCHAR(10) DEFAULT NULL;"); - } - if ($this->db->field_exists('user_gridmap_confirmation', 'users')) { - $this->db->query("ALTER TABLE `users` CHANGE `user_gridmap_confirmation` `user_default_confirmation` VARCHAR(3) DEFAULT NULL;"); - } - } - - public function down() - { - if ($this->db->field_exists('user_default_band', 'users')) { - $this->db->query("ALTER TABLE `users` CHANGE `user_default_band` `user_gridmap_default_band` VARCHAR(10) DEFAULT NULL;"); - } - if ($this->db->field_exists('user_default_confirmation', 'users')) { - $this->db->query("ALTER TABLE `users` CHANGE `user_default_confirmation` `user_gridmap_confirmation` VARCHAR(3) DEFAULT NULL;"); - } - } -} diff --git a/application/migrations/146_correct_default_bandgroup.php b/application/migrations/146_correct_default_bandgroup.php deleted file mode 100644 index ba4f74453..000000000 --- a/application/migrations/146_correct_default_bandgroup.php +++ /dev/null @@ -1,26 +0,0 @@ -db->query("UPDATE bands SET bandgroup = 'mf' WHERE band = '160m' AND bandgroup = 'hf';"); - $this->db->query("UPDATE bands SET bandgroup = 'uhf' WHERE band = '23cm' AND bandgroup = 'shf';"); - $this->db->query("UPDATE bands SET bandgroup = 'uhf' WHERE band = '13cm' AND bandgroup = 'shf';"); - } - - public function down() - { - $this->db->query("UPDATE bands SET bandgroup = 'hf' WHERE band = '160m' AND bandgroup = 'mf';"); - $this->db->query("UPDATE bands SET bandgroup = 'shf' WHERE band = '23cm' AND bandgroup = 'uhf';"); - $this->db->query("UPDATE bands SET bandgroup = 'shf' WHERE band = '13cm' AND bandgroup = 'uhf';"); - } -} \ No newline at end of file diff --git a/application/migrations/147_tag_2_4_11.php b/application/migrations/147_tag_2_4_11.php deleted file mode 100644 index 10d53ade8..000000000 --- a/application/migrations/147_tag_2_4_11.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.11')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.10')); - } -} \ No newline at end of file diff --git a/application/migrations/148_qso_end_times.php b/application/migrations/148_qso_end_times.php deleted file mode 100644 index 11c71fd5c..000000000 --- a/application/migrations/148_qso_end_times.php +++ /dev/null @@ -1,29 +0,0 @@ -db->field_exists('user_qso_end_times', 'users')) { - $fields = array( - 'user_qso_end_times integer DEFAULT 0 AFTER user_default_confirmation', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('user_qso_end_times', 'users')) { - $this->dbforge->drop_column('users', 'user_qso_end_times'); - } - } -} diff --git a/application/migrations/149_reupload_inspiresat7_qsos.php b/application/migrations/149_reupload_inspiresat7_qsos.php deleted file mode 100644 index 629d6abfa..000000000 --- a/application/migrations/149_reupload_inspiresat7_qsos.php +++ /dev/null @@ -1,17 +0,0 @@ -db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->where('COL_SAT_NAME', 'INSPIRE-SAT 7'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/150_tag_2_5_0.php b/application/migrations/150_tag_2_5_0.php deleted file mode 100644 index 4d3e33348..000000000 --- a/application/migrations/150_tag_2_5_0.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.5.0')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.4.11')); - } -} \ No newline at end of file diff --git a/application/migrations/151_user_quicklog.php b/application/migrations/151_user_quicklog.php deleted file mode 100644 index acde25e99..000000000 --- a/application/migrations/151_user_quicklog.php +++ /dev/null @@ -1,39 +0,0 @@ -db->field_exists('user_quicklog', 'users')) { - $fields = array( - 'user_quicklog integer DEFAULT 0 AFTER user_default_confirmation', - ); - - $this->dbforge->add_column('users', $fields); - } - if (!$this->db->field_exists('user_quicklog_enter', 'users')) { - $fields = array( - 'user_quicklog_enter integer DEFAULT 0 AFTER user_default_confirmation', - ); - - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('user_quicklog', 'users')) { - $this->dbforge->drop_column('users', 'user_quicklog'); - } - if ($this->db->field_exists('user_quicklog_enter', 'users')) { - $this->dbforge->drop_column('users', 'user_quicklog_enter'); - } - } -} \ No newline at end of file diff --git a/application/migrations/152_tag_2_5_1.php b/application/migrations/152_tag_2_5_1.php deleted file mode 100644 index 0d95b6549..000000000 --- a/application/migrations/152_tag_2_5_1.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.5.1')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.5.0')); - } -} \ No newline at end of file diff --git a/application/migrations/153_tag_2_5_2.php b/application/migrations/153_tag_2_5_2.php deleted file mode 100644 index 1c3794983..000000000 --- a/application/migrations/153_tag_2_5_2.php +++ /dev/null @@ -1,24 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.5.2')); - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.5.1')); - } -} \ No newline at end of file diff --git a/application/migrations/154_create_dxpedition_table.php b/application/migrations/154_create_dxpedition_table.php deleted file mode 100644 index b6578c5ab..000000000 --- a/application/migrations/154_create_dxpedition_table.php +++ /dev/null @@ -1,60 +0,0 @@ -db->table_exists('dxpedition')) { - - $this->dbforge->add_field(array( - 'id' => array( - 'type' => 'INT', - 'constraint' => 6, - 'unsigned' => TRUE, - 'auto_increment' => TRUE, - 'null' => FALSE - ), - 'start_date' => array( - 'type' => 'DATE', - 'null' => TRUE, - ), - 'end_date' => array( - 'type' => 'DATE', - 'null' => TRUE, - ), - 'callsign' => array( - 'type' => 'VARCHAR', - 'constraint' => '50', - 'null' => FALSE, - ), - 'country' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE, - ), - 'notes' => array( - 'type' => 'VARCHAR', - 'constraint' => '255', - 'null' => TRUE, - ), - )); - $this->dbforge->add_key('id', TRUE); - $this->dbforge->add_key('callsign', TRUE); - - $this->dbforge->create_table('dxpedition'); - } - } - - public function down() - { - $this->dbforge->drop_table('dxpedition'); - } -} diff --git a/application/migrations/155_add_clublog_realtime.php b/application/migrations/155_add_clublog_realtime.php deleted file mode 100644 index cdd8ef647..000000000 --- a/application/migrations/155_add_clublog_realtime.php +++ /dev/null @@ -1,24 +0,0 @@ -db->field_exists('clublogrealtime', 'station_profile')) { - $this->dbforge->add_column('station_profile', $fields); - } - } - - public function down() - { - - if ($this->db->field_exists('clublogrealtime', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'clublogrealtime'); - } - } -} diff --git a/application/migrations/156_add_waja_bandxuser.php b/application/migrations/156_add_waja_bandxuser.php deleted file mode 100644 index 9d4482806..000000000 --- a/application/migrations/156_add_waja_bandxuser.php +++ /dev/null @@ -1,23 +0,0 @@ -db->field_exists('waja', 'bandxuser')) { - $this->dbforge->add_column('bandxuser', $fields); - } - } - - public function down() - { - if ($this->db->field_exists('waja', 'bandxuser')) { - $this->dbforge->drop_column('bandxuser', 'waja'); - } - } -} diff --git a/application/migrations/157_wide_themes.php b/application/migrations/157_wide_themes.php deleted file mode 100644 index de434d2ba..000000000 --- a/application/migrations/157_wide_themes.php +++ /dev/null @@ -1,36 +0,0 @@ -db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Blue wide','blue_wide' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'blue_wide');"); - $this->db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Cosmo wide','cosmo_wide' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'cosmo_wide');"); - $this->db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Cyborg wide (Dark)','cyborg_wide' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'cyborg_wide');"); - $this->db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Darkly wide (Dark)','darkly_wide' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'darkly_wide');"); - $this->db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Default wide','default_wide' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'default_wide');"); - $this->db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Superhero wide (Dark)','superhero_wide' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'superhero_wide');"); - } - - public function down() - { - $this->db->query("DELETE FROM themes WHERE foldername = 'blue_wide';"); - $this->db->query("UPDATE users SET user_stylesheet = 'blue' WHERE user_stylesheet = 'blue_wide'"); - $this->db->query("DELETE FROM themes WHERE foldername = 'cosmo_wide';"); - $this->db->query("UPDATE users SET user_stylesheet = 'cosmo' WHERE user_stylesheet = 'cosmo_wide'"); - $this->db->query("DELETE FROM themes WHERE foldername = 'cyborg_wide';"); - $this->db->query("UPDATE users SET user_stylesheet = 'cyborg' WHERE user_stylesheet = 'cyborg_wide'"); - $this->db->query("DELETE FROM themes WHERE foldername = 'darkly_wide';"); - $this->db->query("UPDATE users SET user_stylesheet = 'darkly' WHERE user_stylesheet = 'darkly_wide'"); - $this->db->query("DELETE FROM themes WHERE foldername = 'default_wide';"); - $this->db->query("UPDATE users SET user_stylesheet = 'default' WHERE user_stylesheet = 'default_wide'"); - $this->db->query("DELETE FROM themes WHERE foldername = 'superhero_wide';"); - $this->db->query("UPDATE users SET user_stylesheet = 'superhero' WHERE user_stylesheet = 'default_wide'"); - } -} diff --git a/application/migrations/158_add_qrz_down.php b/application/migrations/158_add_qrz_down.php deleted file mode 100644 index d83fee26e..000000000 --- a/application/migrations/158_add_qrz_down.php +++ /dev/null @@ -1,24 +0,0 @@ -db->field_exists('COL_QRZCOM_QSO_DOWNLOAD_STATUS', $this->config->item('table_name'))) { - $fields = array( - 'COLUMN COL_QRZCOM_QSO_DOWNLOAD_DATE DATETIME NULL DEFAULT NULL', - 'COLUMN COL_QRZCOM_QSO_DOWNLOAD_STATUS VARCHAR(10) DEFAULT NULL', - ); - $this->dbforge->add_column($this->config->item('table_name'), $fields); - } - } - - public function down() { - if ($this->db->field_exists('COL_QRZCOM_QSO_DOWNLOAD_STATUS', $this->config->item('table_name'))) { - $this->dbforge->drop_column($this->config->item('table_name'), 'COL_QRZCOM_QSO_DOWNLOAD_STATUS'); - } - if ($this->db->field_exists('COL_QRZCOM_QSO_DOWNLOAD_DATE', $this->config->item('table_name'))) { - $this->dbforge->drop_column($this->config->item('table_name'), 'COL_QRZCOM_QSO_DOWNLOAD_DATE'); - } - } -} diff --git a/application/migrations/159_extend_default_qsl.php b/application/migrations/159_extend_default_qsl.php deleted file mode 100644 index 03e93f983..000000000 --- a/application/migrations/159_extend_default_qsl.php +++ /dev/null @@ -1,16 +0,0 @@ -db->query("ALTER TABLE `users` CHANGE COLUMN `user_default_confirmation` `user_default_confirmation` VARCHAR(4) NULL DEFAULT NULL"); - } - - public function down() - { - //the down function can be empty here, but we need one. - } -} diff --git a/application/migrations/160_tag_2_6_0.php b/application/migrations/160_tag_2_6_0.php deleted file mode 100644 index fff580e48..000000000 --- a/application/migrations/160_tag_2_6_0.php +++ /dev/null @@ -1,30 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.6.0')); - - // 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')); - - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.5.2')); - } -} \ No newline at end of file diff --git a/application/migrations/161_award_submitted_typo.php b/application/migrations/161_award_submitted_typo.php deleted file mode 100644 index 315562a85..000000000 --- a/application/migrations/161_award_submitted_typo.php +++ /dev/null @@ -1,39 +0,0 @@ -db->field_data($this->config->item('table_name')); - foreach ($fields as $field) - { - if ($field->name == 'COL_AWARD_SUMMITED') - { - $this->db->query( - 'ALTER TABLE ' . - $this->db->escape_identifiers($this->config->item('table_name')) . - ' CHANGE COL_AWARD_SUMMITED COL_AWARD_SUBMITTED VARCHAR(255)' - ); - return; - } - } - } - - public function down() - { - $this->db->query( - 'ALTER TABLE ' . - $this->db->escape_identifiers($this->config->item('table_name')) . - ' CHANGE COL_AWARD_SUBMITTED COL_AWARD_SUMMITED VARCHAR(255)' - ); - } -} diff --git a/application/migrations/162_hrdlog_username.php b/application/migrations/162_hrdlog_username.php deleted file mode 100644 index 51b71d13b..000000000 --- a/application/migrations/162_hrdlog_username.php +++ /dev/null @@ -1,45 +0,0 @@ -db->field_exists('hrdlog_username', 'station_profile')) { - $fields = array( - 'hrdlog_username VARCHAR(20) DEFAULT NULL AFTER hrdlog_code', - ); - $this->dbforge->add_column('station_profile', $fields); - } - - // SELECT all rows where hrdlog_code is not empty - $this->db->where("(hrdlog_code IS NOT NULL AND hrdlog_code != '')"); - $query = $this->db->get('station_profile'); - $rows = $query->result(); - - // Iterate through all selected rows - foreach ($rows as $row) { - // Extract the username using the regex pattern - $regex = '/^((\d|[A-Z])+\/)?((\d|[A-Z]){3,})(\/(\d|[A-Z])+)?(\/(\d|[A-Z])+)?$/'; - preg_match($regex, $row->station_callsign, $matches); - $username = $matches[3]; - - // Update the row with the extracted username - $this->db->where('station_id', $row->station_id); - $this->db->update('station_profile', array('hrdlog_username' => $username)); - } - } - - public function down() - { - if ($this->db->field_exists('hrdlog_username', 'station_profile')) { - $this->dbforge->drop_column('station_profile', 'hrdlog_username'); - } - } -} diff --git a/application/migrations/163_dxcc_index.php b/application/migrations/163_dxcc_index.php deleted file mode 100644 index 29f57b5a4..000000000 --- a/application/migrations/163_dxcc_index.php +++ /dev/null @@ -1,41 +0,0 @@ -db->query("SHOW INDEX FROM dxcc_prefixes WHERE Key_name = 'idx_dxcc_prefixes_logic'")->num_rows(); - if ($prefixes_index == 0) { - $this->db->query("ALTER TABLE `dxcc_prefixes` ADD INDEX `idx_dxcc_prefixes_logic` (`call`, `start`, `end`)"); - } - - - // check if index dxcc_exceptions exists - // if not, add it - $exceptions_index = $this->db->query("SHOW INDEX FROM dxcc_exceptions WHERE Key_name = 'idx_dxcc_exceptions_logic'")->num_rows(); - if ($exceptions_index == 0) { - $this->db->query("ALTER TABLE `dxcc_exceptions` ADD INDEX `idx_dxcc_exceptions_logic` (`call`, `start`, `end`)"); - } - } - - public function down(){ - - // check if index idx_dxcc_prefixes_logic exists - // if so, drop it - $prefixes_index = $this->db->query("SHOW INDEX FROM dxcc_prefixes WHERE Key_name = 'idx_dxcc_prefixes_logic'")->num_rows(); - if ($prefixes_index == 1) { - $this->db->query("ALTER TABLE dxcc_prefixes DROP INDEX idx_dxcc_prefixes_logic"); - } - - // check if index dxcc_exceptions exists - // if so, drop it - $exceptions_index = $this->db->query("SHOW INDEX FROM dxcc_exceptions WHERE Key_name = 'idx_dxcc_exceptions_logic'")->num_rows(); - if ($exceptions_index == 1) { - $this->db->query("ALTER TABLE dxcc_exceptions DROP INDEX idx_dxcc_exceptions_logic"); - } - } -} diff --git a/application/migrations/164_removing_blue_theme.php b/application/migrations/164_removing_blue_theme.php deleted file mode 100644 index d099466dc..000000000 --- a/application/migrations/164_removing_blue_theme.php +++ /dev/null @@ -1,26 +0,0 @@ -db->query("DELETE FROM themes WHERE foldername = 'blue';"); - $this->db->query("DELETE FROM themes WHERE foldername = 'blue_wide';"); - $this->db->query("UPDATE users SET user_stylesheet = 'superhero' WHERE user_stylesheet = 'blue'"); - $this->db->query("UPDATE users SET user_stylesheet = 'superhero_wide' WHERE user_stylesheet = 'blue_wide'"); - $this->db->query("UPDATE options SET option_value = 'superhero' WHERE option_value = 'blue'"); - $this->db->query("UPDATE options SET option_value = 'superhero_wide' WHERE option_value = 'blue_wide'"); - } - - public function down() - { - $this->db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Blue','blue' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'blue');"); - $this->db->query("INSERT INTO themes (name, foldername) SELECT DISTINCT 'Blue wide','blue_wide' FROM themes WHERE NOT EXISTS (SELECT 1 FROM themes WHERE foldername = 'blue_wide');"); - } -} diff --git a/application/migrations/165_tag_2_6_1.php b/application/migrations/165_tag_2_6_1.php deleted file mode 100644 index 2267560fd..000000000 --- a/application/migrations/165_tag_2_6_1.php +++ /dev/null @@ -1,30 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.6.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')); - - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.6.0')); - } -} \ No newline at end of file diff --git a/application/migrations/166_set_oqrs_stationname_option.php b/application/migrations/166_set_oqrs_stationname_option.php deleted file mode 100644 index 0a798fe76..000000000 --- a/application/migrations/166_set_oqrs_stationname_option.php +++ /dev/null @@ -1,20 +0,0 @@ -db->query("INSERT INTO options (option_name, option_value, autoload) SELECT DISTINCT 'groupedSearchShowStationName', 'on', NULL FROM options WHERE NOT EXISTS (SELECT 1 FROM options WHERE option_name = 'groupedSearchShowStationName');"); - } - - public function down() - { - $this->db->query("DELETE FROM options WHERE option_name = 'groupedSearchShowStationName';"); - } -} diff --git a/application/migrations/167_add_last_login.php b/application/migrations/167_add_last_login.php deleted file mode 100644 index 802b63315..000000000 --- a/application/migrations/167_add_last_login.php +++ /dev/null @@ -1,24 +0,0 @@ -db->field_exists('last_login_date', 'users')) { - $fields = array( - 'last_login_date TIMESTAMP NULL DEFAULT NULL AFTER `reset_password_date`', - ); - $this->dbforge->add_column('users', $fields); - } - } - - public function down() - { - $this->dbforge->drop_column('users', 'last_login_date'); - } -} diff --git a/application/migrations/168_rename_reupload_so121.php b/application/migrations/168_rename_reupload_so121.php deleted file mode 100644 index bf1b0de95..000000000 --- a/application/migrations/168_rename_reupload_so121.php +++ /dev/null @@ -1,18 +0,0 @@ -db->set('COL_SAT_NAME', 'SO-121'); - $this->db->set('COL_LOTW_QSL_SENT', 'N'); - $this->db->where('COL_SAT_NAME', 'HADES-D'); - $this->db->update($this->config->item('table_name')); - } - - public function down() - { - // Not Possible - } -} diff --git a/application/migrations/169_tag_2_6_2.php b/application/migrations/169_tag_2_6_2.php deleted file mode 100644 index e999486e6..000000000 --- a/application/migrations/169_tag_2_6_2.php +++ /dev/null @@ -1,30 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.6.2')); - - // 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')); - - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.6.1')); - } -} \ No newline at end of file diff --git a/application/migrations/170_tag_2_6_3.php b/application/migrations/170_tag_2_6_3.php deleted file mode 100644 index af1de1134..000000000 --- a/application/migrations/170_tag_2_6_3.php +++ /dev/null @@ -1,30 +0,0 @@ -db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.6.3')); - - // 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')); - - } - - public function down() - { - $this->db->where('option_name', 'version'); - $this->db->update('options', array('option_value' => '2.6.2')); - } -} \ No newline at end of file diff --git a/application/migrations/170_welcome_to_wavelog.php b/application/migrations/170_welcome_to_wavelog.php new file mode 100644 index 000000000..3b6bf004a --- /dev/null +++ b/application/migrations/170_welcome_to_wavelog.php @@ -0,0 +1,25 @@ +db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '2.3.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')); + + $this->dbtry("update dxcc_temp set ituz = 12 where adif = 37;"); // TI9 + $this->dbtry("update iota set dxccid = 202 where tag = 'NA-249';"); // Fix so that NA-249 is associated with Puerto Rico DXCC + $this->dbtry("update iota set dxccid = 225 where tag = 'EU-041';"); // Fix so that EU-041 is associated with Sardinia DXCC + + // Taking care of ITU Zones for deleted DXCCs in dxcc_entities + $this->dbtry("UPDATE dxcc_entities join dxcc_temp on dxcc_entities.adif = dxcc_temp.adif set dxcc_entities.ituz = dxcc_temp.ituz;"); + } + + public function down() + { + $this->db->where('option_name', 'version'); + $this->db->update('options', array('option_value' => '2.3')); + } + + function dbtry($what) { + try { + $this->db->query($what); + } catch (Exception $e) { + log_message("error", "Error setting character set/collation: ".$e." // Executing: ".$this->db->last_query()); + } + } +} diff --git a/application/models/Api_model.php b/application/models/Api_model.php index b97d4753c..eda1493dc 100644 --- a/application/models/Api_model.php +++ b/application/models/Api_model.php @@ -178,5 +178,68 @@ class API_Model extends CI_Model { "; return $this->db->query($sql, $binding); + + } + + function get_grids_worked_in_logbook($StationLocationsArray = null, $band = null, $cnfm = null) { + $grid_array = []; + if ($StationLocationsArray == null) { + $this->load->model('logbooks_model'); + $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); + } else { + $logbooks_locations_array = $StationLocationsArray; + } + + $bindings = []; + $subsql = ''; + $band = ($band == 'All') ? null : $band; + if ($band != null && $band != 'SAT') { + $subsql .= ' AND COL_BAND = ? AND COL_PROP_MODE != "SAT"'; + $bindings[] = $band; + } else if ($band == 'SAT') { + $subsql .= ' AND COL_SAT_NAME != ""'; + } + switch ($cnfm) { + case 'qsl': + $subsql .= ' AND COL_QSL_RCVD = "Y"'; + break; + case 'lotw': + $subsql .= ' AND COL_LOTW_QSL_RCVD = "Y"'; + break; + case 'eqsl': + $subsql .= ' AND COL_EQSL_QSL_RCVD = "Y"'; + break; + } + + $ids = array_map('intval', $logbooks_locations_array); + $sql = 'SELECT DISTINCT UPPER(SUBSTR(COL_GRIDSQUARE, 1, 4)) AS gridsquare FROM ' . $this->config->item('table_name') . ' thcv '; + $sql .= ' WHERE COL_GRIDSQUARE <> "" AND CHAR_LENGTH(COL_GRIDSQUARE) >= 4'; + $sql .= ' AND station_id IN (' . implode(',', $ids) . ')'; + $sql .= $subsql; + $sql .= ' ORDER BY gridsquare ASC;'; + $query = $this->db->query($sql,$bindings); + foreach($query->result() as $line) { + $grid_array[] = $line->gridsquare; + } + // Get and add VUCC grids + $sql = 'SELECT DISTINCT UPPER(COL_VUCC_GRIDS) AS vuccgrids FROM ' . $this->config->item('table_name') . ' thcv '; + $sql .= ' WHERE COL_VUCC_GRIDS <> ""'; + $sql .= ' AND station_id IN (' . implode(',', $ids) . ')'; + $sql .= $subsql; + $sql .= ' ORDER BY vuccgrids ASC;'; + $query = $this->db->query($sql,$bindings); + foreach($query->result() as $line) { + $vucc_grids = explode(',', $line->vuccgrids); + foreach ($vucc_grids as $vucc_grid) { + if (strlen($vucc_grid) >= 4) { + $grid = substr($vucc_grid, 0, 4); + if (! in_array($grid, $grid_array)) { + $grid_array[] = $grid; + } + } + } + } + sort ($grid_array); + return $grid_array; } } diff --git a/application/models/Cq.php b/application/models/Cq.php index 2c2240604..51ac55b15 100644 --- a/application/models/Cq.php +++ b/application/models/Cq.php @@ -6,7 +6,7 @@ class CQ extends CI_Model{ $this->load->library('Genfunctions'); } - function get_cq_array($bands, $postdata, $location_list) { + function get_cq_array($bands, $postdata, $location_list, $map = false) { $cqZ = array(); // Used for keeping track of which states that are not worked for ($i = 1; $i <= 40; $i++) { @@ -15,123 +15,250 @@ class CQ extends CI_Model{ $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + // Initialize all bands to dash foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } for ($i = 1; $i <= 40; $i++) { $bandCq[$i][$band] = '-'; // Sets all to dash to indicate no result } + } - if ($postdata['worked'] != NULL) { - $cqBand = $this->getCQWorked($location_list, $band, $postdata); - foreach ($cqBand as $line) { - $bandCq[$line->col_cqz][$band] = ''; - $cqZ[$line->col_cqz]['count']++; + // Initialize summary counters only for the bands passed in + foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + $summary['worked'][$band] = 0; + $summary['confirmed'][$band] = 0; + } + $summary['worked']['Total'] = 0; + $summary['confirmed']['Total'] = 0; + + // Track unique zone/band combinations for totals + $workedZones = []; // [band][zone] = true + $confirmedZones = []; // [band][zone] = true + + // Create a lookup array for valid bands + $validBands = array_flip($bands); // ['160m' => true, '80m' => true, etc] + + $cqdata = $this->getCqZoneData($location_list, $postdata); + $cqdata_sat = $this->getCqZoneDataSat($location_list, $postdata); + + foreach ($cqdata as $cq) { + // Skip if this band is not in our requested bands list + if (!isset($validBands[$cq->col_band])) { + continue; + } + + $cqZ[$cq->col_cqz]['count']++; // Count each cq zone + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $cq->qsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $cq->lotw == 1) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $cq->eqsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $cq->qrz == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $cq->clublog == 1) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $bandCq[$cq->col_cqz][$cq->col_band] = ''; + // Track confirmed zones for summary + if (!isset($confirmedZones[$cq->col_band][$cq->col_cqz])) { + $confirmedZones[$cq->col_band][$cq->col_cqz] = true; + $summary['confirmed'][$cq->col_band]++; + } + } else { + if ($postdata['worked'] != NULL) { + $bandCq[$cq->col_cqz][$cq->col_band] = ''; } } - if ($postdata['confirmed'] != NULL) { - $cqBand = $this->getCQConfirmed($location_list, $band, $postdata); - foreach ($cqBand as $line) { - $bandCq[$line->col_cqz][$band] = ''; - $cqZ[$line->col_cqz]['count']++; + + // Track worked zones for summary + if (!isset($workedZones[$cq->col_band][$cq->col_cqz])) { + $workedZones[$cq->col_band][$cq->col_cqz] = true; + $summary['worked'][$cq->col_band]++; + } + } + + if ($postdata['band'] == 'SAT') { + foreach ($cqdata_sat as $cq) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + // Skip if this band is not in our requested bands list + if (!isset($validBands[$cq->col_band])) { + continue; + } + + $cqZ[$cq->col_cqz]['count']++; // Count each cq zone + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $cq->qsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $cq->lotw == 1) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $cq->eqsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $cq->qrz == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $cq->clublog == 1) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $bandCq[$cq->col_cqz][$cq->col_band] = ''; + // Track confirmed zones for summary + if (!isset($confirmedZones[$cq->col_band][$cq->col_cqz])) { + $confirmedZones[$cq->col_band][$cq->col_cqz] = true; + $summary['confirmed'][$cq->col_band]++; + } + } else { + if ($postdata['worked'] != NULL) { + $bandCq[$cq->col_cqz][$cq->col_band] = ''; + } + } + + // Track worked zones for summary + if (!isset($workedZones[$cq->col_band][$cq->col_cqz])) { + $workedZones[$cq->col_band][$cq->col_cqz] = true; + $summary['worked'][$cq->col_band]++; } } } - // We want to remove the worked zones in the list, since we do not want to display them - if ($postdata['worked'] == NULL) { - $cqBand = $this->getCQWorked($location_list, $postdata['band'], $postdata); - foreach ($cqBand as $line) { - unset($bandCq[$line->col_cqz]); + // Calculate totals across all bands (excluding SAT) + $totalWorkedZones = []; + $totalConfirmedZones = []; + foreach ($workedZones as $band => $zones) { + foreach ($zones as $zone => $true) { + if (!isset($totalWorkedZones[$zone])) { + $totalWorkedZones[$zone] = true; + if ($band === 'SAT') { + continue; + } + $totalWorkedZonesExSat[$zone] = true; // For calculating total worked excluding SAT + $summary['worked']['Total']++; + } + } + } + foreach ($confirmedZones as $band => $zones) { + foreach ($zones as $zone => $true) { + if (!isset($totalConfirmedZones[$zone])) { + $totalConfirmedZones[$zone] = true; + if ($band === 'SAT') { + continue; + } + $totalConfirmedZonesExSat[$zone] = true; // For calculating total worked excluding SAT + $summary['confirmed']['Total']++; + } } } - // We want to remove the confirmed zones in the list, since we do not want to display them - if ($postdata['confirmed'] == NULL) { - $cqBand = $this->getCQConfirmed($location_list, $postdata['band'], $postdata); - foreach ($cqBand as $line) { - unset($bandCq[$line->col_cqz]); + // Remove zones based on postdata filters + // Determine which band's zones to use for filtering + $filterBand = (count($bands) == 1) ? $bands[0] : null; + + for ($i = 1; $i <= 40; $i++) { + // For single band view, check band-specific status; for all bands, check totals + $isWorked = $filterBand + ? isset($workedZones[$filterBand][$i]) + : isset($totalWorkedZones[$i]); + $isConfirmed = $filterBand + ? isset($confirmedZones[$filterBand][$i]) + : isset($totalConfirmedZones[$i]); + + // Remove not-worked zones if filter is disabled + if ($postdata['notworked'] == NULL && !$isWorked) { + unset($bandCq[$i]); + continue; + } + + // Remove worked-only zones if filter is disabled + if ($postdata['worked'] == NULL && $isWorked && !$isConfirmed) { + unset($bandCq[$i]); + continue; + } + + // Remove confirmed zones if filter is disabled + if ($postdata['confirmed'] == NULL && $isConfirmed) { + unset($bandCq[$i]); + continue; } } - if ($postdata['notworked'] == NULL) { - for ($i = 1; $i <= 40; $i++) { - if ($cqZ[$i]['count'] == 0) { - unset($bandCq[$i]); - }; + // If this is for the map, return simplified format + if ($map) { + $mapZones = []; + if ($bands[0] == 'SAT') { + for ($i = 1; $i <= 40; $i++) { + if ($cqZ[$i]['count'] == 0) { + $mapZones[$i-1] = '-'; // Not worked + } elseif (isset($confirmedZones['SAT'][$i])) { + $mapZones[$i-1] = 'C'; // Confirmed + } else { + $mapZones[$i-1] = 'W'; // Worked but not confirmed + } + } + } else { + for ($i = 1; $i <= 40; $i++) { + if (isset($totalConfirmedZonesExSat[$i])) { + $mapZones[$i-1] = 'C'; // Confirmed + } else if (isset($totalWorkedZonesExSat[$i])) { + $mapZones[$i-1] = 'W'; // Worked but not confirmed + } else { + $mapZones[$i-1] = '-'; // Not worked + } + } } + return $mapZones; } if (isset($bandCq)) { - return $bandCq; + // Return both the band data and summary + return ['bands' => $bandCq, 'summary' => $summary]; } else { return 0; } } - /* - * Function returns all worked, but not confirmed states - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getCQWorked($location_list, $band, $postdata) { + function getCqZoneData($location_list, $postdata) { $bindings=[]; - $sql = "SELECT distinct col_cqz FROM " . $this->config->item('table_name') . " thcv - where station_id in (" . $location_list . ") and col_cqz <= 40 and col_cqz <> ''"; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - if ($postdata['datefrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['datefrom'] . ' 00:00:00'; - } - - if ($postdata['dateto'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateto'] . ' 23:59:59'; - } - - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - - $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . - ") and col_cqz = thcv.col_cqz and col_cqz <> '' "; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - if ($postdata['datefrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['datefrom'] . ' 00:00:00'; - } - - if ($postdata['dateto'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateto'] . ' 23:59:59'; - } - - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= ")"; - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - /* - * Function returns all confirmed states on given band and on LoTW or QSL - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getCQConfirmed($location_list, $band, $postdata) { - $bindings=[]; - $sql = "SELECT distinct col_cqz FROM " . $this->config->item('table_name') . " thcv + $sql = "SELECT thcv.col_cqz, thcv.col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ") and col_cqz <= 40 and col_cqz <> ''"; if ($postdata['mode'] != 'All') { @@ -150,59 +277,25 @@ class CQ extends CI_Model{ $bindings[]=$postdata['dateto'] . ' 23:59:59'; } - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + $sql .= " and col_prop_mode != 'SAT'"; - $sql .= $this->genfunctions->addQslToQuery($postdata); + $sql .= " GROUP BY thcv.col_cqz, thcv.col_band"; $query = $this->db->query($sql,$bindings); return $query->result(); } - - /* - * Function gets worked and confirmed summary on each band on the active stationprofile - */ - function get_cq_summary($bands, $postdata, $location_list) { - foreach ($bands as $band) { - $worked = $this->getSummaryByBand($band, $postdata, $location_list); - $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); - $cqSummary['worked'][$band] = $worked[0]->count; - $cqSummary['confirmed'][$band] = $confirmed[0]->count; - } - - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); - - $cqSummary['worked']['Total'] = $workedTotal[0]->count; - $cqSummary['confirmed']['Total'] = $confirmedTotal[0]->count; - - return $cqSummary; - } - - function getSummaryByBand($band, $postdata, $location_list) { + function getCqZoneDataSat($location_list, $postdata) { $bindings=[]; - $sql = "SELECT count(distinct thcv.col_cqz) as count FROM " . $this->config->item('table_name') . " thcv"; - - $sql .= " where station_id in (" . $location_list . ') and col_cqz <= 40 and col_cqz > 0'; - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode = ?"; - $bindings[]=$band; - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands('cq'); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; - } + $sql = "SELECT thcv.col_cqz, 'SAT' as col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv + where station_id in (" . $location_list . ") and col_cqz <= 40 and col_cqz <> ''"; if ($postdata['mode'] != 'All') { $sql .= " and (col_mode = ? or col_submode = ?)"; @@ -220,52 +313,9 @@ class CQ extends CI_Model{ $bindings[]=$postdata['dateto'] . ' 23:59:59'; } - $query = $this->db->query($sql,$bindings); + $sql .= " and col_prop_mode = 'SAT'"; - return $query->result(); - } - - function getSummaryByBandConfirmed($band, $postdata, $location_list){ - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_cqz) as count FROM " . $this->config->item('table_name') . " thcv"; - - $sql .= " where station_id in (" . $location_list . ') and col_cqz <= 40 and col_cqz > 0'; - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode = ?"; - $bindings[]=$band; - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands('cq'); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - if ($postdata['datefrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['datefrom'] . ' 00:00:00'; - } - - if ($postdata['dateto'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateto'] . ' 23:59:59'; - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); + $sql .= " GROUP BY thcv.col_cqz"; $query = $this->db->query($sql,$bindings); diff --git a/application/models/Distances_model.php b/application/models/Distances_model.php index f02375b01..8c6b12e3f 100644 --- a/application/models/Distances_model.php +++ b/application/models/Distances_model.php @@ -152,19 +152,19 @@ class Distances_model extends CI_Model switch ($measurement_base) { case 'M': $unit = "mi"; - $dist = '13000'; + $dist = '26000'; break; case 'K': $unit = "km"; - $dist = '20000'; + $dist = '40050'; break; case 'N': $unit = "nmi"; - $dist = '11000'; + $dist = '22000'; break; default: $unit = "km"; - $dist = '20000'; + $dist = '40050'; } if (!$this->valid_locator($stationgrid)) { @@ -172,7 +172,12 @@ class Distances_model extends CI_Model echo json_encode(array('Error' => 'Error. There is a problem with the gridsquare ('.$stationgrid.') set in your profile!')); exit; } else { - // Making the array we will use for plotting, we save occurrences of the length of each qso in the array + // Build the chart buckets in 50-unit steps up to the max chart distance ($dist). + // Each bucket covers a 50-unit range, e.g. in km mode: + // $dataarray[0] => "0km - 50km" + // $dataarray[1] => "50km - 100km" + // ... + // till 40050 (longpath) $j = 0; for ($i = 0; $j < $dist; $i++) { $dataarray[$i]['dist'] = $j . $unit . ' - ' . ($j + 50) . $unit; @@ -205,6 +210,9 @@ class Distances_model extends CI_Model $qrb['Callsign'] = $qso['callsign']; $qrb['Grid'] = $qso['grid']; } + if (!isset($dataarray[$arrayplacement])) { // QSO distance exceeds chart range, skip plotting + continue; + } $dataarray[$arrayplacement]['count']++; // Used for counting total qsos plotted if ($dataarray[$arrayplacement]['callcount'] < 5) { // Used for tooltip in graph, set limit to 5 calls shown if ($dataarray[$arrayplacement]['callcount'] > 0) { diff --git a/application/models/Dxcc.php b/application/models/Dxcc.php index e914722e1..3ef9b3f3c 100644 --- a/application/models/Dxcc.php +++ b/application/models/Dxcc.php @@ -8,33 +8,6 @@ class DXCC extends CI_Model { } } - /** - * Function: mostactive - * Information: Returns the most active band - **/ - function info($callsign) { - $exceptions = $this->db->query(' - SELECT * - FROM `dxcc_exceptions` - WHERE `prefix` = ? - LIMIT 1 - ',array($callsign)); - - if ($exceptions->num_rows() > 0) { - return $exceptions; - } else { - $query = $this->db->query(' - SELECT * - FROM dxcc_entities - WHERE prefix = SUBSTRING(?, 1, LENGTH( prefix ) ) - ORDER BY LENGTH( prefix ) DESC - LIMIT 1 - ',array($callsign)); - - return $query; - } - } - /* * Fetches a list of all dxcc's, both current and deleted */ @@ -58,201 +31,372 @@ class DXCC extends CI_Model { return $this->db->get('dxcc_entities'); } - function get_dxcc_array($dxccArray, $bands, $postdata) { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - + function get_dxcc_array($dxccArray, $bands, $postdata, $location_list, $map = false) { $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); - foreach ($bands as $band) { // Looping through bands and entities to generate the array needed for display + // Initialize matrix with all DXCC entities + foreach ($dxccArray as $dxcc) { + $adif = $dxcc->adif ?? '0'; + $name = $dxcc->name ?? ''; + $prefix = $dxcc->prefix ?? ''; + $enddate = $dxcc->end ?? null; + + if ($adif == '0') { + $dxccMatrix[$adif]['name'] = $name; + } else { + $dxccMatrix[$adif]['name'] = ucwords(strtolower($name), "- (/"); + } + $dxccMatrix[$adif]['prefix'] = $prefix; + if ($postdata['includedeleted']) { + $dxccMatrix[$adif]['Deleted'] = isset($enddate) ? 1 : 0; + } + + // Initialize all bands to dash + foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + $dxccMatrix[$adif][$band] = '-'; + } + } + + // Initialize summary counters only for the bands passed in + foreach ($bands as $band) { if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { continue; } - foreach ($dxccArray as $dxcc) { - if ($dxcc->adif == '0') { - $dxccMatrix[$dxcc->adif]['name'] = $dxcc->name; + $summary['worked'][$band] = 0; + $summary['confirmed'][$band] = 0; + } + $summary['worked']['Total'] = 0; + $summary['confirmed']['Total'] = 0; + + // Track unique DXCC/band combinations for totals + $workedDxccs = []; // [band][dxcc] => true + $confirmedDxccs = []; // [band][dxcc] => true + + // Track worked status for each DXCC + $dxccWorkedStatus = []; // [dxcc] => count + + // Create a lookup array for valid bands + $validBands = array_flip($bands); + + // Get all DXCC data in efficient queries + $dxccData = $this->getDxccData($location_list, $postdata); + + $dxccDataSat = $this->getDxccDataSat($location_list, $postdata); + + foreach ($dxccData as $dxcc) { + // Skip if this band is not in our requested bands list + if (!isset($validBands[$dxcc->col_band])) { + continue; + } + + // Track worked status for this DXCC + if (!isset($dxccWorkedStatus[$dxcc->dxcc])) { + $dxccWorkedStatus[$dxcc->dxcc] = 0; + } + $dxccWorkedStatus[$dxcc->dxcc]++; + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $dxcc->qsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $dxcc->lotw > 0) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $dxcc->eqsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $dxcc->qrz > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $dxcc->clublog > 0) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $dxccMatrix[$dxcc->dxcc][$dxcc->col_band] = ''; + // Track confirmed DXCCs for summary + if (!isset($confirmedDxccs[$dxcc->col_band][$dxcc->dxcc])) { + $confirmedDxccs[$dxcc->col_band][$dxcc->dxcc] = true; + $summary['confirmed'][$dxcc->col_band]++; + } + } else { + if ($postdata['worked'] != NULL) { + $dxccMatrix[$dxcc->dxcc][$dxcc->col_band] = ''; + } + } + + // Track worked DXCCs for summary + if (!isset($workedDxccs[$dxcc->col_band][$dxcc->dxcc])) { + $workedDxccs[$dxcc->col_band][$dxcc->dxcc] = true; + $summary['worked'][$dxcc->col_band]++; + } + } + + if ($postdata['band'] == 'SAT') { + foreach ($dxccDataSat as $dxcc) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + // Skip if this band is not in our requested bands list + if (!isset($validBands[$dxcc->col_band])) { + continue; + } + + // Ensure string key for consistency + $dxccKey = (string)$dxcc->dxcc; + + // Track worked status for this DXCC + if (!isset($dxccWorkedStatus[$dxccKey])) { + $dxccWorkedStatus[$dxccKey] = 0; + } + $dxccWorkedStatus[$dxccKey]++; + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $dxcc->qsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $dxcc->lotw > 0) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $dxcc->eqsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $dxcc->qrz > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $dxcc->clublog > 0) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $dxccMatrix[$dxccKey][$dxcc->col_band] = ''; + // Track confirmed DXCCs for summary + if (!isset($confirmedDxccs[$dxcc->col_band][$dxccKey])) { + $confirmedDxccs[$dxcc->col_band][$dxccKey] = true; + $summary['confirmed'][$dxcc->col_band]++; + } } else { - $dxccMatrix[$dxcc->adif]['name'] = ucwords(strtolower($dxcc->name), "- (/"); + if ($postdata['worked'] != NULL) { + $dxccMatrix[$dxccKey][$dxcc->col_band] = ''; + } } - $dxccMatrix[$dxcc->adif]['Dxccprefix'] = $dxcc->prefix; - if ($postdata['includedeleted']) - $dxccMatrix[$dxcc->adif]['Deleted'] = isset($dxcc->Enddate) ? 1 : 0; - $dxccMatrix[$dxcc->adif][$band] = '-'; - } - // If worked is checked, we add worked entities to the array - if ($postdata['worked'] != NULL) { - $workedDXCC = $this->getDxccBandWorked($location_list, $band, $postdata); - foreach ($workedDXCC as $wdxcc) { - $dxccMatrix[$wdxcc->dxcc][$band] = ''; - } - } - - // If confirmed is checked, we add confirmed entities to the array - if ($postdata['confirmed'] != NULL) { - $confirmedDXCC = $this->getDxccBandConfirmed($location_list, $band, $postdata); - foreach ($confirmedDXCC as $cdxcc) { - $dxccMatrix[$cdxcc->dxcc][$band] = ''; + // Track worked DXCCs for summary + if (!isset($workedDxccs[$dxcc->col_band][$dxccKey])) { + $workedDxccs[$dxcc->col_band][$dxccKey] = true; + $summary['worked'][$dxcc->col_band]++; } } } - // We want to remove the worked dxcc's in the list, since we do not want to display them - if ($postdata['worked'] == NULL) { - $workedDxcc = $this->getDxccWorked($location_list, $postdata); - foreach ($workedDxcc as $wdxcc) { - if (array_key_exists($wdxcc->dxcc, $dxccMatrix)) { - unset($dxccMatrix[$wdxcc->dxcc]); + // Calculate totals across all bands (excluding SAT) + $totalWorkedDxccs = []; + $totalConfirmedDxccs = []; + foreach ($workedDxccs as $band => $dxccs) { + foreach ($dxccs as $dxcc => $true) { + if (!isset($totalWorkedDxccs[$dxcc])) { + $totalWorkedDxccs[$dxcc] = true; + if ($band === 'SAT') { + continue; + } + $totalWorkedDxccsExSat[$dxcc] = true; + $summary['worked']['Total']++; + } + } + } + foreach ($confirmedDxccs as $band => $dxccs) { + foreach ($dxccs as $dxcc => $true) { + if (!isset($totalConfirmedDxccs[$dxcc])) { + $totalConfirmedDxccs[$dxcc] = true; + if ($band === 'SAT') { + continue; + } + $totalConfirmedDxccsExSat[$dxcc] = true; // For calculating total worked excluding SAT + $summary['confirmed']['Total']++; } } } - // We want to remove the confirmed dxcc's in the list, since we do not want to display them - if ($postdata['confirmed'] == NULL) { - $confirmedDxcc = $this->getDxccConfirmed($location_list, $postdata); - foreach ($confirmedDxcc as $cdxcc) { - if (array_key_exists($cdxcc->dxcc, $dxccMatrix)) { - unset($dxccMatrix[$cdxcc->dxcc]); + // Remove DXCCs based on postdata filters + foreach ($dxccMatrix as $dxcc => $data) { + // Remove not-worked DXCCs if filter is disabled + if ($postdata['notworked'] == NULL && !isset($dxccWorkedStatus[$dxcc])) { + unset($dxccMatrix[$dxcc]); + continue; + } + + // Remove worked-only DXCCs if filter is disabled + if ($postdata['worked'] == NULL && isset($dxccWorkedStatus[$dxcc]) && !isset($totalConfirmedDxccs[$dxcc])) { + unset($dxccMatrix[$dxcc]); + continue; + } + + // Remove confirmed DXCCs if filter is disabled + if ($postdata['confirmed'] == NULL && isset($totalConfirmedDxccs[$dxcc])) { + unset($dxccMatrix[$dxcc]); + continue; + } + } + + // If this is for the map, return simplified format + if ($map) { + $mapDxccs = []; + if ($bands[0] == 'SAT') { + foreach ($dxccMatrix as $dxcc => $data) { + if (isset($confirmedDxccs['SAT'][$dxcc])) { + $mapDxccs[$dxcc] = 'C'; // Confirmed + } elseif (isset($workedDxccs['SAT'][$dxcc])) { + $mapDxccs[$dxcc] = 'W'; // Worked but not confirmed + } else { + $mapDxccs[$dxcc] = '-'; // Not worked + } + } + } else { + foreach ($dxccMatrix as $dxcc => $data) { + if (isset($totalConfirmedDxccsExSat[$dxcc])) { + $mapDxccs[$dxcc] = 'C'; // Confirmed + } elseif (isset($totalWorkedDxccsExSat[$dxcc])) { + $mapDxccs[$dxcc] = 'W'; // Worked but not confirmed + } else { + $mapDxccs[$dxcc] = '-'; // Not worked + } } } + return $mapDxccs; } if (isset($dxccMatrix)) { - return $dxccMatrix; + // Return both the matrix data and summary + return ['matrix' => $dxccMatrix, 'summary' => $summary]; } else { return 0; } } - private function cf_type($postdata,$qsl,$lotw,$eqsl,$qrz,$clublog) { - $string=''; - if ((($qsl ?? 0)>0) && (($postdata['qsl'] ?? '') != '')) { $string.='Q'; } - if ((($lotw ?? 0)>0) && (($postdata['lotw'] ?? '') != '')) { $string.='L'; } - if ((($eqsl ?? 0)>0) && (($postdata['eqsl'] ?? '') != '')) { $string.='E'; } - if ((($qrz ?? 0)>0) && (($postdata['qrz'] ?? '') != '')) { $string.='Z'; } - if ((($clublog ?? 0)>0) && (($postdata['clublog'] ?? '') != '')) { $string.='C'; } - if ($string == '') { $string='C'; } - return $string; - } - - function getDxccBandConfirmed($location_list, $band, $postdata) { - $bindings=[]; - $sql = "select adif as dxcc, name, lotw, qsl, eqsl, qrz, clublog from dxcc_entities - join ( - select col_dxcc, sum(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw,sum(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl,sum(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl,sum(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz,sum(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . - ") and col_dxcc > 0"; - - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - if ($band == 'SAT') { - $sql .= " and col_prop_mode='SAT'"; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } else { - $sql.=" and (col_prop_mode!='SAT' or col_prop_mode is null)"; - } + /* + * Gets all DXCC data with confirmation status in efficient query using MAX aggregation + */ + function getDxccData($location_list, $postdata) { + $bindings = []; + $sql = "SELECT thcv.col_dxcc as dxcc, thcv.col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv + join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif + WHERE station_id IN (" . $location_list . ") AND thcv.col_dxcc > 0"; + // Mode filter if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; + $sql .= " AND (thcv.col_mode = ? OR thcv.col_submode = ?)"; + $bindings[] = $postdata['mode']; + $bindings[] = $postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - + // Date filters if ($postdata['dateFrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['dateFrom'] . ' 00:00:00'; + $sql .= " AND thcv.col_time_on >= ?"; + $bindings[] = $postdata['dateFrom'] . ' 00:00:00'; } if ($postdata['dateTo'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateTo'] . ' 23:59:59'; + $sql .= " AND thcv.col_time_on <= ?"; + $bindings[] = $postdata['dateTo'] . ' 23:59:59'; } - $sql .= " group by col_dxcc - ) x on dxcc_entities.adif = x.col_dxcc"; - - if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; - } + $sql .= " and thcv.col_prop_mode != 'SAT'"; + // Continent filters $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql,$bindings); + // Deleted DXCC filter + if ($postdata['includedeleted'] == NULL) { + $sql .= " AND (SELECT end FROM dxcc_entities d WHERE d.adif = thcv.col_dxcc) IS NULL"; + } + $sql .= " GROUP BY thcv.col_dxcc, thcv.col_band"; + + $query = $this->db->query($sql, $bindings); return $query->result(); } - function getDxccBandWorked($location_list, $band, $postdata) { - $bindings=[]; - $sql = "select adif as dxcc, name from dxcc_entities - join ( - select col_dxcc from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . - ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='SAT'"; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } else { - $sql.=" and (col_prop_mode != 'SAT' or col_prop_mode is null)"; - } + function getDxccDataSat($location_list, $postdata) { + $bindings = []; + $sql = "SELECT thcv.col_dxcc as dxcc, 'SAT' as col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv + join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif + LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name + WHERE station_id IN (" . $location_list . ") AND thcv.col_dxcc > 0"; + // Mode filter if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; + $sql .= " AND (thcv.col_mode = ? OR thcv.col_submode = ?)"; + $bindings[] = $postdata['mode']; + $bindings[] = $postdata['mode']; } + // Date filters if ($postdata['dateFrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['dateFrom'] . ' 00:00:00'; + $sql .= " AND thcv.col_time_on >= ?"; + $bindings[] = $postdata['dateFrom'] . ' 00:00:00'; } if ($postdata['dateTo'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateTo'] . ' 23:59:59'; + $sql .= " AND thcv.col_time_on <= ?"; + $bindings[] = $postdata['dateTo'] . ' 23:59:59'; } - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= " group by col_dxcc - ) x on dxcc_entities.adif = x.col_dxcc";; - if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; + // Satellite filter + if ($postdata['sat'] != 'All') { + $sql .= " AND thcv.col_sat_name = ?"; + $bindings[] = $postdata['sat']; } + + // Orbit filter + $sql .= $this->addOrbitToQuery($postdata, $bindings); + + // Continent filters $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql,$bindings); + // Deleted DXCC filter + if ($postdata['includedeleted'] == NULL) { + $sql .= " AND (SELECT end FROM dxcc_entities d WHERE d.adif = thcv.col_dxcc) IS NULL"; + } + + $sql .= " and col_prop_mode = 'SAT'"; + + $sql .= " GROUP BY thcv.col_dxcc"; + + $query = $this->db->query($sql, $bindings); return $query->result(); } - function fetchDxcc($postdata) { + function fetchDxcc($postdata, $location_list) { $bindings=[]; - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - - $location_list = "'".implode("','",$logbooks_locations_array)."'"; $sql = "select adif, prefix, name, date(end) Enddate, date(start) Startdate, lat, `long` from dxcc_entities"; @@ -314,146 +458,6 @@ class DXCC extends CI_Model { return $query->result(); } - function getDxccWorked($location_list, $postdata) { - $bindings=[]; - $sql = "SELECT adif as dxcc FROM dxcc_entities - join ( - select col_dxcc - from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . - ") and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); - if ($postdata['band'] == 'SAT') { - $sql .= " and col_prop_mode = 'SAT'"; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - $sql .= $this->addOrbitToQuery($postdata,$bindings); - } else { - $sql.=" and (col_prop_mode != 'SAT' or col_prop_mode is null)"; - } - - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - if ($postdata['dateFrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['dateFrom'] . ' 00:00:00'; - } - - if ($postdata['dateTo'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateTo'] . ' 23:59:59'; - } - - $sql .= " and not exists (select 1 from ".$this->config->item('table_name')." where station_id in (". $location_list .") and col_dxcc = thcv.col_dxcc and col_dxcc > 0"; - $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); - if ($postdata['band'] == 'SAT') { - $sql .= " and col_prop_mode = 'SAT'"; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - $sql .= $this->addOrbitToQuery($postdata,$bindings); - } else { - $sql.=" and (col_prop_mode != 'SAT' or col_prop_mode is null)"; - } - - if ($postdata['dateFrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['dateFrom'] . ' 00:00:00'; - } - - if ($postdata['dateTo'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateTo'] . ' 23:59:59'; - } - - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); - $sql .= ')'; - $sql .= " group by col_dxcc - ) ll on dxcc_entities.adif = ll.col_dxcc - where 1=1"; - - if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; - } - - $sql .= $this->addContinentsToQuery($postdata); - $query = $this->db->query($sql,$bindings); - return $query->result(); - } - - function getDxccConfirmed($location_list, $postdata) { - $bindings=[]; - $sql = "SELECT adif as dxcc, lotw, qsl, eqsl, qrz, clublog FROM dxcc_entities - join ( - select col_dxcc, sum(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw,sum(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl,sum(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl,sum(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz,sum(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog - from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (". $location_list . - ") and col_dxcc > 0"; - - if ($postdata['dateFrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['dateFrom'] . ' 00:00:00'; - } - - if ($postdata['dateTo'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateTo'] . ' 23:59:59'; - } - - $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); - if ($postdata['band'] == 'SAT') { - $sql .= " and col_prop_mode = 'SAT'"; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } else { - $sql.=" and (col_prop_mode != 'SAT' or col_prop_mode is null)"; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= " group by col_dxcc - ) ll on dxcc_entities.adif = ll.col_dxcc - where 1=1"; - - if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; - } - - $sql .= $this->addContinentsToQuery($postdata); - - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - // Made function instead of repeating this several times function addContinentsToQuery($postdata) { $sql = ''; @@ -487,95 +491,6 @@ class DXCC extends CI_Model { return $sql; } - /* - * Function gets worked and confirmed summary on each band on the active stationprofile - */ - function get_dxcc_summary($bands, $postdata) { - $this->load->model('logbooks_model'); - $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); - - if (!$logbooks_locations_array) { - return null; - } - - $location_list = "'".implode("','",$logbooks_locations_array)."'"; - - foreach ($bands as $band) { - $worked = $this->getSummaryByBand($band, $postdata, $location_list); - $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); - $dxccSummary['worked'][$band] = $worked[0]->count; - $dxccSummary['confirmed'][$band] = $confirmed[0]->count; - $dxccSummary['confirmed_lotw'][$band] = $confirmed[0]->lotw; - $dxccSummary['confirmed_qsl'][$band] = $confirmed[0]->qsl; - } - - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); - - $dxccSummary['worked']['Total'] = $workedTotal[0]->count; - $dxccSummary['confirmed']['Total'] = $confirmedTotal[0]->count; - - return $dxccSummary; - } - - function getSummaryByBand($band, $postdata, $location_list) { - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_dxcc) as count FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; - - $sql .= " where station_id in (" . $location_list . ") and col_dxcc > 0"; - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; - if ($band != 'All' && $postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands('dxcc'); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; - } - - if ($postdata['dateFrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['dateFrom'] . ' 00:00:00'; - } - - if ($postdata['dateTo'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateTo'] . ' 23:59:59'; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - if ($postdata['includedeleted'] == NULL) { - $sql .= " and d.end is null"; - } - - $sql .= $this->addContinentsToQuery($postdata); - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - // Adds orbit type to query function addOrbitToQuery($postdata,&$binding) { $sql = ''; @@ -587,79 +502,362 @@ class DXCC extends CI_Model { return $sql; } - function getSummaryByBandConfirmed($band, $postdata, $location_list) { - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_dxcc) as count, sum(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw,sum(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl,sum(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl,sum(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz,sum(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; + /* + * Functions below are all used in the calltester controller + */ - $sql .= " where station_id in (" . $location_list . ") and col_dxcc > 0"; + /* + * Check the dxcc_prefixes table and return (dxcc, country) + */ + public function check_dxcc_table($call, $date) { - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode = ?"; - $bindings[]=$band; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; + $date = date("Y-m-d", strtotime($date)); + $csadditions = '/^X$|^D$|^T$|^P$|^R$|^B$|^A$|^M$|^LH$|^L$|^J$|^SK$/'; + + $dxcc_exceptions = $this->db->select('`entity`, `adif`, `cqz`, `cont`') + ->where('`call`', $call) + ->where('(start <= ', $date) + ->or_where('start is null)', NULL, false) + ->where('(end >= ', $date) + ->or_where('end is null)', NULL, false) + ->get('dxcc_exceptions'); + + if ($dxcc_exceptions->num_rows() > 0) { + $row = $dxcc_exceptions->row_array(); + return array($row['adif'], $row['entity'], $row['cqz'], $row['cont']); + } + if (preg_match('/(^KG4)[A-Z09]{3}/', $call)) { // KG4/ and KG4 5 char calls are Guantanamo Bay. If 4 or 6 char, it is USA + $call = "K"; + } elseif (preg_match('/(^OH\/)|(\/OH[1-9]?$)/', $call)) { # non-Aland prefix! + $call = "OH"; # make callsign OH = finland + } elseif (preg_match('/(^CX\/)|(\/CX[1-9]?$)/', $call)) { # non-Antarctica prefix! + $call = "CX"; # make callsign CX = Uruguay + } elseif (preg_match('/(^3D2R)|(^3D2.+\/R)/', $call)) { # seems to be from Rotuma + $call = "3D2/R"; # will match with Rotuma + } elseif (preg_match('/^3D2C/', $call)) { # seems to be from Conway Reef + $call = "3D2/C"; # will match with Conway + } elseif (preg_match('/(^LZ\/)|(\/LZ[1-9]?$)/', $call)) { # LZ/ is LZ0 by DXCC but this is VP8h + $call = "LZ"; + } elseif (preg_match('/(^KG4)[A-Z09]{2}/', $call)) { + $call = "KG4"; + } elseif (preg_match('/(^KG4)[A-Z09]{1}/', $call)) { + $call = "K"; + } elseif (preg_match('/\w\/\w/', $call)) { + if (preg_match_all('/^((\d|[A-Z])+\/)?((\d|[A-Z]){3,})(\/(\d|[A-Z])+)?(\/(\d|[A-Z])+)?$/', $call, $matches)) { + $prefix = $matches[1][0]; + $callsign = $matches[3][0]; + $suffix = $matches[5][0]; + if ($prefix) { + $prefix = substr($prefix, 0, -1); # Remove the / at the end + } + if ($suffix) { + $suffix = substr($suffix, 1); # Remove the / at the beginning + }; + if (preg_match($csadditions, $suffix)) { + if ($prefix) { + $call = $prefix; + } else { + $call = $callsign; + } + } else { + $result = $this->wpx($call, 1); # use the wpx prefix instead + if ($result == '') { + $row['adif'] = 0; + $row['entity'] = '- NONE -'; + $row['cqz'] = 0; + $row['cont'] = ''; + return array($row['adif'], $row['entity'], $row['cqz'], $row['cont']); + } else { + $call = $result . "AA"; + } + } } - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands('dxcc'); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; } - if ($postdata['dateFrom'] != NULL) { - $sql .= " and col_time_on >= ?"; - $bindings[]=$postdata['dateFrom'] . ' 00:00:00'; + $len = strlen($call); + $dxcc_array = []; + // Fetch all candidates in one shot instead of looping + $dxcc_result = $this->db->query("SELECT `call`, `entity`, `adif`, `cqz`, `cont` + FROM `dxcc_prefixes` + WHERE ? like concat(`call`,'%') + and `call` like ? + AND (`start` <= ? OR start is null) + AND (`end` >= ? OR end is null) order by length(`call`) desc limit 1", array($call, substr($call, 0, 1) . '%', $date, $date)); + + foreach ($dxcc_result->result_array() as $row) { + $dxcc_array[$row['call']] = $row; } - if ($postdata['dateTo'] != NULL) { - $sql .= " and col_time_on <= ?"; - $bindings[]=$postdata['dateTo'] . ' 23:59:59'; + // query the table, removing a character from the right until a match + for ($i = $len; $i > 0; $i--) { + //printf("searching for %s\n", substr($call, 0, $i)); + if (array_key_exists(substr($call, 0, $i), $dxcc_array)) { + $row = $dxcc_array[substr($call, 0, $i)]; + // $row = $dxcc_result->row_array(); + return array($row['adif'], $row['entity'], $row['cqz'], $row['cont']); + } } - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - - if ($postdata['includedeleted'] == NULL) { - $sql .= " and d.end is null"; - } - - $sql .= $this->addContinentsToQuery($postdata); - - $query = $this->db->query($sql,$bindings); - - return $query->result(); + return array("Not Found", "Not Found"); } - function lookup_country($country) { - $bindings=[]; - $query = $this->db->query(' - SELECT * - FROM dxcc_entities - WHERE name = ? - ORDER BY LENGTH( prefix ) DESC - LIMIT 1 - ',array($country)); + function wpx($testcall, $i) { + $prefix = ''; + $a = ''; + $b = ''; + $c = ''; - return $query->row(); + $lidadditions = '/^QRP$|^LGT$/'; + $csadditions = '/^X$|^D$|^T$|^P$|^R$|^B$|^A$|^M$|^LH$|^L$|^J$|^SK$/'; + $noneadditions = '/^MM$|^AM$/'; + + # First check if the call is in the proper format, A/B/C where A and C + # are optional (prefix of guest country and P, MM, AM etc) and B is the + # callsign. Only letters, figures and "/" is accepted, no further check if the + # callsign "makes sense". + # 23.Apr.06: Added another "/X" to the regex, for calls like RV0AL/0/P + # as used by RDA-DXpeditions.... + + if (preg_match_all('/^((\d|[A-Z])+\/)?((\d|[A-Z]){3,})(\/(\d|[A-Z])+)?(\/(\d|[A-Z])+)?$/', $testcall, $matches)) { + + # Now $1 holds A (incl /), $3 holds the callsign B and $5 has C + # We save them to $a, $b and $c respectively to ensure they won't get + # lost in further Regex evaluations. + $a = $matches[1][0]; + $b = $matches[3][0]; + $c = $matches[5][0]; + + if ($a) { + $a = substr($a, 0, -1); # Remove the / at the end + } + if ($c) { + $c = substr($c, 1); # Remove the / at the beginning + }; + + # In some cases when there is no part A but B and C, and C is longer than 2 + # letters, it happens that $a and $b get the values that $b and $c should + # have. This often happens with liddish callsign-additions like /QRP and + # /LGT, but also with calls like DJ1YFK/KP5. ~/.yfklog has a line called + # "lidadditions", which has QRP and LGT as defaults. This sorts out half of + # the problem, but not calls like DJ1YFK/KH5. This is tested in a second + # try: $a looks like a call (.\d[A-Z]) and $b doesn't (.\d), they are + # swapped. This still does not properly handle calls like DJ1YFK/KH7K where + # only the OP's experience says that it's DJ1YFK on KH7K. + if (!$c && $a && $b) { # $a and $b exist, no $c + if (preg_match($lidadditions, $b)) { # check if $b is a lid-addition + $b = $a; + $a = null; # $a goes to $b, delete lid-add + } elseif ((preg_match('/\d[A-Z]+$/', $a)) && (preg_match('/\d$/', $b) || preg_match('/^[A-Z]\d[A-Z]$/', $b))) { # check for call in $a + $temp = $b; + $b = $a; + $a = $temp; + } + } + + # *** Added later *** The check didn't make sure that the callsign + # contains a letter. there are letter-only callsigns like RAEM, but not + # figure-only calls. + + if (preg_match('/^[0-9]+$/', $b)) { # Callsign only consists of numbers. Bad! + return null; # exit, undef + } + + # Depending on these values we have to determine the prefix. + # Following cases are possible: + # + # 1. $a and $c undef --> only callsign, subcases + # 1.1 $b contains a number -> everything from start to number + # 1.2 $b contains no number -> first two letters plus 0 + # 2. $a undef, subcases: + # 2.1 $c is only a number -> $a with changed number + # 2.2 $c is /P,/M,/MM,/AM -> 1. + # 2.3 $c is something else and will be interpreted as a Prefix + # 3. $a is defined, will be taken as PFX, regardless of $c + + if (($a == null) && ($c == null)) { # Case 1 + if (preg_match('/\d/', $b)) { # Case 1.1, contains number + preg_match('/(.+\d)[A-Z]*/', $b, $matches); # Prefix is all but the last + $prefix = $matches[1]; # Letters + } else { # Case 1.2, no number + $prefix = substr($b, 0, 2) . "0"; # first two + 0 + } + } elseif (($a == null) && (isset($c))) { # Case 2, CALL/X + if (preg_match('/^(\d)/', $c)) { # Case 2.1, number + preg_match('/(.+\d)[A-Z]*/', $b, $matches); # regular Prefix in $1 + # Here we need to find out how many digits there are in the + # prefix, because for example A45XR/0 is A40. If there are 2 + # numbers, the first is not deleted. If course in exotic cases + # like N66A/7 -> N7 this brings the wrong result of N67, but I + # think that's rather irrelevant cos such calls rarely appear + # and if they do, it's very unlikely for them to have a number + # attached. You can still edit it by hand anyway.. + if (preg_match('/^([A-Z]\d{2,})$/', $matches[1])) { # e.g. A45 $c = 0 + $prefix = $matches[1] . $c; # -> A40 + } else { # Otherwise cut all numbers + preg_match('/(.*[A-Z])\d+/', $matches[1], $match); # Prefix w/o number in $1 + $prefix = $match[1] . $c; # Add attached number + } + } elseif (preg_match($csadditions, $c)) { + preg_match('/(.+\d)[A-Z]*/', $b, $matches); # Known attachment -> like Case 1.1 + $prefix = $matches[1]; + } elseif (preg_match($noneadditions, $c)) { + return ''; + } elseif (preg_match('/^\d\d+$/', $c)) { # more than 2 numbers -> ignore + preg_match('/(.+\d)[A-Z]* /', $b, $matches); # see above + $prefix = $matches[1][0]; + } else { # Must be a Prefix! + if (preg_match('/\d$/', $c)) { # ends in number -> good prefix + $prefix = $c; + } else { # Add Zero at the end + $prefix = $c . "0"; + } + } + } elseif (($a) && (preg_match($noneadditions, $c))) { # Case 2.1, X/CALL/X ie TF/DL2NWK/MM - DXCC none + return ''; + } elseif ($a) { + # $a contains the prefix we want + if (preg_match('/\d$/', $a)) { # ends in number -> good prefix + $prefix = $a; + } else { # add zero if no number + $prefix = $a . "0"; + } + } + # In very rare cases (right now I can only think of KH5K and KH7K and FRxG/T + # etc), the prefix is wrong, for example KH5K/DJ1YFK would be KH5K0. In this + # case, the superfluous part will be cropped. Since this, however, changes the + # DXCC of the prefix, this will NOT happen when invoked from with an + # extra parameter $_[1]; this will happen when invoking it from &dxcc. + + if (preg_match('/(\w+\d)[A-Z]+\d/', $prefix, $matches) && $i == null) { + $prefix = $matches[1][0]; + } + return $prefix; + } else { + return ''; + } + } + + public function dxcc_lookup($call, $date) { + + $date = date("Y-m-d", strtotime($date)); + $csadditions = '/^X$|^D$|^T$|^P$|^R$|^B$|^A$|^M$|^LH$|^L$|^J$|^SK$/'; + + $dxcc_exceptions = $this->db->select('`entity`, `adif`, `cqz`,`cont`,`long`,`lat`') + ->where('`call`', $call) + ->where('(start <= ', $date) + ->or_where('start is null)', NULL, false) + ->where('(end >= ', $date) + ->or_where('end is null)', NULL, false) + ->get('dxcc_exceptions'); + if ($dxcc_exceptions->num_rows() > 0) { + $row = $dxcc_exceptions->row_array(); + return $row; + } else { + + if (preg_match('/(^KG4)[A-Z09]{3}/', $call)) { // KG4/ and KG4 5 char calls are Guantanamo Bay. If 4 or 6 char, it is USA + $call = "K"; + } elseif (preg_match('/(^OH\/)|(\/OH[1-9]?$)/', $call)) { # non-Aland prefix! + $call = "OH"; # make callsign OH = finland + } elseif (preg_match('/(^CX\/)|(\/CX[1-9]?$)/', $call)) { # non-Antarctica prefix! + $call = "CX"; # make callsign CX = Uruguay + } elseif (preg_match('/(^3D2R)|(^3D2.+\/R)/', $call)) { # seems to be from Rotuma + $call = "3D2/R"; # will match with Rotuma + } elseif (preg_match('/^3D2C/', $call)) { # seems to be from Conway Reef + $call = "3D2/C"; # will match with Conway + } elseif (preg_match('/(^LZ\/)|(\/LZ[1-9]?$)/', $call)) { # LZ/ is LZ0 by DXCC but this is VP8h + $call = "LZ"; + } elseif (preg_match('/(^KG4)[A-Z09]{2}/', $call)) { + $call = "KG4"; + } elseif (preg_match('/(^KG4)[A-Z09]{1}/', $call)) { + $call = "K"; + } elseif (preg_match('/\w\/\w/', $call)) { + if (preg_match_all('/^((\d|[A-Z])+\/)?((\d|[A-Z]){3,})(\/(\d|[A-Z])+)?(\/(\d|[A-Z])+)?$/', $call, $matches)) { + $prefix = $matches[1][0]; + $callsign = $matches[3][0]; + $suffix = $matches[5][0]; + if ($prefix) { + $prefix = substr($prefix, 0, -1); # Remove the / at the end + } + if ($suffix) { + $suffix = substr($suffix, 1); # Remove the / at the beginning + }; + if (preg_match($csadditions, $suffix)) { + if ($prefix) { + $call = $prefix; + } else { + $call = $callsign; + } + } else { + $result = $this->wpx($call, 1); # use the wpx prefix instead + if ($result == '') { + $row['adif'] = 0; + $row['cont'] = ''; + $row['entity'] = '- NONE -'; + $row['ituz'] = 0; + $row['cqz'] = 0; + $row['long'] = '0'; + $row['lat'] = '0'; + return $row; + } else { + $call = $result . "AA"; + } + } + } + } + + $len = strlen($call); + $dxcc_array = []; + + // Fetch all candidates in one shot instead of looping + $dxcc_result = $this->db->query("SELECT `dxcc_prefixes`.`record`, `dxcc_prefixes`.`call`, `dxcc_prefixes`.`entity`, `dxcc_prefixes`.`adif`, `dxcc_prefixes`.`cqz`, `dxcc_entities`.`ituz`, `dxcc_prefixes`.`cont`, `dxcc_prefixes`.`long`, `dxcc_prefixes`.`lat`, `dxcc_prefixes`.`start`, `dxcc_prefixes`.`end` + FROM `dxcc_prefixes` + LEFT JOIN `dxcc_entities` ON `dxcc_entities`.`adif` = `dxcc_prefixes`.`adif` + WHERE ? like concat(`call`,'%') + and `dxcc_prefixes`.`call` like ? + AND (`dxcc_prefixes`.`start` <= ? OR `dxcc_prefixes`.`start` is null) + AND (`dxcc_prefixes`.`end` >= ? OR `dxcc_prefixes`.`end` is null) order by length(`call`) desc limit 1", array($call, substr($call, 0, 1) . '%', $date, $date)); + + foreach ($dxcc_result->result_array() as $row) { + $dxcc_array[$row['call']] = $row; + } + + // query the table, removing a character from the right until a match + for ($i = $len; $i > 0; $i--) { + if (array_key_exists(substr($call, 0, $i), $dxcc_array)) { + $row = $dxcc_array[substr($call, 0, $i)]; + return $row; + } + } + } + + return array( + 'adif' => 0, + 'cqz' => 0, + 'ituz' => 0, + 'long' => '', + 'lat' => '', + 'entity' => 'None', + ); + } + + function getQsos($station_id) { + ini_set('memory_limit', '-1'); + $sql = 'select distinct col_country, col_call, col_dxcc, date(col_time_on) date, station_profile.station_profile_name, col_primary_key + from ' . $this->config->item('table_name') . ' + join station_profile on ' . $this->config->item('table_name') . '.station_id = station_profile.station_id + where station_profile.user_id = ?'; + $params[] = $this->session->userdata('user_id'); + + if ($station_id && is_numeric($station_id)) { + $sql .= ' and ' . $this->config->item('table_name') . '.station_id = ?'; + $params[] = $station_id; + } + + $sql .= ' order by station_profile.station_profile_name asc, date desc'; + + $query = $this->db->query($sql, $params); + + return $query; } } ?> diff --git a/application/models/Dxcluster_model.php b/application/models/Dxcluster_model.php index 3fc73d4cd..59af02b01 100644 --- a/application/models/Dxcluster_model.php +++ b/application/models/Dxcluster_model.php @@ -135,7 +135,7 @@ class Dxcluster_model extends CI_Model { } $date = date('Y-m-d', time()); - $dxccObj = new DXCC($date); + $dxccObj = new DXCC(); // DXCC lookup cache to avoid duplicate lookups $dxcc_cache = []; @@ -527,9 +527,8 @@ class Dxcluster_model extends CI_Model { $jsonraw = curl_exec($ch); $json = json_decode($jsonraw); - $date = date('Ymd', time()); - - $dxccObj = new DXCC($date); + $date = date('Y-m-d', time()); + $dxccObj = new DXCC(); // Create JSON object if (strlen($jsonraw)>20) { @@ -541,7 +540,7 @@ class Dxcluster_model extends CI_Model { $minutes += $spotage->i; $json->age=$minutes; if ($minutes<=$maxage) { - $dxcc=$dxccObj->dxcc_lookup($json->spotter,date('Ymd', time())); + $dxcc=$dxccObj->dxcc_lookup($json->spotter,$date); $json->dxcc_spotter=$dxcc; return ($json); } else { diff --git a/application/models/Itu.php b/application/models/Itu.php index 96ace6daa..f88dfdf1b 100644 --- a/application/models/Itu.php +++ b/application/models/Itu.php @@ -1,12 +1,12 @@ load->library('Genfunctions'); } - function get_itu_array($bands, $postdata, $location_list) { + function get_itu_array($bands, $postdata, $location_list, $map = false) { $ituZ = array(); // Used for keeping track of which states that are not worked for ($i = 1; $i <= 90; $i++) { @@ -15,65 +15,239 @@ class Itu extends CI_Model{ $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + // Initialize all bands to dash foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } for ($i = 1; $i <= 90; $i++) { - $banditu[$i][$band] = '-'; // Sets all to dash to indicate no result + $bandItu[$i][$band] = '-'; // Sets all to dash to indicate no result + } + } + + // Initialize summary counters only for the bands passed in + foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + $summary['worked'][$band] = 0; + $summary['confirmed'][$band] = 0; + } + $summary['worked']['Total'] = 0; + $summary['confirmed']['Total'] = 0; + + // Track unique zone/band combinations for totals + $workedZones = []; // [band][zone] = true + $confirmedZones = []; // [band][zone] = true + + // Create a lookup array for valid bands + $validBands = array_flip($bands); // ['160m' => true, '80m' => true, etc] + + $itudata = $this->getItuZoneData($location_list, $postdata); + $itudata_sat = $this->getItuZoneDataSat($location_list, $postdata); + + foreach ($itudata as $itu) { + // Skip if this band is not in our requested bands list + if (!isset($validBands[$itu->col_band])) { + continue; } - if ($postdata['worked'] != NULL) { - $ituBand = $this->getituWorked($location_list, $band, $postdata); - foreach ($ituBand as $line) { - $banditu[$line->col_ituz][$band] = ''; - $ituZ[$line->col_ituz]['count']++; + $ituZ[$itu->col_ituz]['count']++; // Count each itu zone + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $itu->qsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $itu->lotw == 1) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $itu->eqsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $itu->qrz == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $itu->clublog == 1) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $bandItu[$itu->col_ituz][$itu->col_band] = ''; + // Track confirmed zones for summary + if (!isset($confirmedZones[$itu->col_band][$itu->col_ituz])) { + $confirmedZones[$itu->col_band][$itu->col_ituz] = true; + $summary['confirmed'][$itu->col_band]++; + } + } else { + if ($postdata['worked'] != NULL) { + $bandItu[$itu->col_ituz][$itu->col_band] = ''; } } - if ($postdata['confirmed'] != NULL) { - $ituBand = $this->getituConfirmed($location_list, $band, $postdata); - foreach ($ituBand as $line) { - $banditu[$line->col_ituz][$band] = ''; - $ituZ[$line->col_ituz]['count']++; + + // Track worked zones for summary + if (!isset($workedZones[$itu->col_band][$itu->col_ituz])) { + $workedZones[$itu->col_band][$itu->col_ituz] = true; + $summary['worked'][$itu->col_band]++; + } + } + + if ($postdata['band'] == 'SAT') { + foreach ($itudata_sat as $itu) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + // Skip if this band is not in our requested bands list + if (!isset($validBands[$itu->col_band])) { + continue; + } + + $ituZ[$itu->col_ituz]['count']++; // Count each itu zone + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $itu->qsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $itu->lotw == 1) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $itu->eqsl == 1) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $itu->qrz == 1) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $itu->clublog == 1) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $bandItu[$itu->col_ituz][$itu->col_band] = ''; + // Track confirmed zones for summary + if (!isset($confirmedZones[$itu->col_band][$itu->col_ituz])) { + $confirmedZones[$itu->col_band][$itu->col_ituz] = true; + $summary['confirmed'][$itu->col_band]++; + } + } else { + if ($postdata['worked'] != NULL) { + $bandItu[$itu->col_ituz][$itu->col_band] = ''; + } + } + + // Track worked zones for summary + if (!isset($workedZones[$itu->col_band][$itu->col_ituz])) { + $workedZones[$itu->col_band][$itu->col_ituz] = true; + $summary['worked'][$itu->col_band]++; } } } - // We want to remove the worked zones in the list, since we do not want to display them - if ($postdata['worked'] == NULL) { - $ituBand = $this->getituWorked($location_list, $postdata['band'], $postdata); - foreach ($ituBand as $line) { - unset($banditu[$line->col_ituz]); + // Calculate totals across all bands (excluding SAT) + $totalWorkedZones = []; + $totalConfirmedZones = []; + foreach ($workedZones as $band => $zones) { + foreach ($zones as $zone => $true) { + if (!isset($totalWorkedZones[$zone])) { + $totalWorkedZones[$zone] = true; + if ($band === 'SAT') { + continue; + } + $totalWorkedZonesExSat[$zone] = true; // For calculating total worked excluding SAT + $summary['worked']['Total']++; + } + } + } + foreach ($confirmedZones as $band => $zones) { + foreach ($zones as $zone => $true) { + if (!isset($totalConfirmedZones[$zone])) { + $totalConfirmedZones[$zone] = true; + if ($band === 'SAT') { + continue; + } + $totalConfirmedZonesExSat[$zone] = true; // For calculating total worked excluding SAT + $summary['confirmed']['Total']++; + } } } - // We want to remove the confirmed zones in the list, since we do not want to display them - if ($postdata['confirmed'] == NULL) { - $ituBand = $this->getituConfirmed($location_list, $postdata['band'], $postdata); - foreach ($ituBand as $line) { - unset($banditu[$line->col_ituz]); + // Remove zones based on postdata filters + for ($i = 1; $i <= 90; $i++) { + // Remove not-worked zones if filter is disabled + if ($postdata['notworked'] == NULL && $ituZ[$i]['count'] == 0) { + unset($bandItu[$i]); + continue; + } + + // Remove worked-only zones if filter is disabled + if ($postdata['worked'] == NULL && $ituZ[$i]['count'] > 0 && !isset($totalConfirmedZones[$i])) { + unset($bandItu[$i]); + continue; + } + + // Remove confirmed zones if filter is disabled + if ($postdata['confirmed'] == NULL && isset($totalConfirmedZones[$i])) { + unset($bandItu[$i]); + continue; } } - if ($postdata['notworked'] == NULL) { - for ($i = 1; $i <= 90; $i++) { - if ($ituZ[$i]['count'] == 0) { - unset($banditu[$i]); - }; + // If this is for the map, return simplified format + if ($map) { + $mapZones = []; + if ($bands[0] == 'SAT') { + for ($i = 1; $i <= 90; $i++) { + if ($ituZ[$i]['count'] == 0) { + $mapZones[$i-1] = '-'; // Not worked + } elseif (isset($confirmedZones['SAT'][$i])) { + $mapZones[$i-1] = 'C'; // Confirmed + } else { + $mapZones[$i-1] = 'W'; // Worked but not confirmed + } + } + } else { + for ($i = 1; $i <= 90; $i++) { + if (isset($totalConfirmedZonesExSat[$i])) { + $mapZones[$i-1] = 'C'; // Confirmed + } else if (isset($totalWorkedZonesExSat[$i])) { + $mapZones[$i-1] = 'W'; // Worked but not confirmed + } else { + $mapZones[$i-1] = '-'; // Not worked + } + } } + return $mapZones; } - if (isset($banditu)) { - return $banditu; + if (isset($bandItu)) { + // Return both the band data and summary + return ['bands' => $bandItu, 'summary' => $summary]; } else { return 0; } } - /* - * Function returns all worked, but not confirmed states - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getituWorked($location_list, $band, $postdata) { + function getItuZoneData($location_list, $postdata) { $bindings=[]; - $sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv + $sql = "SELECT thcv.col_ituz, thcv.col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''"; if ($postdata['mode'] != 'All') { @@ -82,36 +256,34 @@ class Itu extends CI_Model{ $bindings[]=$postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - - $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . - ") and col_ituz = thcv.col_ituz and col_ituz <> '' "; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; + if ($postdata['datefrom'] != NULL) { + $sql .= " and col_time_on >= ?"; + $bindings[]=$postdata['datefrom'] . ' 00:00:00'; } - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + if ($postdata['dateto'] != NULL) { + $sql .= " and col_time_on <= ?"; + $bindings[]=$postdata['dateto'] . ' 23:59:59'; + } - $sql .= $this->genfunctions->addQslToQuery($postdata); + $sql .= " and col_prop_mode != 'SAT'"; - $sql .= ")"; + $sql .= " GROUP BY thcv.col_ituz, thcv.col_band"; $query = $this->db->query($sql,$bindings); return $query->result(); } - /* - * Function returns all confirmed states on given band and on LoTW or QSL - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getituConfirmed($location_list, $band, $postdata) { + function getItuZoneDataSat($location_list, $postdata) { $bindings=[]; - $sql = "SELECT distinct col_ituz FROM " . $this->config->item('table_name') . " thcv + $sql = "SELECT thcv.col_ituz, 'SAT' as col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv where station_id in (" . $location_list . ") and col_ituz <= 90 and col_ituz <> ''"; if ($postdata['mode'] != 'All') { @@ -120,106 +292,23 @@ class Itu extends CI_Model{ $bindings[]=$postdata['mode']; } - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); + if ($postdata['datefrom'] != NULL) { + $sql .= " and col_time_on >= ?"; + $bindings[]=$postdata['datefrom'] . ' 00:00:00'; + } - $sql .= $this->genfunctions->addQslToQuery($postdata); + if ($postdata['dateto'] != NULL) { + $sql .= " and col_time_on <= ?"; + $bindings[]=$postdata['dateto'] . ' 23:59:59'; + } + + $sql .= " and col_prop_mode = 'SAT'"; + + $sql .= " GROUP BY thcv.col_ituz"; $query = $this->db->query($sql,$bindings); return $query->result(); } - - /* - * Function gets worked and confirmed summary on each band on the active stationprofile - */ - function get_itu_summary($bands, $postdata, $location_list) { - foreach ($bands as $band) { - $worked = $this->getSummaryByBand($band, $postdata, $location_list); - $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); - $ituSummary['worked'][$band] = $worked[0]->count; - $ituSummary['confirmed'][$band] = $confirmed[0]->count; - } - - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); - - $ituSummary['worked']['Total'] = $workedTotal[0]->count; - $ituSummary['confirmed']['Total'] = $confirmedTotal[0]->count; - - return $ituSummary; - } - - function getSummaryByBand($band, $postdata, $location_list) { - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv"; - - $sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0'; - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode = ?"; - $bindings[]=$band; - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands('cq'); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - function getSummaryByBandConfirmed($band, $postdata, $location_list){ - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_ituz) as count FROM " . $this->config->item('table_name') . " thcv"; - - $sql .= " where station_id in (" . $location_list . ') and col_ituz <= 90 and col_ituz > 0'; - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode = ?"; - $bindings[]=$band; - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands('cq'); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $query = $this->db->query($sql, $bindings); - - return $query->result(); - } - } diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 678ce59ea..5fc9befc5 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -137,7 +137,7 @@ class Logbook_model extends CI_Model { empty($qso_data['continent']); if ($needs_dxcc_lookup) { - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); $dxcc = $dxccobj->dxcc_lookup(strtoupper(trim($callsign)), $datetime); } @@ -487,6 +487,8 @@ class Logbook_model extends CI_Model { if ($orbit != 'All' && $orbit != null) { $this->db->where("satellite.orbit", $orbit); } + } else { + $this->db->where("COL_PROP_MODE !=", "SAT"); } break; case 'IOTA': @@ -541,9 +543,29 @@ class Logbook_model extends CI_Model { break; case 'CQZone': $this->db->where('COL_CQZ', $searchphrase); + if ($band == 'SAT' && $type == 'CQZone') { + if ($sat != 'All' && $sat != null) { + $this->db->where("COL_SAT_NAME", $sat); + } + if ($orbit != 'All' && $orbit != null) { + $this->db->where("satellite.orbit", $orbit); + } + } else { + $this->db->where("COL_PROP_MODE !=", "SAT"); + } break; case 'ITU': $this->db->where('COL_ITUZ', $searchphrase); + if ($band == 'SAT' && $type == 'ITU') { + if ($sat != 'All' && $sat != null) { + $this->db->where("COL_SAT_NAME", $sat); + } + if ($orbit != 'All' && $orbit != null) { + $this->db->where("satellite.orbit", $orbit); + } + } else { + $this->db->where("COL_PROP_MODE !=", "SAT"); + } break; case 'WAS': $this->db->where('COL_STATE', $searchphrase); @@ -624,8 +646,28 @@ class Logbook_model extends CI_Model { $this->db->where('COL_DXCC', '339'); break; case 'WAPC': - $this->db->where('COL_STATE', $searchphrase); - $this->db->where('COL_DXCC', '318'); + if($searchphrase == 'HK'){ + $this->db->where('COL_DXCC', '321'); + } + else if($searchphrase == 'MO'){ + $this->db->where('COL_DXCC', '152'); + } + else if($searchphrase == 'TW'){ + $this->db->where_in('COL_DXCC', ['386', '505']); + } + else if($searchphrase == 'HI'){ + $this->db->group_start() + ->group_start() + ->where('COL_DXCC', '318') + ->where('COL_STATE', 'HI') + ->group_end() + ->or_where('COL_DXCC', '506') + ->group_end(); + } + else{ + $this->db->where('COL_STATE', $searchphrase); + $this->db->where('COL_DXCC', '318'); + } break; case 'QSLRDATE': $this->db->where('date(COL_QSLRDATE)=date(SYSDATE())'); @@ -777,7 +819,7 @@ class Logbook_model extends CI_Model { return $this->db->get($this->config->item('table_name')); } - public function get_dok($callsign) { + public function call_darc_dok($callsign) { $this->load->model('logbooks_model'); $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); $this->db->select('COL_DARC_DOK'); @@ -786,7 +828,13 @@ class Logbook_model extends CI_Model { $this->db->order_by("COL_TIME_ON", "desc"); $this->db->limit(1); - return $this->db->get($this->config->item('table_name')); + $query = $this->db->get($this->config->item('table_name')); + if ($query->num_rows() > 0) { + $data = $query->row(); + return $data->COL_DARC_DOK; + } else { + return NULL; + } } function add_qso($data, $skipexport = false, $batchmode = false) { @@ -1068,7 +1116,7 @@ class Logbook_model extends CI_Model { * $adif contains a line with the QSO in the ADIF format. QSO ends with an */ function push_qso_to_qrz($apikey, $adif, $replaceoption = false) { - $url = 'http://logbook.qrz.com/api'; // TODO: Move this to database + $url = 'https://logbook.qrz.com/api'; // TODO: Move this to database $post_data['KEY'] = $apikey; $post_data['ACTION'] = 'INSERT'; @@ -1207,57 +1255,75 @@ class Logbook_model extends CI_Model { function upload_amsat_status($data) { $sat_name = ''; - if ($data['COL_SAT_NAME'] == 'AO-7') { - if ($data['COL_BAND'] == '2m' && $data['COL_BAND_RX'] == '10m') { - $sat_name = 'AO-7[A]'; - } - if ($data['COL_BAND'] == '70cm' && $data['COL_BAND_RX'] == '2m') { - $sat_name = 'AO-7[B]'; - } - } else if ($data['COL_SAT_NAME'] == 'QO-100') { - $sat_name = 'QO-100_NB'; - } else if ($data['COL_SAT_NAME'] == 'AO-92') { - if ($data['COL_BAND'] == '70cm' && $data['COL_BAND_RX'] == '2m') { - $sat_name = 'AO-92_U/v'; - } - if ($data['COL_BAND'] == '23cm' && $data['COL_BAND_RX'] == '2m') { - $sat_name = 'AO-92_L/v'; - } - } else if ($data['COL_SAT_NAME'] == 'AO-95') { - if ($data['COL_BAND'] == '70cm' && $data['COL_BAND_RX'] == '2m') { - $sat_name = 'AO-95_U/v'; - } - if ($data['COL_BAND'] == '23cm' && $data['COL_BAND_RX'] == '2m') { - $sat_name = 'AO-95_L/v'; - } - } else if ($data['COL_SAT_NAME'] == 'PO-101') { - if ($data['COL_MODE'] == 'PKT') { - $sat_name = 'PO-101[APRS]'; - } else { - $sat_name = 'PO-101[FM]'; - } - } else if ($data['COL_SAT_NAME'] == 'FO-118') { - if ($data['COL_BAND'] == '2m') { - if ($data['COL_MODE'] == 'FM') { - $sat_name = 'FO-118[V/u FM]'; - } else if ($data['COL_MODE'] == 'SSB') { - $sat_name = 'FO-118[V/u]'; + switch ($data['COL_SAT_NAME']) { + case 'AO-7': + if ($data['COL_BAND'] == '2m' && $data['COL_BAND_RX'] == '10m') { + $sat_name = 'AO-7_[V/a]'; } - } else if ($data['COL_BAND'] == '15m') { - $sat_name = 'FO-118[H/u]'; - } - } else if ($data['COL_SAT_NAME'] == 'ARISS' || $data['COL_SAT_NAME'] == 'ISS') { - if ($data['COL_MODE'] == 'FM') { - $sat_name = 'ISS-FM'; - } else if ($data['COL_MODE'] == 'PKT') { - $sat_name = 'ISS-DATA'; - } - } else if ($data['COL_SAT_NAME'] == 'CAS-3H') { - $sat_name = 'LilacSat-2'; - } else if (preg_match('/TEV2-[1-9]/', ($data['COL_SAT_NAME'] ?? ''))) { - $sat_name = str_replace('TEV2-', 'TEVEL2-', ($data['COL_SAT_NAME'] ?? '')); - } else { - $sat_name = ($data['COL_SAT_NAME'] ?? ''); + if ($data['COL_BAND'] == '70cm' && $data['COL_BAND_RX'] == '2m') { + $sat_name = 'AO-7_[U/v]'; + } + break; + case 'QO-100': + $sat_name = 'QO-100_[NB]'; + break; + case 'PO-101': + if ($data['COL_MODE'] == 'FM') { + $sat_name = 'PO-101_[FM]'; + } else if ($data['COL_MODE'] == 'PKT') { + $sat_name = 'PO-101_[APRS]'; + } + break; + case 'ARISS': + case 'ISS': + if ($data['COL_MODE'] == 'FM') { + $sat_name = 'ISS_[FM]'; + } else if ($data['COL_MODE'] == 'PKT') { + $sat_name = 'ISS_[APRS]'; + } + break; + case 'CAS-3H': + $sat_name = 'CAS-3H_[FM]'; + break; + case 'AO-73': + $sat_name = 'AO-73_[U/v]'; + break; + case 'AO-91': + $sat_name = 'AO-91_[FM]'; + break; + case 'AO-123': + $sat_name = 'AO-123_[FM]'; + break; + case 'FO-29': + $sat_name = 'FO-29_[V/u]'; + break; + case 'IO-86': + $sat_name = 'IO-86_[FM]'; + break; + case 'JO-97': + $sat_name = 'JO-97_[U/v]'; + break; + case 'NO-44': + $sat_name = 'NO-44_[APRS]'; + break; + case 'RS-44': + $sat_name = 'RS-44_[V/u]'; + break; + case 'SO-125': + $sat_name = 'SO-125_[FM]'; + break; + case 'SO-50': + $sat_name = 'SO-50_[FM]'; + break; + case 'SONATE2': + if ($data['COL_MODE'] == 'PKT') { + $sat_name = 'SONATE-2_[APRS]'; + } else { + $sat_name = 'SONATE-2_[SSTV]'; + } + break; + default: + return; } $amsat_source_grid = ''; if (array_key_exists('COL_MY_GRIDSQUARE', $data)) { @@ -1753,65 +1819,6 @@ class Logbook_model extends CI_Model { return $data; } - /* Callsign QRA */ - function call_qra($callsign) { - $this->db->select('COL_CALL, COL_GRIDSQUARE, COL_TIME_ON'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_GRIDSQUARE != \"\""; - - $this->db->where($where); - - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - $callsign = ""; - if ($query->num_rows() > 0) { - $data = $query->row(); - $callsign = strtoupper($data->COL_GRIDSQUARE); - } - - return $callsign; - } - - function call_name($callsign) { - $this->db->select('COL_CALL, COL_NAME, COL_TIME_ON'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_NAME != \"\""; - - $this->db->where($where); - - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - $name = ""; - if ($query->num_rows() > 0) { - $data = $query->row(); - $name = $data->COL_NAME; - } - - return $name; - } - - function call_email($callsign) { - $this->db->select('COL_CALL, COL_EMAIL, COL_TIME_ON'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - $email = ""; - if ($query->num_rows() > 0) { - $data = $query->row(); - $email = $data->COL_EMAIL; - } - - return $email; - } function times_worked($callsign) { $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); @@ -1837,148 +1844,97 @@ class Logbook_model extends CI_Model { return $times_worked; } - function call_qslvia($callsign) { - $this->db->select('COL_CALL, COL_QSL_VIA, COL_TIME_ON'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_QSL_VIA != \"\""; - $this->db->where($where); + public function get_callsign_all_info($callsign) { + $table_name = $this->config->item('table_name'); + $user_id = $this->session->userdata('user_id'); + + $sql = " + SELECT + COL_NAME, + COL_GRIDSQUARE, + COL_QTH, + COL_IOTA, + COL_EMAIL, + COL_QSL_VIA, + COL_STATE, + COL_CNTY, + COL_ITUZ, + COL_CQZ + FROM {$table_name} + INNER JOIN station_profile ON station_profile.station_id = {$table_name}.station_id + WHERE COL_CALL = ? + AND station_profile.user_id = ? + ORDER BY COL_TIME_ON DESC + LIMIT 10 + "; + + $query = $this->db->query($sql, array($callsign, $user_id)); + + $result = array( + 'name' => '', + 'qra' => '', + 'qth' => '', + 'iota' => '', + 'email' => '', + 'qslvia' => '', + 'state' => '', + 'us_county' => '', + 'ituz' => '', + 'cqz' => '' + ); - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - $qsl_via = ""; if ($query->num_rows() > 0) { - $data = $query->row(); - $qsl_via = $data->COL_QSL_VIA; + // Iterate through results to find first non-empty value for each field + foreach ($query->result() as $data) { + if (empty($result['name']) && !empty($data->COL_NAME)) { + $result['name'] = $data->COL_NAME; + } + if (empty($result['qra']) && !empty($data->COL_GRIDSQUARE)) { + $result['qra'] = strtoupper($data->COL_GRIDSQUARE); + } + if (empty($result['qth']) && !empty($data->COL_QTH)) { + $result['qth'] = $data->COL_QTH; + } + if (empty($result['iota']) && !empty($data->COL_IOTA)) { + $result['iota'] = $data->COL_IOTA; + } + if (empty($result['email']) && !empty($data->COL_EMAIL)) { + $result['email'] = $data->COL_EMAIL; + } + if (empty($result['qslvia']) && !empty($data->COL_QSL_VIA)) { + $result['qslvia'] = $data->COL_QSL_VIA; + } + if (empty($result['state']) && !empty($data->COL_STATE)) { + $result['state'] = $data->COL_STATE; + } + if (empty($result['us_county']) && !empty($data->COL_CNTY)) { + // Special case: extract county after comma + $cnty = $data->COL_CNTY; + if (strpos($cnty, ',') !== false) { + $result['us_county'] = substr($cnty, (strpos($cnty, ',') + 1)); + } else { + $result['us_county'] = $cnty; + } + } + if (empty($result['ituz']) && !empty($data->COL_ITUZ)) { + $result['ituz'] = $data->COL_ITUZ; + } + if (empty($result['cqz']) && !empty($data->COL_CQZ)) { + $result['cqz'] = $data->COL_CQZ; + } + + // Early exit if all fields are populated + if (!empty($result['name']) && !empty($result['qra']) && !empty($result['qth']) && + !empty($result['iota']) && !empty($result['email']) && !empty($result['qslvia']) && + !empty($result['state']) && !empty($result['us_county']) && + !empty($result['ituz']) && !empty($result['cqz'])) { + break; + } + } } - return $qsl_via; - } - - function call_state($callsign) { - $this->db->select('COL_CALL, COL_STATE'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_STATE != \"\""; - - $this->db->where($where); - - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - $qsl_state = ""; - if ($query->num_rows() > 0) { - $data = $query->row(); - $qsl_state = $data->COL_STATE; - } - - return $qsl_state; - } - - function call_us_county($callsign) { - $this->db->select('COL_CALL, COL_CNTY'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_CNTY != \"\""; - - $this->db->where($where); - - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - if ($query->num_rows() > 0) { - $data = $query->row(); - $qsl_county = $data->COL_CNTY; - $qsl_county = substr($qsl_county, (strpos($qsl_county, ',') + 1)); - return $qsl_county; - } else { - return NULL; - } - } - - function call_ituzone($callsign) { - $this->db->select('COL_CALL, COL_ITUZ'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_ITUZ != \"\""; - - $this->db->where($where); - - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - if ($query->num_rows() > 0) { - $data = $query->row(); - $qsl_ituz = $data->COL_ITUZ; - return $qsl_ituz; - } else { - return NULL; - } - } - - function call_cqzone($callsign) { - $this->db->select('COL_CALL, COL_CQZ'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_CQZ != \"\""; - - $this->db->where($where); - - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - if ($query->num_rows() > 0) { - $data = $query->row(); - $qsl_cqz = $data->COL_CQZ; - return $qsl_cqz; - } else { - return NULL; - } - } - - function call_qth($callsign) { - $this->db->select('COL_CALL, COL_QTH, COL_TIME_ON'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $where = "COL_QTH != \"\""; - - $this->db->where($where); - - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - $name = ""; - if ($query->num_rows() > 0) { - $data = $query->row(); - $name = $data->COL_QTH; - } - - return $name; - } - - function call_iota($callsign) { - $this->db->select('COL_CALL, COL_IOTA, COL_TIME_ON'); - $this->db->join('station_profile', 'station_profile.station_id = ' . $this->config->item('table_name') . '.station_id'); - $this->db->where('COL_CALL', $callsign); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $this->db->order_by("COL_TIME_ON", "desc"); - $this->db->limit(1); - $query = $this->db->get($this->config->item('table_name')); - $name = ""; - if ($query->num_rows() > 0) { - $data = $query->row(); - $name = $data->COL_IOTA; - } - - return $name; + return $result; } /* Return QSO Info */ @@ -2761,16 +2717,6 @@ class Logbook_model extends CI_Model { // Load cache driver for file caching $cache_enabled = $this->config->item('enable_dxcluster_file_cache_worked') === true; - // Gets already loaded in dxcluster controller - // - // if ($cache_enabled && !isset($this->cache)) { - // $this->load->driver('cache', [ - // 'adapter' => $this->config->item('cache_adapter') ?? 'file', - // 'backup' => $this->config->item('cache_backup') ?? 'file', - // 'key_prefix' => $this->config->item('cache_key_prefix') ?? '' - // ]); - // } - // Cache TTL in seconds (15 minutes = 900 seconds) $cache_ttl = 900; @@ -2826,7 +2772,7 @@ class Logbook_model extends CI_Model { $cache_key = "{$logbook_ids_key}|call|{$callsign}"; // Check in-memory cache first - if (!isset($this->spot_status_cache[$cache_key])) { + if (!array_key_exists($cache_key, $this->spot_status_cache)) { // Check file cache if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_call_key($logbook_ids_key, $callsign); @@ -2845,7 +2791,7 @@ class Logbook_model extends CI_Model { foreach (array_keys($dxccs) as $dxcc) { $cache_key = "{$logbook_ids_key}|dxcc|{$dxcc}"; - if (!isset($this->spot_status_cache[$cache_key])) { + if (!array_key_exists($cache_key, $this->spot_status_cache)) { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_dxcc_key($logbook_ids_key, $dxcc); $cached_data = $this->cache->get($file_cache_key); @@ -2861,7 +2807,7 @@ class Logbook_model extends CI_Model { foreach (array_keys($continents) as $cont) { $cache_key = "{$logbook_ids_key}|cont|{$cont}"; - if (!isset($this->spot_status_cache[$cache_key])) { + if (!array_key_exists($cache_key, $this->spot_status_cache)) { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_cont_key($logbook_ids_key, $cont); $cached_data = $this->cache->get($file_cache_key); @@ -2893,84 +2839,48 @@ class Logbook_model extends CI_Model { $dxccs_array = array_keys($dxccs_to_query); $continents_array = array_keys($continents_to_query); - // Split into two queries for performance: worked (faster) and confirmed (pre-filtered) - $worked_queries = []; - $confirmed_queries = []; - $worked_bind_params = []; - $confirmed_bind_params = []; + // OPTIMIZATION: Use ONE query instead of two (worked + confirmed) + $combined_queries = []; + $bind_params = []; if (!empty($callsigns_array)) { $callsigns_placeholders = implode(',', array_fill(0, count($callsigns_array), '?')); - // Query 1: Get all worked combinations - // Index: idx_HRD_COL_CALL_station_id (station_id, COL_CALL, COL_TIME_ON) - $worked_queries[] = " - SELECT 'call' as type, COL_CALL as identifier, COL_BAND as band, COL_MODE as mode + // Single query with conditional aggregation for worked AND confirmed + $combined_queries[] = " + SELECT 'call' as type, COL_CALL as identifier, COL_BAND as band, COL_MODE as mode, 1 as worked, MAX(CASE WHEN ({$qsl_where}) THEN 1 ELSE 0 END) as confirmed FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_CALL_station_id) WHERE station_id IN ({$station_ids_placeholders}) AND COL_CALL IN ({$callsigns_placeholders}) GROUP BY COL_CALL, COL_BAND, COL_MODE "; - $worked_bind_params = array_merge($worked_bind_params, $logbooks_locations_array, $callsigns_array); - - // Query 2: Get only confirmed combinations (pre-filtered by QSL status) - $confirmed_queries[] = " - SELECT 'call' as type, COL_CALL as identifier, COL_BAND as band, COL_MODE as mode - FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_CALL_station_id) - WHERE station_id IN ({$station_ids_placeholders}) - AND COL_CALL IN ({$callsigns_placeholders}) - AND ({$qsl_where}) - GROUP BY COL_CALL, COL_BAND, COL_MODE - "; - $confirmed_bind_params = array_merge($confirmed_bind_params, $logbooks_locations_array, $callsigns_array); + $bind_params = array_merge($bind_params, $logbooks_locations_array, $callsigns_array); } if (!empty($dxccs_array)) { $dxccs_placeholders = implode(',', array_fill(0, count($dxccs_array), '?')); - // Index: idx_HRD_COL_DXCC_station_id (station_id, COL_DXCC, COL_TIME_ON) - $worked_queries[] = " - SELECT 'dxcc' as type, COL_DXCC as identifier, COL_BAND as band, COL_MODE as mode + $combined_queries[] = " + SELECT 'dxcc' as type, COL_DXCC as identifier, COL_BAND as band, COL_MODE as mode, 1 as worked, MAX(CASE WHEN ({$qsl_where}) THEN 1 ELSE 0 END) as confirmed FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_DXCC_station_id) WHERE station_id IN ({$station_ids_placeholders}) AND COL_DXCC IN ({$dxccs_placeholders}) GROUP BY COL_DXCC, COL_BAND, COL_MODE "; - $worked_bind_params = array_merge($worked_bind_params, $logbooks_locations_array, $dxccs_array); - - $confirmed_queries[] = " - SELECT 'dxcc' as type, COL_DXCC as identifier, COL_BAND as band, COL_MODE as mode - FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_COL_DXCC_station_id) - WHERE station_id IN ({$station_ids_placeholders}) - AND COL_DXCC IN ({$dxccs_placeholders}) - AND ({$qsl_where}) - GROUP BY COL_DXCC, COL_BAND, COL_MODE - "; - $confirmed_bind_params = array_merge($confirmed_bind_params, $logbooks_locations_array, $dxccs_array); + $bind_params = array_merge($bind_params, $logbooks_locations_array, $dxccs_array); } if (!empty($continents_array)) { $continents_placeholders = implode(',', array_fill(0, count($continents_array), '?')); - // No specific index for COL_CONT - let MySQL optimizer choose - $worked_queries[] = " - SELECT 'cont' as type, COL_CONT as identifier, COL_BAND as band, COL_MODE as mode + $combined_queries[] = " + SELECT 'cont' as type, COL_CONT as identifier, COL_BAND as band, COL_MODE as mode, 1 as worked, MAX(CASE WHEN ({$qsl_where}) THEN 1 ELSE 0 END) as confirmed FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_station_id) WHERE station_id IN ({$station_ids_placeholders}) AND COL_CONT IN ({$continents_placeholders}) GROUP BY COL_CONT, COL_BAND, COL_MODE "; - $worked_bind_params = array_merge($worked_bind_params, $logbooks_locations_array, $continents_array); - - $confirmed_queries[] = " - SELECT 'cont' as type, COL_CONT as identifier, COL_BAND as band, COL_MODE as mode - FROM {$this->config->item('table_name')} FORCE INDEX (idx_HRD_station_id) - WHERE station_id IN ({$station_ids_placeholders}) - AND COL_CONT IN ({$continents_placeholders}) - AND ({$qsl_where}) - GROUP BY COL_CONT, COL_BAND, COL_MODE - "; - $confirmed_bind_params = array_merge($confirmed_bind_params, $logbooks_locations_array, $continents_array); + $bind_params = array_merge($bind_params, $logbooks_locations_array, $continents_array); } - if (empty($worked_queries)) { + if (empty($combined_queries)) { // Nothing to query, use cached data foreach ($spots_by_callsign as $callsign => $callsign_spots) { foreach ($callsign_spots as $spot) { @@ -2980,134 +2890,92 @@ class Logbook_model extends CI_Model { return $statuses; } - // Execute worked query (faster - no QSL filter) - $worked_sql = implode(' UNION ALL ', $worked_queries); - $worked_query = $this->db->query($worked_sql, $worked_bind_params); - $worked_results = $worked_query->result_array(); - - // Execute confirmed query (only scans confirmed QSOs) - $confirmed_sql = implode(' UNION ALL ', $confirmed_queries); - $confirmed_query = $this->db->query($confirmed_sql, $confirmed_bind_params); - $confirmed_results = $confirmed_query->result_array(); + $combined_sql = implode(' UNION ALL ', $combined_queries); + $query = $this->db->query($combined_sql, $bind_params); + $results = $query->result_array(); // Build comprehensive cache structure: identifier => [band|mode => status] - // This allows reusing data for ALL spots with same callsign/dxcc/continent - $call_data = []; // callsign => [band|mode => ['worked' => bool, 'confirmed' => bool]] - $dxcc_data = []; // dxcc => [band|mode => ['worked' => bool, 'confirmed' => bool]] - $cont_data = []; // continent => [band|mode => ['worked' => bool, 'confirmed' => bool]] + // Pre-allocate arrays to avoid repeated checks + $call_data = []; + $dxcc_data = []; + $cont_data = []; - // Process worked results first (mark as worked, not confirmed) - foreach ($worked_results as $row) { + // Pre-build mode mapping lookup table to avoid repeated function calls + $mode_cache = []; + + // Process ALL results in one pass (worked AND confirmed combined) + foreach ($results as $row) { $identifier = $row['identifier']; $band = $row['band']; $logbook_mode = $row['mode']; + $worked = (bool)$row['worked']; + $confirmed = (bool)$row['confirmed']; - // Convert logbook mode to spot mode category (phone/cw/digi) - $qrgmode = @$this->Modes->get_qrgmode_from_mode($logbook_mode); - $qrgmode_lower = strtolower($qrgmode ?? ''); + // Check mode cache first to avoid redundant conversions + if (!isset($mode_cache[$logbook_mode])) { + // Convert logbook mode to spot mode category (phone/cw/digi) + $qrgmode = @$this->Modes->get_qrgmode_from_mode($logbook_mode); + $qrgmode_lower = strtolower($qrgmode ?? ''); - // Check if qrgmode is valid (phone/cw/data/digi), otherwise use fallback - if (!empty($qrgmode) && in_array($qrgmode_lower, ['phone', 'cw', 'data', 'digi'])) { - $mode_category = $qrgmode_lower; - if ($mode_category === 'data') { - $mode_category = 'digi'; - } - } else { - // Fallback to hardcoded mapping - $logbook_mode_upper = strtoupper($logbook_mode ?? ''); - if (in_array($logbook_mode_upper, ['SSB', 'FM', 'AM', 'PHONE'])) { - $mode_category = 'phone'; - } elseif (in_array($logbook_mode_upper, ['CW'])) { - $mode_category = 'cw'; + // Check if qrgmode is valid (phone/cw/data/digi), otherwise use fallback + if (!empty($qrgmode) && in_array($qrgmode_lower, ['phone', 'cw', 'data', 'digi'])) { + $mode_cache[$logbook_mode] = ($qrgmode_lower === 'data') ? 'digi' : $qrgmode_lower; } else { - $mode_category = 'digi'; + // Fallback to hardcoded mapping + $logbook_mode_upper = strtoupper($logbook_mode); + if (in_array($logbook_mode_upper, ['SSB', 'FM', 'AM', 'PHONE'])) { + $mode_cache[$logbook_mode] = 'phone'; + } elseif ($logbook_mode_upper === 'CW') { + $mode_cache[$logbook_mode] = 'cw'; + } else { + $mode_cache[$logbook_mode] = 'digi'; + } } } + $mode_category = $mode_cache[$logbook_mode]; $band_mode_key = $band . '|' . $mode_category; + // Store in appropriate data structure if ($row['type'] === 'call') { if (!isset($call_data[$identifier])) { $call_data[$identifier] = []; } $call_data[$identifier][$band_mode_key] = [ - 'worked' => true, - 'confirmed' => false + 'worked' => $worked, + 'confirmed' => $confirmed ]; } elseif ($row['type'] === 'dxcc') { if (!isset($dxcc_data[$identifier])) { $dxcc_data[$identifier] = []; } $dxcc_data[$identifier][$band_mode_key] = [ - 'worked' => true, - 'confirmed' => false + 'worked' => $worked, + 'confirmed' => $confirmed ]; } elseif ($row['type'] === 'cont') { if (!isset($cont_data[$identifier])) { $cont_data[$identifier] = []; } $cont_data[$identifier][$band_mode_key] = [ - 'worked' => true, - 'confirmed' => false + 'worked' => $worked, + 'confirmed' => $confirmed ]; } } - // Now overlay confirmed results (update confirmed flag to true) - foreach ($confirmed_results as $row) { - $identifier = $row['identifier']; - $band = $row['band']; - $logbook_mode = $row['mode']; - - // Convert logbook mode to spot mode category (phone/cw/digi) - $qrgmode = @$this->Modes->get_qrgmode_from_mode($logbook_mode); - $qrgmode_lower = strtolower($qrgmode ?? ''); - - // Check if qrgmode is valid (phone/cw/data/digi), otherwise use fallback - if (!empty($qrgmode) && in_array($qrgmode_lower, ['phone', 'cw', 'data', 'digi'])) { - $mode_category = $qrgmode_lower; - if ($mode_category === 'data') { - $mode_category = 'digi'; - } - } else { - // Fallback to hardcoded mapping - $logbook_mode_upper = strtoupper($logbook_mode ?? ''); - if (in_array($logbook_mode_upper, ['SSB', 'FM', 'AM', 'PHONE'])) { - $mode_category = 'phone'; - } elseif (in_array($logbook_mode_upper, ['CW'])) { - $mode_category = 'cw'; - } else { - $mode_category = 'digi'; - } - } - - $band_mode_key = $band . '|' . $mode_category; - - if ($row['type'] === 'call') { - if (isset($call_data[$identifier][$band_mode_key])) { - $call_data[$identifier][$band_mode_key]['confirmed'] = true; - } - } elseif ($row['type'] === 'dxcc') { - if (isset($dxcc_data[$identifier][$band_mode_key])) { - $dxcc_data[$identifier][$band_mode_key]['confirmed'] = true; - } - } elseif ($row['type'] === 'cont') { - if (isset($cont_data[$identifier][$band_mode_key])) { - $cont_data[$identifier][$band_mode_key]['confirmed'] = true; - } - } - } - // Cache the complete data for each callsign/dxcc/continent (both in-memory and file) + // OPTIMIZATION: Batch file cache writes if enabled to reduce I/O operations + $file_cache_batch = []; + // Store worked items with their band/mode data foreach ($call_data as $callsign => $data) { $cache_key = "{$logbook_ids_key}|call|{$callsign}"; $this->spot_status_cache[$cache_key] = $data; - // Save to file cache for 15 minutes if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_call_key($logbook_ids_key, $callsign); - $this->cache->save($file_cache_key, $data, $cache_ttl); + $file_cache_batch[$file_cache_key] = $data; } } foreach ($dxcc_data as $dxcc => $data) { @@ -3116,7 +2984,7 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_dxcc_key($logbook_ids_key, $dxcc); - $this->cache->save($file_cache_key, $data, $cache_ttl); + $file_cache_batch[$file_cache_key] = $data; } } foreach ($cont_data as $cont => $data) { @@ -3125,9 +2993,11 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_cont_key($logbook_ids_key, $cont); - $this->cache->save($file_cache_key, $data, $cache_ttl); + $file_cache_batch[$file_cache_key] = $data; } - } // Cache NOT WORKED items (negative results) - store empty arrays + } + + // Cache NOT WORKED items (negative results) - store empty arrays // This prevents redundant database queries for callsigns/dxccs/continents not in logbook foreach ($callsigns_array as $callsign) { if (!isset($call_data[$callsign])) { @@ -3136,7 +3006,7 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_call_key($logbook_ids_key, $callsign); - $this->cache->save($file_cache_key, [], $cache_ttl); + $file_cache_batch[$file_cache_key] = []; } } } @@ -3147,7 +3017,7 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_dxcc_key($logbook_ids_key, $dxcc); - $this->cache->save($file_cache_key, [], $cache_ttl); + $file_cache_batch[$file_cache_key] = []; } } } @@ -3158,9 +3028,15 @@ class Logbook_model extends CI_Model { if ($cache_enabled) { $file_cache_key = $this->dxclustercache->get_worked_cont_key($logbook_ids_key, $cont); - $this->cache->save($file_cache_key, [], $cache_ttl); + $file_cache_batch[$file_cache_key] = []; } } + } + + if ($cache_enabled && !empty($file_cache_batch)) { + foreach ($file_cache_batch as $key => $data) { + $this->cache->save($key, $data, $cache_ttl); + } } // Now map all spots to their status using cached data (query results + previously cached) foreach ($spots_by_callsign as $callsign => $callsign_spots) { foreach ($callsign_spots as $spot) { @@ -4783,12 +4659,15 @@ class Logbook_model extends CI_Model { } function lotw_last_qsl_date($user_id) { - $sql = "SELECT MAX(COALESCE(COL_LOTW_QSLRDATE, '1900-01-01 00:00:00')) MAXDATE + $sql = "SELECT MAX(COALESCE(COL_LOTW_QSLRDATE, '1900-01-01 00:00:00')) MAXDATE, COUNT(1) as QSOS FROM " . $this->config->item('table_name') . " INNER JOIN station_profile ON (" . $this->config->item('table_name') . ".station_id = station_profile.station_id) - WHERE station_profile.user_id=" . $user_id . " and COL_LOTW_QSLRDATE is not null"; + WHERE station_profile.user_id=" . $user_id; $query = $this->db->query($sql); $row = $query->row(); + if ($row->QSOS == 0) { + return '2100-01-01 00:00:00.000'; // No QSO in Log, set since to future, otherwise this user blocks download + } if ($row->MAXDATE != null) { return $row->MAXDATE; } @@ -5031,14 +4910,14 @@ class Logbook_model extends CI_Model { $dxcc = array($record['dxcc'] ?? '', $entity['name'] ?? '', $entity['cqz'] ?? '', $entity['cont'] ?? ''); } else { if ($this->dxcc_object == null) { - $this->dxcc_object = new Dxcc(null); + $this->dxcc_object = new Dxcc(); } $dxcclookupresult = $this->dxcc_object->dxcc_lookup($record['call'], date('Y-m-d', strtotime($record['qso_date']))); $dxcc = array($dxcclookupresult['adif'], $dxcclookupresult['entity'], $dxcclookupresult['cqz'], $dxcclookupresult['cont']); } } else { if ($this->dxcc_object == null) { - $this->dxcc_object = new Dxcc(null); + $this->dxcc_object = new Dxcc(); } $dxcclookupresult = $this->dxcc_object->dxcc_lookup($record['call'], date('Y-m-d', strtotime($record['qso_date']))); $dxcc = array($dxcclookupresult['adif'], $dxcclookupresult['entity'], $dxcclookupresult['cqz'], $dxcclookupresult['cont']); @@ -6025,7 +5904,10 @@ class Logbook_model extends CI_Model { $this->db->group_end(); // Only add check for unsupported modes if not empty. Otherwise SQL will fail if (!empty($this->config->item('lotw_unsupported_prop_modes'))) { - $this->db->where_not_in('COL_PROP_MODE', $this->config->item('lotw_unsupported_prop_modes')); + $this->db->group_start(); + $this->db->where('COL_PROP_MODE', null); + $this->db->or_where_not_in('COL_PROP_MODE', $this->config->item('lotw_unsupported_prop_modes')); + $this->db->group_end(); } $this->db->where('COL_TIME_ON >=', $start_date); $this->db->where('COL_TIME_ON <=', $end_date); diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 41b187ff0..a2fd23a87 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -534,6 +534,11 @@ class Logbookadvanced_model extends CI_Model { $conditions[] = "coalesce(COL_DISTANCE, '') = ''"; } + if ($searchCriteria['duration'] !== '*' && $searchCriteria['duration'] !== '') { + $conditions[] = "TIMESTAMPDIFF(MINUTE, COL_TIME_ON, COL_TIME_OFF) >= ?"; + $binding[] = $searchCriteria['duration']; + } + if (($searchCriteria['propmode'] ?? '') == 'None') { $conditions[] = "(trim(COL_PROP_MODE) = '' OR COL_PROP_MODE is null)"; } elseif ($searchCriteria['propmode'] !== '') { @@ -947,6 +952,10 @@ class Logbookadvanced_model extends CI_Model { $updatedData['COL_CQZ'] = $callbook['cqz']; $updated = true; } + if (!empty($callbook['darc_dok']) && empty($qso['COL_DARC_DOK'])) { + $updatedData['COL_DARC_DOK'] = strtoupper($callbook['darc_dok']); + $updated = true; + } if (empty($qso['COL_CONT'])) { $updatedData['COL_CONT'] = $this->logbook_model->getContinent($callbook['dxcc']); $updated = true; @@ -974,12 +983,10 @@ class Logbookadvanced_model extends CI_Model { $modes = array(); - $this->db->select('distinct col_mode, coalesce(col_submode, "") col_submode', FALSE); - $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); - $this->db->where('station_profile.user_id', $this->session->userdata('user_id')); - $this->db->order_by('col_mode, col_submode', 'ASC'); + $sql = "SELECT distinct col_mode, col_submode FROM " . $this->config->item('table_name') . " thcv + JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? ORDER BY col_mode, col_submode"; - $query = $this->db->get($this->config->item('table_name')); + $query = $this->db->query($sql, array($this->session->userdata('user_id'))); foreach($query->result() as $mode){ if ($mode->col_submode == null || $mode->col_submode == "") { @@ -994,23 +1001,23 @@ class Logbookadvanced_model extends CI_Model { function get_worked_bands() { // get all worked slots from database - $sql = "SELECT distinct LOWER(`COL_BAND`) as `COL_BAND` FROM `".$this->config->item('table_name')."` thcv + $sql = "SELECT distinct `COL_BAND` as `COL_BAND` FROM `".$this->config->item('table_name')."` thcv JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND COL_PROP_MODE != \"SAT\" ORDER BY col_band"; $data = $this->db->query($sql, array($this->session->userdata('user_id'))); $worked_slots = array(); foreach($data->result() as $row){ - array_push($worked_slots, $row->COL_BAND); + array_push($worked_slots, strtolower($row->COL_BAND)); } - $sql = "SELECT distinct LOWER(`COL_PROP_MODE`) as `COL_PROP_MODE` FROM `".$this->config->item('table_name')."` thcv + $sql = "SELECT count(*) as count FROM `".$this->config->item('table_name')."` thcv JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND COL_PROP_MODE = \"SAT\""; $SAT_data = $this->db->query($sql, array($this->session->userdata('user_id'))); foreach($SAT_data->result() as $row){ - array_push($worked_slots, strtoupper($row->COL_PROP_MODE)); + array_push($worked_slots, 'SAT'); } usort( @@ -1031,7 +1038,7 @@ class Logbookadvanced_model extends CI_Model { function get_worked_sats() { // get all worked sats from database $sql = "SELECT distinct col_sat_name FROM ".$this->config->item('table_name')." thcv - JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? and coalesce(col_sat_name, '') <> '' ORDER BY col_sat_name"; + JOIN station_profile on thcv.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND col_sat_name IS NOT NULL AND col_sat_name != '' ORDER BY col_sat_name"; $data = $this->db->query($sql, array($this->session->userdata('user_id'))); @@ -1121,19 +1128,29 @@ class Logbookadvanced_model extends CI_Model { $potaRef = $station_profile->station_pota ?? ''; $sig = $station_profile->station_sig ?? ''; $sigInfo = $station_profile->station_sig_info ?? ''; + $gridsquare = ''; + $vuccGrids = ''; + + if (strpos($station_profile->station_gridsquare, ',') !== false) { + $vuccGrids = $station_profile->station_gridsquare ?? ''; + } else { + $gridsquare = $station_profile->station_gridsquare ?? ''; + } $sql = "UPDATE ".$this->config->item('table_name')." JOIN station_profile ON ". $this->config->item('table_name').".station_id = station_profile.station_id" . " SET " . $this->config->item('table_name').".STATION_ID = ?" . - ", " . $this->config->item('table_name').".COL_MY_IOTA = ?" . - ", " . $this->config->item('table_name').".COL_MY_SOTA_REF = ?" . - ", " . $this->config->item('table_name').".COL_MY_WWFF_REF = ?" . - ", " . $this->config->item('table_name').".COL_MY_POTA_REF = ?" . - ", " . $this->config->item('table_name').".COL_MY_SIG = ?" . - ", " . $this->config->item('table_name').".COL_MY_SIG_INFO = ?" . - ", " . $this->config->item('table_name').".COL_STATION_CALLSIGN = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_IOTA = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_SOTA_REF = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_WWFF_REF = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_POTA_REF = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_SIG = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_SIG_INFO = ?" . + ", " . $this->config->item('table_name') . ".COL_STATION_CALLSIGN = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_GRIDSQUARE = ?" . + ", " . $this->config->item('table_name') . ".COL_MY_VUCC_GRIDS = ?" . " WHERE " . $this->config->item('table_name').".col_primary_key in ? and station_profile.user_id = ?"; - $query = $this->db->query($sql, array($stationid, $iotaRef, $sotaRef, $wwffRef, $potaRef, $sig, $sigInfo, $stationCallsign, json_decode($ids, true), $this->session->userdata('user_id'))); + $query = $this->db->query($sql, array($stationid, $iotaRef, $sotaRef, $wwffRef, $potaRef, $sig, $sigInfo, $stationCallsign, $gridsquare, $vuccGrids, json_decode($ids, true), $this->session->userdata('user_id'))); } else if ($column == 'COL_BAND') { if ($value == '') return; @@ -1156,8 +1173,8 @@ class Logbookadvanced_model extends CI_Model { $vucc_value = null; } else { if(!$this->load->is_loaded('Qra')) { - $this->load->library('Qra'); - } + $this->load->library('Qra'); + } $latlng=$this->qra->qra2latlong(trim(xss_clean($value) ?? '')); if ($latlng[1] ?? '--' != '--') { if (strpos(trim(xss_clean($value) ?? ''), ',') !== false) { @@ -1608,7 +1625,7 @@ class Logbookadvanced_model extends CI_Model { ]; } - public function check_missing_continent() { + public function check_missing_continent($stationid) { // get all records with no COL_CONT $this->db->trans_start(); $sql = "UPDATE " . $this->config->item('table_name') . " @@ -1619,14 +1636,21 @@ class Logbookadvanced_model extends CI_Model { AND station_profile.user_id = ? AND col_dxcc != 0"; - $query = $this->db->query($sql, array($this->session->userdata('user_id'))); + $bindings[] = $this->session->userdata('user_id'); + + if ($stationid != 'All') { + $sql .= " AND " . $this->config->item('table_name') . ".station_id = ?"; + $bindings[] = $stationid; + } + + $query = $this->db->query($sql, $bindings); $result = $this->db->affected_rows(); $this->db->trans_complete(); return $result; } - public function update_distances_batch() { + public function update_distances_batch($stationid) { ini_set('memory_limit', '-1'); $sql = "SELECT COL_ANT_PATH, COL_DISTANCE, COL_PRIMARY_KEY, station_profile.station_gridsquare, COL_GRIDSQUARE, COL_VUCC_GRIDS FROM " . $this->config->item('table_name') . " @@ -1637,7 +1661,14 @@ class Logbookadvanced_model extends CI_Model { AND (COL_DISTANCE = '' or COL_DISTANCE is NULL) and COL_GRIDSQUARE != station_gridsquare"; - $query = $this->db->query($sql, array($this->session->userdata('user_id'))); + $bindings[] = $this->session->userdata('user_id'); + + if ($stationid != 'All') { + $sql .= " AND " . $this->config->item('table_name') . ".station_id = ?"; + $bindings[] = $stationid; + } + + $query = $this->db->query($sql, $bindings); $recordcount = $query->num_rows(); @@ -1673,26 +1704,26 @@ class Logbookadvanced_model extends CI_Model { return $count; } - public function runCheckDb($type) { + public function runCheckDb($type, $stationid = null) { switch ($type) { case 'checkdistance': - return $this->check_missing_distance(); + return $this->check_missing_distance($stationid); case 'checkcontinent': - return $this->check_qsos_missing_continent(); + return $this->check_qsos_missing_continent($stationid); case 'checkdxcc': - return $this->check_dxcc(); + return $this->check_dxcc($stationid); case 'checkstate': - return $this->check_missing_state(); + return $this->check_missing_state($stationid); case 'checkgrids': - return $this->getMissingGridQsos(); + return $this->getMissingGridQsos($stationid); case 'checkincorrectgridsquares': - return $this->getIncorrectGridsquares(); + return $this->getIncorrectGridsquares($stationid); case 'checkincorrectcqzones': - return $this->getIncorrectCqZones(); + return $this->getIncorrectCqZones($stationid); case 'checkincorrectituzones': - return $this->getIncorrectItuZones(); + return $this->getIncorrectItuZones($stationid); case 'checkiota': - return $this->checkIota(); + return $this->checkIota($stationid); default: return null; } @@ -1701,7 +1732,7 @@ class Logbookadvanced_model extends CI_Model { * Get list of QSOs with gridsquares that do not match the gridsquares listed for the DXCC. * The data comes from the TQSL published Gridsquare list for DXCCs. */ - public function getIncorrectGridsquares() { + public function getIncorrectGridsquares($stationid) { $sqlcheck = "select count(*) as count from vuccgrids";; $querycheck = $this->db->query($sqlcheck); $rowcheck = $querycheck->row(); @@ -1730,59 +1761,83 @@ class Logbookadvanced_model extends CI_Model { and exists (select 1 from vuccgrids where adif = thcv.col_dxcc) and thcv.col_dxcc > 0 and thcv.col_gridsquare is not null - and thcv.col_gridsquare <> '' - order by station_profile_name, col_time_on desc"; + and thcv.col_gridsquare <> ''"; $bindings[] = [$this->session->userdata('user_id')]; + if ($stationid != 'All') { + $sql .= " and thcv.station_id = ?"; + $bindings[] = $stationid; + } + + $sql .= " order by station_profile_name, col_time_on desc"; + $query = $this->db->query($sql, $bindings); return $query->result(); } - public function check_qsos_missing_continent() { - $sql = "select count(*) as count from " . $this->config->item('table_name') . " - join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id - where user_id = ? - and (coalesce(col_cont, '') = '' or col_cont not in ('AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA')) - and col_dxcc != 0"; + public function check_qsos_missing_continent($stationid) { + $sql = "select count(*) as count from " . $this->config->item('table_name') . " thcv + join station_profile on thcv.station_id = station_profile.station_id + where station_profile.user_id = ? + and (coalesce(thcv.col_cont, '') = '' or thcv.col_cont not in ('AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA')) + and thcv.col_dxcc != 0"; $bindings[] = [$this->session->userdata('user_id')]; + if ($stationid != 'All') { + $sql .= " and thcv.station_id = ?"; + $bindings[] = $stationid; + } + $query = $this->db->query($sql, $bindings); return $query->result(); } - public function check_missing_distance() { - $sql = "select count(*) as count from " . $this->config->item('table_name') . " - join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id - where user_id = ? - AND (COL_DISTANCE = '' or COL_DISTANCE is NULL) - and COL_GRIDSQUARE != station_gridsquare - and COL_GRIDSQUARE is NOT NULL - and COL_GRIDSQUARE != ''"; + public function check_missing_distance($stationid) { + $sql = "select count(*) as count from " . $this->config->item('table_name') . " thcv + join station_profile on thcv.station_id = station_profile.station_id + where station_profile.user_id = ? + AND (thcv.COL_DISTANCE = '' or thcv.COL_DISTANCE is NULL) + and thcv.COL_GRIDSQUARE != station_profile.station_gridsquare + and thcv.COL_GRIDSQUARE is NOT NULL + and thcv.COL_GRIDSQUARE != ''"; $bindings[] = [$this->session->userdata('user_id')]; + if ($stationid != 'All') { + $sql .= " and thcv.station_id = ?"; + $bindings[] = $stationid; + } + + $query = $this->db->query($sql, $bindings); return $query->result(); } - public function check_missing_state() { + public function check_missing_state($stationid) { $this->load->library('Geojson'); $supported_dxcc_list = $this->geojson->getSupportedDxccs(); $supported_dxcc_array = array_keys($supported_dxcc_list); - $sql = "select count(*) as count, col_dxcc, dxcc_entities.name as dxcc_name, dxcc_entities.prefix from " . $this->config->item('table_name') . " - join station_profile on " . $this->config->item('table_name') . ".station_id = station_profile.station_id - join dxcc_entities on " . $this->config->item('table_name') . ".col_dxcc = dxcc_entities.adif - where user_id = ? and coalesce(col_state, '') = '' - and col_dxcc in (" . implode(',', array_map('intval', $supported_dxcc_array)) . ") - and length(col_gridsquare) >= 6 - group by col_dxcc, dxcc_entities.name, dxcc_entities.prefix - order by dxcc_entities.prefix"; + $sql = "select count(*) as count, col_dxcc, dxcc_entities.name as dxcc_name, dxcc_entities.prefix from " . $this->config->item('table_name') . " thcv + join station_profile on thcv.station_id = station_profile.station_id + join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif + where station_profile.user_id = ? and coalesce(thcv.col_state, '') = '' + and thcv.col_dxcc in (" . implode(',', array_map('intval', $supported_dxcc_array)) . ") + and length(thcv.col_gridsquare) >= 6"; $bindings[] = [$this->session->userdata('user_id')]; + if ($stationid != 'All') { + $sql .= " and thcv.station_id = ?"; + $bindings[] = $stationid; + } + + $sql .= " group by col_dxcc, dxcc_entities.name, dxcc_entities.prefix + order by dxcc_entities.prefix"; + + $query = $this->db->query($sql, $bindings); return $query->result(); } @@ -1793,7 +1848,7 @@ class Logbookadvanced_model extends CI_Model { * @param int $dxcc DXCC entity number for which to fix states * @return array Result array with success, dxcc_name, dxcc_number, state_code, skipped */ - function fixStateBatch($dxcc) { + function fixStateBatch($dxcc, $stationid) { $this->load->library('Geojson', $dxcc); // Get QSO data @@ -1801,11 +1856,20 @@ class Logbookadvanced_model extends CI_Model { FROM " . $this->config->item('table_name') . " qsos JOIN station_profile ON qsos.station_id = station_profile.station_id LEFT JOIN dxcc_entities d ON qsos.COL_DXCC = d.adif - WHERE qsos.COL_DXCC = ? AND station_profile.user_id = ? + WHERE qsos.COL_DXCC = ? + AND station_profile.user_id = ? AND (qsos.COL_STATE IS NULL OR qsos.COL_STATE = '') AND LENGTH(COALESCE(qsos.COL_GRIDSQUARE, '')) >= 6"; - $query = $this->db->query($sql, [$dxcc, $this->session->userdata('user_id')]); + $bindings[] = $dxcc; + $bindings[] = $this->session->userdata('user_id'); + + if ($stationid != 'All') { + $sql .= " and qsos.station_id = ?"; + $bindings[] = $stationid; + } + + $query = $this->db->query($sql, $bindings); if ($query->num_rows() === 0) { return [ @@ -1888,48 +1952,36 @@ class Logbookadvanced_model extends CI_Model { ]; } - function getStateListQsos($dxcc) { + function getStateListQsos($dxcc, $stationid) { $sql = "SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_state, col_gridsquare, d.name as dxcc_name, station_profile.station_profile_name FROM " . $this->config->item('table_name') . " qsos JOIN station_profile ON qsos.station_id = station_profile.station_id LEFT JOIN dxcc_entities d ON qsos.COL_DXCC = d.adif WHERE qsos.COL_DXCC = ? AND station_profile.user_id = ? AND (qsos.COL_STATE IS NULL OR qsos.COL_STATE = '') - AND LENGTH(COALESCE(qsos.COL_GRIDSQUARE, '')) >= 6 - ORDER BY COL_TIME_ON DESC"; + AND LENGTH(COALESCE(qsos.COL_GRIDSQUARE, '')) >= 6"; - $query = $this->db->query($sql, [$dxcc, $this->session->userdata('user_id')]); + $bindings[] = $dxcc; + $bindings[] = $this->session->userdata('user_id'); + + if ($stationid != 'All') { + $sql .= " and qsos.station_id = ?"; + $bindings[] = $stationid; + } + + $sql .= " ORDER BY COL_TIME_ON DESC"; + + $query = $this->db->query($sql, $bindings); return $query->result(); } - /* - Function to run batch fixes on the logbook. - Used in dbtools section. - */ - function batchFix($type) { - switch ($type) { - case 'distance': - return $this->update_distances_batch(); - case 'continent': - return $this->check_missing_continent(); - case 'cqzones': - return $this->fixCqZones(); - case 'ituzones': - return $this->fixItuZones(); - case 'grids': - return $this->check_missing_grid(); - default: - return null; - } - } - /* Another function moved from update to the advanced logbook, to be used in the dbtools section. It did not have filter on user or location. This function will check all QSOs with missing grid square and try to fill them using the callbook lookup. */ - public function check_missing_grid() { - $result = $this->getMissingGridQsos(); + public function check_missing_grid($stationid = 'All') { + $result = $this->getMissingGridQsos($stationid); $count = 0; $batch_updates = []; @@ -1972,15 +2024,23 @@ class Logbookadvanced_model extends CI_Model { return $count; } - public function getMissingGridQsos() { + public function getMissingGridQsos($stationid) { $sql = "SELECT col_primary_key, col_call, col_time_on, col_mode, col_submode, col_band, col_state, col_gridsquare, station_profile.station_profile_name FROM " . $this->config->item('table_name') . " qsos JOIN station_profile ON qsos.station_id = station_profile.station_id WHERE station_profile.user_id = ? AND (qsos.COL_GRIDSQUARE IS NULL OR qsos.COL_GRIDSQUARE = '') - AND (qsos.COL_VUCC_GRIDS IS NULL OR qsos.COL_VUCC_GRIDS = '') - ORDER BY COL_TIME_ON DESC limit 150"; + AND (qsos.COL_VUCC_GRIDS IS NULL OR qsos.COL_VUCC_GRIDS = '')"; - $query = $this->db->query($sql, [$this->session->userdata('user_id')]); + $params[] = $this->session->userdata('user_id'); + + if ($stationid != 'All') { + $sql .= " and qsos.station_id = ?"; + $params[] = $stationid; + } + + $sql .= " ORDER BY COL_TIME_ON DESC limit 150"; + + $query = $this->db->query($sql, $params); return $query->result(); } @@ -1988,17 +2048,17 @@ class Logbookadvanced_model extends CI_Model { /* Check all QSOs DXCC against current DXCC database */ - public function check_dxcc() { + public function check_dxcc($stationid) { ini_set('memory_limit', '-1'); $i = 0; $result = array(); - $callarray = $this->getQsos(); + $callarray = $this->getQsos($stationid); // Starting clock time in seconds $start_time = microtime(true); - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); foreach ($callarray->result() as $call) { @@ -2040,13 +2100,19 @@ class Logbookadvanced_model extends CI_Model { return $data; } - function getQsos() { + function getQsos($stationid) { $sql = 'select distinct col_country, col_sat_name, col_call, col_dxcc, date(col_time_on) date, col_mode, col_submode, col_band, col_lotw_qsl_rcvd, station_profile.station_profile_name, col_primary_key from ' . $this->config->item('table_name') . ' join station_profile on ' . $this->config->item('table_name') . '.station_id = station_profile.station_id where station_profile.user_id = ?'; + $params[] = $this->session->userdata('user_id'); + if ($stationid != 'All') { + $sql .= " and " . $this->config->item('table_name') . ".station_id = ?"; + $params[] = $stationid; + } + $sql .= ' order by station_profile.station_profile_name asc, date desc'; $query = $this->db->query($sql, $params); @@ -2062,7 +2128,7 @@ class Logbookadvanced_model extends CI_Model { $r = $this->db->query($sql, array($this->session->userdata('user_id'), json_decode($ids, true))); $count = 0; - $dxccobj = new Dxcc(null); + $dxccobj = new Dxcc(); if ($r->num_rows() > 0) { //query dxcc_prefixes $sql = "update " . $this->config->item('table_name') . " set COL_COUNTRY = ?, COL_DXCC = ? where COL_PRIMARY_KEY = ?"; @@ -2084,7 +2150,7 @@ class Logbookadvanced_model extends CI_Model { return $result; } - function getIncorrectCqZones() { + function getIncorrectCqZones($stationid) { if(!clubaccess_check(9)) return; $sql = "select *, (select group_concat(distinct cqzone order by cqzone separator ', ') from dxcc_master where countrycode = thcv.col_dxcc and cqzone <> '' order by cqzone asc) as correctcqzone @@ -2096,6 +2162,11 @@ class Logbookadvanced_model extends CI_Model { $params[] = $this->session->userdata('user_id'); + if ($stationid != 'All') { + $sql .= " and thcv.station_id = ?"; + $params[] = $stationid; + } + $sql .= " order by station_profile.station_profile_name, thcv.col_time_on desc limit 5000"; @@ -2104,7 +2175,7 @@ class Logbookadvanced_model extends CI_Model { return $query->result(); } - function getIncorrectItuZones() { + function getIncorrectItuZones($stationid) { if(!clubaccess_check(9)) return; $sql = "select *, (select group_concat(distinct ituzone order by ituzone separator ', ') from dxcc_master where countrycode = thcv.col_dxcc and ituzone <> '' order by ituzone asc) as correctituzone @@ -2116,6 +2187,11 @@ class Logbookadvanced_model extends CI_Model { $params[] = $this->session->userdata('user_id'); + if ($stationid != 'All') { + $sql .= " and thcv.station_id = ?"; + $params[] = $stationid; + } + $sql .= " order by station_profile.station_profile_name, thcv.col_time_on desc limit 5000"; @@ -2124,9 +2200,9 @@ class Logbookadvanced_model extends CI_Model { return $query->result(); } - public function checkIota() { - $result1 = $this->checkSingleIota(); - $result2 = $this->checkMultiDxccIota(); + public function checkIota($stationid) { + $result1 = $this->checkSingleIota($stationid); + $result2 = $this->checkMultiDxccIota($stationid); $merged = array_merge($result1, $result2); @@ -2150,20 +2226,26 @@ class Logbookadvanced_model extends CI_Model { * These are excluded by not having a dxccid or dxccid = 0 * */ - public function checkSingleIota() { + public function checkSingleIota($stationid) { $sql = "select col_primary_key, col_time_on, col_call, col_sat_name, col_band, col_gridsquare, col_dxcc, col_country, station_profile_name, col_lotw_qsl_rcvd, col_mode, col_submode, col_iota, iotadxcc.name as correctdxcc - from " . $this->config->item('table_name') . " thcv - join station_profile on thcv.station_id = station_profile.station_id - join dxcc_entities on dxcc_entities.adif = thcv.COL_DXCC - join iota on thcv.col_iota = iota.tag - join dxcc_entities iotadxcc on iota.dxccid = iotadxcc.adif - where station_profile.user_id = ? - and thcv.col_dxcc > 0 - and thcv.col_dxcc <> iota.dxccid - and iota.dxccid > 0 - order by station_profile_name, col_time_on desc"; + FROM " . $this->config->item('table_name') . " thcv + JOIN station_profile on thcv.station_id = station_profile.station_id + JOIN dxcc_entities on dxcc_entities.adif = thcv.COL_DXCC + JOIN iota on thcv.col_iota = iota.tag + JOIN dxcc_entities iotadxcc on iota.dxccid = iotadxcc.adif + WHERE station_profile.user_id = ? + AND thcv.col_dxcc > 0 + AND thcv.col_dxcc <> iota.dxccid + AND iota.dxccid > 0"; - $bindings[] = [$this->session->userdata('user_id')]; + $bindings[] = $this->session->userdata('user_id'); + + if ($stationid != 'All') { + $sql .= " AND thcv.station_id = ?"; + $bindings[] = $stationid; + } + + $sql .= " order by station_profile_name, col_time_on desc"; $query = $this->db->query($sql, $bindings); return $query->result(); @@ -2173,7 +2255,7 @@ class Logbookadvanced_model extends CI_Model { * Get list of QSOs with multi-DXCC IOTA tags where the DXCC prefix doesn't match * any of the valid prefixes for that IOTA. */ - public function checkMultiDxccIota() { + public function checkMultiDxccIota($stationid) { // Define IOTA tags that span multiple DXCCs with their valid prefixes $multiDxccIotas = [ 'AS-004' => [215, 283], // 5B4, ZC4 @@ -2195,6 +2277,8 @@ class Logbookadvanced_model extends CI_Model { $allResults = []; foreach ($multiDxccIotas as $iotaTag => $adifList) { + $bindings = []; // Reset bindings for each iteration + // Build IN clause for SQL $adifListStr = implode(',', $adifList); @@ -2212,10 +2296,18 @@ class Logbookadvanced_model extends CI_Model { JOIN iota ON thcv.col_iota = iota.tag WHERE station_profile.user_id = ? AND thcv.col_iota = ? - AND dxcc_entities.adif NOT IN ($adifListStr) - ORDER BY station_profile_name, col_time_on DESC"; + AND dxcc_entities.adif NOT IN ($adifListStr)"; + + $bindings[] = $this->session->userdata('user_id'); + $bindings[] = $iotaTag; + + if ($stationid != 'All') { + $sql .= " AND thcv.station_id = ?"; + $bindings[] = $stationid; + } + + $sql .= " ORDER BY station_profile_name, col_time_on DESC"; - $bindings = [$this->session->userdata('user_id'), $iotaTag]; $query = $this->db->query($sql, $bindings); $results = $query->result(); diff --git a/application/models/Logbooks_model.php b/application/models/Logbooks_model.php index df69861ec..b114c2139 100644 --- a/application/models/Logbooks_model.php +++ b/application/models/Logbooks_model.php @@ -188,6 +188,13 @@ class Logbooks_model extends CI_Model { } } + function public_slug_belongs_to_user($slug, $user_id) { + $this->db->where('public_slug', $this->security->xss_clean($slug)); + $this->db->where('user_id', $user_id); + $query = $this->db->get('station_logbooks'); + return $query->num_rows() > 0; + } + function is_public_slug_available($slug) { // Clean public_slug $clean_slug = $this->security->xss_clean($slug); diff --git a/application/models/Pota.php b/application/models/Pota.php index 89718fb9b..b7b0c51e1 100644 --- a/application/models/Pota.php +++ b/application/models/Pota.php @@ -27,7 +27,6 @@ class Pota extends CI_Model { function ham_of_note($callsign) { $this->db->where('callsign', $callsign); $this->db->order_by('description asc'); - $this->db->limit(1); return $this->db->get('hams_of_note'); } diff --git a/application/models/Stationsetup_model.php b/application/models/Stationsetup_model.php index c1e4f16f0..a0b80d22c 100644 --- a/application/models/Stationsetup_model.php +++ b/application/models/Stationsetup_model.php @@ -304,6 +304,7 @@ class Stationsetup_model extends CI_Model { // Data for user_options $optiondata = [ 'eqsl_default_qslmsg' => xss_clean($loc['eqsl_default_qslmsg'] ?? null), + 'link_active_logbook' => (empty($loc['link_active_logbook']) ? 'false' : 'true') ]; // Insert or update location in DB @@ -369,6 +370,15 @@ class Stationsetup_model extends CI_Model { $this->load->model('user_options_model'); $this->user_options_model->set_option('eqsl_default_qslmsg', 'key_station_id', array($location_id => $optiondata['eqsl_default_qslmsg']),($user_id ?? $this->session->userdata('user_id'))); } + if ($optiondata['link_active_logbook'] === 'true') { + $this->load->model('logbooks_model'); + $active_logbook = $this->logbooks_model->find_active_station_logbook_from_userid($dbdata['user_id']); + if(!empty($active_logbook)) { + // Can't use create_logbook_location_link if coming from API (No session->user_id, fails access check) + $data = array('station_logbook_id' => $active_logbook, 'station_location_id' => $location_id); + $this->db->insert('station_logbooks_relationship', $data); + } + } } return 1; diff --git a/application/models/Timeline_model.php b/application/models/Timeline_model.php index ed0df9ef9..f23a231d1 100644 --- a/application/models/Timeline_model.php +++ b/application/models/Timeline_model.php @@ -26,8 +26,11 @@ class Timeline_model extends CI_Model { public function get_timeline_dxcc($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew) { $binding = []; - $sql = "select min(date(COL_TIME_ON)) date, prefix, dxcc_entities.name as dxcc_name, end, adif from " - .$this->config->item('table_name'). " thcv + $sql = "SELECT * FROM ("; + $sql .= "SELECT COL_TIME_ON AS date, prefix, dxcc_entities.name as dxcc_name, end, adif, "; + $sql .= "COL_SAT_NAME AS sat_name, "; + $sql .= "ROW_NUMBER() OVER (PARTITION BY adif ORDER BY COL_TIME_ON ASC) AS rn "; + $sql .= "FROM ".$this->config->item('table_name'). " thcv join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif where station_id in (" . $location_list . ") and col_dxcc > 0 "; @@ -64,8 +67,9 @@ class Timeline_model extends CI_Model { $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog, $qrz); - $sql .= " group by col_dxcc - order by date desc"; + $sql .= ") ranked "; + $sql .= "WHERE rn = 1 "; + $sql .= "ORDER BY date DESC;"; $query = $this->db->query($sql, $binding); return $query->result(); @@ -73,8 +77,11 @@ class Timeline_model extends CI_Model { public function get_timeline_waja($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew) { $binding = []; - $sql = "select min(date(COL_TIME_ON)) date, col_state from " - .$this->config->item('table_name'). " thcv + $sql = "SELECT * FROM ("; + $sql .= "SELECT COL_TIME_ON AS date, col_state, "; + $sql .= "COL_SAT_NAME AS sat_name, "; + $sql .= "ROW_NUMBER() OVER (PARTITION BY COL_STATE ORDER BY COL_TIME_ON ASC) AS rn "; + $sql .= "FROM ".$this->config->item('table_name'). " thcv where station_id in (" . $location_list . ")"; if ($band == 'SAT') { // Left for compatibility reasons @@ -113,8 +120,10 @@ class Timeline_model extends CI_Model { $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog, $qrz); - $sql .= " group by col_state - order by date desc"; + $sql .= ") ranked "; + $sql .= "WHERE rn = 1 "; + + $sql .= "ORDER BY date DESC;"; $query = $this->db->query($sql, $binding); @@ -123,8 +132,11 @@ class Timeline_model extends CI_Model { public function get_timeline_was($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew) { $binding = []; - $sql = "select min(date(COL_TIME_ON)) date, col_state from " - .$this->config->item('table_name'). " thcv + $sql = "SELECT * FROM ("; + $sql .= "SELECT COL_TIME_ON AS date, col_state, "; + $sql .= "COL_SAT_NAME AS sat_name, "; + $sql .= "ROW_NUMBER() OVER (PARTITION BY COL_STATE ORDER BY COL_TIME_ON ASC) AS rn "; + $sql .= "FROM ".$this->config->item('table_name'). " thcv where station_id in (" . $location_list . ")"; if ($band == 'SAT') { // Left for compatibility reasons @@ -163,8 +175,9 @@ class Timeline_model extends CI_Model { $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog, $qrz); - $sql .= " group by col_state - order by date desc"; + $sql .= ") ranked "; + $sql .= "WHERE rn = 1 "; + $sql .= "ORDER BY date DESC;"; $query = $this->db->query($sql, $binding); @@ -173,8 +186,11 @@ class Timeline_model extends CI_Model { public function get_timeline_iota($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew) { $binding = []; - $sql = "select min(date(COL_TIME_ON)) date, col_iota, name, prefix from " - .$this->config->item('table_name'). " thcv + $sql = "SELECT * FROM ("; + $sql .= "SELECT COL_TIME_ON AS date, col_iota, name, prefix, "; + $sql .= "COL_SAT_NAME AS sat_name, "; + $sql .= "ROW_NUMBER() OVER (PARTITION BY col_iota ORDER BY COL_TIME_ON ASC) AS rn "; + $sql .= "FROM ".$this->config->item('table_name'). " thcv join iota on thcv.col_iota = iota.tag where station_id in (" . $location_list . ")"; @@ -212,8 +228,10 @@ class Timeline_model extends CI_Model { $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog, $qrz); - $sql .= " and col_iota <> '' group by col_iota, name, prefix - order by date desc"; + $sql .= " and col_iota <> ''"; + $sql .= ") ranked "; + $sql .= "WHERE rn = 1 "; + $sql .= "ORDER BY date DESC;"; $query = $this->db->query($sql, $binding); @@ -222,8 +240,11 @@ class Timeline_model extends CI_Model { public function get_timeline_waz($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew) { $binding = []; - $sql = "select min(date(COL_TIME_ON)) date, col_cqz from " - .$this->config->item('table_name'). " thcv + $sql = "SELECT * FROM ("; + $sql .= "SELECT COL_TIME_ON AS date, col_cqz, "; + $sql .= "COL_SAT_NAME AS sat_name, "; + $sql .= "ROW_NUMBER() OVER (PARTITION BY col_cqz ORDER BY COL_TIME_ON ASC) AS rn "; + $sql .= "FROM ".$this->config->item('table_name'). " thcv where station_id in (" . $location_list . ")"; if ($band == 'SAT') { // Left for compatibility reasons @@ -260,8 +281,10 @@ class Timeline_model extends CI_Model { $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog, $qrz); - $sql .= " and col_cqz <> '' group by col_cqz - order by date desc"; + $sql .= " and col_cqz <> ''"; + $sql .= ") ranked "; + $sql .= "WHERE rn = 1 "; + $sql .= "ORDER BY date DESC;"; $query = $this->db->query($sql, $binding); @@ -317,7 +340,7 @@ class Timeline_model extends CI_Model { $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer'); $this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer'); - $this->db->join('satellite', 'satellite.name = '.$this->config->item('table_name').'.COL_SAT_NAME', 'left outer'); + $this->db->join('satellite', $this->config->item('table_name').'.COL_PROP_MODE = "SAT" AND '.$this->config->item('table_name').'.COL_SAT_NAME = COALESCE(NULLIF(satellite.name, ""), NULLIF(satellite.displayname, ""))', 'left outer'); if ($band == 'SAT') { // Left for compatibility reasons $this->db->where('col_prop_mode', $band); @@ -354,7 +377,7 @@ class Timeline_model extends CI_Model { case 'iota': $this->db->where('COL_IOTA', $querystring); break; case 'waz': $this->db->where('COL_CQZ', $querystring); break; case 'vucc': $this->db->group_start(); $this->db->like('COL_GRIDSQUARE', $querystring); $this->db->or_like('COL_VUCC_GRIDS',$querystring); $this->db->group_end();break; - case 'waja': $this->db->where('COL_STATE', $querystring); $this->db->where('COL_DXCC','339'); break; + case 'waja': $this->db->where('COL_STATE', $querystring); $this->db->where('COL_DXCC','339'); break; } $this->db->order_by('COL_TIME_ON', 'DESC'); @@ -369,7 +392,8 @@ class Timeline_model extends CI_Model { foreach ($col_gridsquare as $grid) { $timeline[] = array( 'gridsquare' => $grid->gridsquare, - 'date' => $grid->date); + 'date' => $grid->date, + 'sat_name' => $grid->sat_name ?? ''); } $col_vucc_grids = $this->get_vucc_grids($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew); @@ -383,7 +407,8 @@ class Timeline_model extends CI_Model { // Doesn't exist, add new entry $timeline[] = array( 'gridsquare' => $grid_four, - 'date' => $gridSplit->date + 'date' => $gridSplit->date, + 'sat_name' => $gridSplit->sat_name ?? '' ); } else { // Exists, check the date @@ -403,9 +428,12 @@ class Timeline_model extends CI_Model { public function get_gridsquare($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew) { $binding = []; - $sql = "select min(COL_TIME_ON) date, upper(substring(col_gridsquare, 1, 4)) gridsquare from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; + $sql = "SELECT * FROM ("; + $sql .= "SELECT COL_TIME_ON AS date, upper(substring(COL_GRIDSQUARE, 1, 4)) AS gridsquare, "; + $sql .= "COL_SAT_NAME AS sat_name, "; + $sql .= "ROW_NUMBER() OVER (PARTITION BY upper(substring(COL_GRIDSQUARE, 1, 4)) ORDER BY COL_TIME_ON ASC) AS rn "; + $sql .= "FROM ".$this->config->item('table_name'). " thcv + WHERE station_id IN (" . $location_list . ")"; if ($band == 'SAT') { // Left for compatibility reasons $sql .= " and col_prop_mode = ?"; @@ -440,8 +468,10 @@ class Timeline_model extends CI_Model { $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog, $qrz); - $sql .= " and col_gridsquare <> '' group by upper(substring(col_gridsquare, 1, 4)) - order by date desc"; + $sql .= " AND COL_GRIDSQUARE <> ''"; + $sql .= ") ranked "; + $sql .= "WHERE rn = 1 "; + $sql .= "ORDER BY date DESC;"; $query = $this->db->query($sql, $binding); @@ -450,9 +480,12 @@ class Timeline_model extends CI_Model { public function get_vucc_grids($band, $mode, $propmode, $location_list, $qsl, $lotw, $eqsl, $clublog, $year, $qrz, $onlynew) { $binding = []; - $sql = "select COL_TIME_ON as date, upper(col_vucc_grids) gridsquare from " - .$this->config->item('table_name'). " thcv - where station_id in (" . $location_list . ")"; + $sql = "SELECT * FROM ("; + $sql .= "SELECT COL_TIME_ON AS date, upper(COL_VUCC_GRIDS) AS gridsquare, "; + $sql .= "COL_SAT_NAME AS sat_name, "; + $sql .= "ROW_NUMBER() OVER (PARTITION BY upper(COL_VUCC_GRIDS) ORDER BY COL_TIME_ON ASC) AS rn "; + $sql .= "FROM ".$this->config->item('table_name'). " thcv + WHERE station_id IN (" . $location_list . ")"; if ($band == 'SAT') { // Left for compatibility reasons $sql .= " and col_prop_mode = ?"; @@ -487,7 +520,10 @@ class Timeline_model extends CI_Model { $sql .= $this->addQslToQuery($qsl, $lotw, $eqsl, $clublog, $qrz); - $sql .= " and col_vucc_grids <> ''"; + $sql .= " AND COL_VUCC_GRIDS <> ''"; + $sql .= ") ranked "; + $sql .= "WHERE rn = 1 "; + $sql .= "ORDER BY date DESC;"; $query = $this->db->query($sql, $binding); return $query->result(); diff --git a/application/models/User_model.php b/application/models/User_model.php index 34385a7e6..3fc0e422b 100644 --- a/application/models/User_model.php +++ b/application/models/User_model.php @@ -50,7 +50,7 @@ class User_Model extends CI_Model { // Returns all users with lotw details function get_all_lotw_users() { $this->db->where('user_lotw_name !=', null); - $this->db->where('user_lotw_name !=', ""); + $this->db->where('trim(user_lotw_name) !=', ""); $r = $this->db->get($this->config->item('auth_table')); return $r; } @@ -225,7 +225,7 @@ class User_Model extends CI_Model { $user_lotw_name, $user_lotw_password, $user_eqsl_name, $user_eqsl_password, $user_clublog_name, $user_clublog_password, $user_winkey, $on_air_widget_enabled, $on_air_widget_display_last_seen, $on_air_widget_show_only_most_recent_radio, $qso_widget_display_qso_time, $dashboard_banner, $dashboard_solar, $global_oqrs_text, $oqrs_grouped_search, - $oqrs_grouped_search_show_station_name, $oqrs_auto_matching, $oqrs_direct_auto_matching,$user_dxwaterfall_enable, $clubstation = 0) { + $oqrs_grouped_search_show_station_name, $oqrs_auto_matching, $oqrs_direct_auto_matching,$user_dxwaterfall_enable, $user_qso_show_map, $clubstation = 0) { // Check that the user isn't already used if(!$this->exists($username)) { $data = array( @@ -317,6 +317,7 @@ class User_Model extends CI_Model { $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'widget','qso','display_qso_time','".(xss_clean($qso_widget_display_qso_time ?? 'false'))."');"); $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'qso_db_search_priority','enable','boolean','".(xss_clean($user_qso_db_search_priority ?? 'Y'))."');"); $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $insert_id . ", 'dxwaterfall','enable','boolean','".xss_clean($user_dxwaterfall_enable ?? 'N')."');"); + $this->db->query("insert into user_options (user_id, option_type, option_name, option_key, option_value) values (?, 'qso_tab', 'map', 'show', ?)", [$insert_id, (int)(xss_clean($user_qso_show_map ?? 1))]); return OK; } else { return EUSERNAMEEXISTS; @@ -382,6 +383,8 @@ class User_Model extends CI_Model { $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'qso_tab','sig','show',".(xss_clean($fields['user_sig_to_qso_tab'] ?? 'off') == "on" ? 1 : 0).");"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'qso_tab','dok','show',".(xss_clean($fields['user_dok_to_qso_tab'] ?? 'off') == "on" ? 1 : 0).");"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'qso_tab','station','show',".(xss_clean($fields['user_station_to_qso_tab'] ?? 'off') == "on" ? 1 : 0).");"); + $this->db->query("replace INTO user_options (user_id, option_type, option_name, option_key, option_value) VALUES (?, 'qso_tab', 'map', 'show', ?)", [$fields['id'], (int)(xss_clean($fields['user_qso_show_map'] ?? 1))] + ); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'widget','on_air','enabled','".(xss_clean($fields['on_air_widget_enabled'] ?? 'false'))."');"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'widget','on_air','display_last_seen','".(xss_clean($fields['on_air_widget_display_last_seen'] ?? 'false'))."');"); $this->db->query("replace into user_options (user_id, option_type, option_name, option_key, option_value) values (" . $fields['id'] . ", 'widget','on_air','display_only_most_recent_radio','".(xss_clean($fields['on_air_widget_show_only_most_recent_radio'] ?? 'true'))."');"); diff --git a/application/models/Vucc.php b/application/models/Vucc.php index 4163de860..e31c3b532 100644 --- a/application/models/Vucc.php +++ b/application/models/Vucc.php @@ -27,69 +27,141 @@ class VUCC extends CI_Model * Builds the array to display worked/confirmed vucc on award page */ function fetchVucc($data) { - $totalGridConfirmed = array(); - $totalGridWorked = array(); + // Use associative arrays for O(1) lookups instead of O(n) in_array() + $totalGridWorked = []; + $totalGridConfirmed = []; + $workedGrids = []; + $confirmedGrids = []; - foreach($data['worked_bands'] as $band) { + // Create a lookup array for valid bands + $validBands = array_flip($data['worked_bands']); - // Getting all the worked grids - $col_gridsquare_worked = $this->get_vucc_summary($band, 'none'); + // Get combined data (2 queries instead of 4 per band) + $combinedData = $this->get_vucc_combined_data_all_bands(); + $combinedData2 = $this->get_vucc_combined_data_sat(); - $workedGridArray = array(); - foreach ($col_gridsquare_worked as $workedgrid) { - array_push($workedGridArray, $workedgrid['gridsquare']); - if(!in_array($workedgrid['gridsquare'], $totalGridWorked)){ - array_push($totalGridWorked, $workedgrid['gridsquare']); + // Process col_gridsquare data + if (!empty($combinedData['gridsquare'])) { + foreach ($combinedData['gridsquare'] as $row) { + $grid = $row['gridsquare']; + $band = $row['col_band']; + + // Skip if this band is not in our requested bands list + if (!isset($validBands[$band])) { + continue; } - } - $col_vucc_grids_worked = $this->get_vucc_summary_col_vucc($band, 'none'); + // Always add to worked + $totalGridWorked[$grid] = true; + if (!isset($workedGrids[$band][$grid])) { + $workedGrids[$band][$grid] = true; + } - foreach ($col_vucc_grids_worked as $gridSplit) { - $grids = explode(",", $gridSplit['col_vucc_grids']); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - - if(!in_array($grid_four, $workedGridArray)){ - array_push($workedGridArray, $grid_four); - } - - if(!in_array($grid_four, $totalGridWorked)){ - array_push($totalGridWorked, $grid_four); + // Add to confirmed if flagged + if ($row['confirmed']) { + $totalGridConfirmed[$grid] = true; + if (!isset($confirmedGrids[$band][$grid])) { + $confirmedGrids[$band][$grid] = true; } } } + } - // Getting all the confirmed grids - $col_gridsquare_confirmed = $this->get_vucc_summary($band, 'both'); + // Process col_vucc_grids data + if (!empty($combinedData['vucc_grids'])) { + foreach ($combinedData['vucc_grids'] as $row) { + $grids = explode(",", $row['col_vucc_grids']); + $band = $row['col_band']; - $confirmedGridArray = array(); - foreach ($col_gridsquare_confirmed as $confirmedgrid) { - array_push($confirmedGridArray, $confirmedgrid['gridsquare']); - if(!in_array($confirmedgrid['gridsquare'], $totalGridConfirmed)){ - array_push($totalGridConfirmed, $confirmedgrid['gridsquare']); + // Skip if this band is not in our requested bands list + if (!isset($validBands[$band])) { + continue; } - } - $col_vucc_grids_confirmed = $this->get_vucc_summary_col_vucc($band, 'both'); + foreach ($grids as $key) { + $grid_four = strtoupper(substr(trim($key), 0, 4)); - foreach ($col_vucc_grids_confirmed as $gridSplit) { - $grids = explode(",", $gridSplit['col_vucc_grids']); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - - if(!in_array($grid_four, $confirmedGridArray)){ - array_push($confirmedGridArray, $grid_four); + // Always add to worked + $totalGridWorked[$grid_four] = true; + if (!isset($workedGrids[$band][$grid_four])) { + $workedGrids[$band][$grid_four] = true; } - if(!in_array($grid_four, $totalGridConfirmed)){ - array_push($totalGridConfirmed, $grid_four); + // Add to confirmed if flagged + if ($row['confirmed']) { + $totalGridConfirmed[$grid_four] = true; + if (!isset($confirmedGrids[$band][$grid_four])) { + $confirmedGrids[$band][$grid_four] = true; + } } } } + } - $vuccArray[$band]['worked'] = count($workedGridArray); - $vuccArray[$band]['confirmed'] = count($confirmedGridArray); + // Process col_gridsquare data + if (!empty($combinedData2['gridsquare'])) { + foreach ($combinedData2['gridsquare'] as $row) { + $grid = $row['gridsquare']; + $band = $row['col_band']; + + // Skip if this band is not in our requested bands list + if (!isset($validBands[$band])) { + continue; + } + + // Always add to worked + $totalGridWorked[$grid] = true; + if (!isset($workedGrids[$band][$grid])) { + $workedGrids[$band][$grid] = true; + } + + // Add to confirmed if flagged + if ($row['confirmed']) { + $totalGridConfirmed[$grid] = true; + if (!isset($confirmedGrids[$band][$grid])) { + $confirmedGrids[$band][$grid] = true; + } + } + } + } + + // Process col_vucc_grids data + if (!empty($combinedData2['vucc_grids'])) { + foreach ($combinedData2['vucc_grids'] as $row) { + $grids = explode(",", $row['col_vucc_grids']); + $band = $row['col_band']; + + // Skip if this band is not in our requested bands list + if (!isset($validBands[$band])) { + continue; + } + + foreach ($grids as $key) { + $grid_four = strtoupper(substr(trim($key), 0, 4)); + + // Always add to worked + $totalGridWorked[$grid_four] = true; + if (!isset($workedGrids[$band][$grid_four])) { + $workedGrids[$band][$grid_four] = true; + } + + // Add to confirmed if flagged + if ($row['confirmed']) { + $totalGridConfirmed[$grid_four] = true; + if (!isset($confirmedGrids[$band][$grid_four])) { + $confirmedGrids[$band][$grid_four] = true; + } + } + } + } + } + + + // Build the result array with counts per band + $vuccArray = []; + foreach ($data['worked_bands'] as $band) { + $vuccArray[$band]['worked'] = isset($workedGrids[$band]) ? count($workedGrids[$band]) : 0; + $vuccArray[$band]['confirmed'] = isset($confirmedGrids[$band]) ? count($confirmedGrids[$band]) : 0; } $vuccArray['All']['worked'] = count($totalGridWorked); @@ -102,106 +174,86 @@ class VUCC extends CI_Model return $vuccArray; } - /* - * Gets the grid from col_vucc_grids - * $band = the band chosen - * $confirmationMethod - qsl, lotw or both, use anything else to skip confirmed + /* + * Makes a list of all gridsquares on chosen band with info about lotw and qsl + * Optimized to fetch all callsigns in a single query instead of one per grid */ - function get_vucc_summary_col_vucc($band, $confirmationMethod) { + function vucc_details($band, $type) { + // Get combined data for the specific band + $bandData = $this->get_vucc_band_data($band); - if (!$this->logbooks_locations_array) { - return null; + if (empty($bandData['gridsquare']) && empty($bandData['vucc_grids'])) { + return 0; } - $location_list = "'".implode("','",$this->logbooks_locations_array)."'"; + $vuccBand = []; - $sql = "select distinct col_vucc_grids - from " . $this->config->item('table_name') . - " where station_id in (" . $location_list . ")" . - " and col_vucc_grids <> '' "; + // Process col_gridsquare data + foreach ($bandData['gridsquare'] as $row) { + $grid = $row['gridsquare']; + $qsl = $row['qsl_confirmed'] ? 'Y' : ''; + $lotw = $row['lotw_confirmed'] ? 'Y' : ''; + $confirmed = $row['confirmed']; - if ($confirmationMethod == 'both') { - $sql .= " and (col_qsl_rcvd='Y' or col_lotw_qsl_rcvd='Y')"; - } - else if ($confirmationMethod == 'qsl') { - $sql .= " and col_qsl_rcvd='Y'"; - } - else if ($confirmationMethod == 'lotw') { - $sql .= " and col_lotw_qsl_rcvd='Y'"; - } + // Filter based on type + if ($type == 'worked' && $confirmed) { + continue; // Skip confirmed grids when showing only worked + } + if ($type == 'confirmed' && !$confirmed) { + continue; // Skip worked grids when showing only confirmed + } - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and col_prop_mode ='" . $band . "'"; + if (!isset($vuccBand[$grid])) { + $vuccBand[$grid]['qsl'] = $qsl; + $vuccBand[$grid]['lotw'] = $lotw; } else { - $sql .= " and col_prop_mode !='SAT'"; - $sql .= " and col_band ='" . $band . "'"; + // Update confirmation status if already exists + if ($qsl) $vuccBand[$grid]['qsl'] = $qsl; + if ($lotw) $vuccBand[$grid]['lotw'] = $lotw; } } - $query = $this->db->query($sql); - return $query->result_array(); - } + // Process col_vucc_grids data + foreach ($bandData['vucc_grids'] as $row) { + $grids = explode(",", $row['col_vucc_grids']); + $qsl = $row['qsl_confirmed'] ? 'Y' : ''; + $lotw = $row['lotw_confirmed'] ? 'Y' : ''; + $confirmed = $row['confirmed']; - /* - * Gets the grid from col_gridsquare - * $band = the band chosen - * $confirmationMethod - qsl, lotw or both, use anything else to skip confirmed - */ - function get_vucc_summary($band, $confirmationMethod) { - if (!$this->logbooks_locations_array) { - return null; - } + foreach ($grids as $key) { + $grid_four = strtoupper(substr(trim($key), 0, 4)); - $location_list = "'".implode("','",$this->logbooks_locations_array)."'"; + // Filter based on type + if ($type == 'worked' && $confirmed) { + continue; // Skip confirmed grids when showing only worked + } + if ($type == 'confirmed' && !$confirmed) { + continue; // Skip worked grids when showing only confirmed + } - $sql = "select distinct upper(substring(log.col_gridsquare, 1, 4)) gridsquare - from " . $this->config->item('table_name') . " log". - " inner join bands b on (b.band = log.col_band) ". - " where log.station_id in (" . $location_list . ")" . - " and log.col_gridsquare <> ''"; + if (!isset($vuccBand[$grid_four])) { + $vuccBand[$grid_four]['qsl'] = $qsl; + $vuccBand[$grid_four]['lotw'] = $lotw; + } else { + // Update confirmation status if already exists + if ($qsl) $vuccBand[$grid_four]['qsl'] = $qsl; + if ($lotw) $vuccBand[$grid_four]['lotw'] = $lotw; + } + } + } - if (($band == 'SAT') || ($band == 'All')) { - $sql.=" and b.bandgroup in ('vhf','uhf','shf','sat')"; - } + // Get all callsigns for all grids in a SINGLE query + $gridCallsigns = $this->get_grid_callsigns_batch(array_keys($vuccBand), $band); - if ($confirmationMethod == 'both') { - $sql .= " and (log.col_qsl_rcvd='Y' or log.col_lotw_qsl_rcvd='Y')"; - } else if ($confirmationMethod == 'qsl') { - $sql .= " and log.col_qsl_rcvd='Y'"; - } else if ($confirmationMethod == 'lotw') { - $sql .= " and log.col_lotw_qsl_rcvd='Y'"; - } - - if ($band != 'All') { - if ($band == 'SAT') { - $sql .= " and log.col_prop_mode ='" . $band . "'"; - } else { - $sql .= " and log.col_prop_mode !='SAT'"; - $sql .= " and log.col_band ='" . $band . "'"; - } - } else { - $sql .= " and log.col_prop_mode !='SAT'"; - } - $query = $this->db->query($sql); - - return $query->result_array(); - } - - /* - * Makes a list of all gridsquares on chosen band with info about lotw and qsl - */ - function vucc_details($band, $type) { - - if ($type == 'worked') { - $workedGridArray = $this->getWorkedGridsList($band, 'none'); - $vuccBand = $this->removeConfirmedGrids($band, $workedGridArray); - } else if ($type == 'confirmed') { - $workedGridArray = $this->getWorkedGridsList($band, 'both'); - $vuccBand = $this->markConfirmedGrids($band, $workedGridArray); - } else { - $workedGridArray = $this->getWorkedGridsList($band, 'none'); - $vuccBand = $this->markConfirmedGrids($band, $workedGridArray); + // Add callsign details for each grid from the batched result + foreach ($vuccBand as $grid => $data) { + $callsignlist = ''; + if (isset($gridCallsigns[$grid])) { + foreach ($gridCallsigns[$grid] as $call) { + $callsignlist .= $call . '
'; + } + } + $vuccBand[$grid]['call'] = $callsignlist; } if (!isset($vuccBand)) { @@ -212,60 +264,141 @@ class VUCC extends CI_Model } } - function removeConfirmedGrids($band, $workedGridArray) { - $vuccDataQsl = $this->get_vucc_summary($band, 'qsl'); - - foreach ($vuccDataQsl as $grid) { - if (($key = array_search($grid['gridsquare'], $workedGridArray)) !== false) { - unset($workedGridArray[$key]); - } + /* + * Fetches callsigns for multiple grids in a single query + * Returns array indexed by 4-character grid with list of callsigns + */ + private function get_grid_callsigns_batch($grids, $band) { + if (empty($grids) || !$this->logbooks_locations_array) { + return []; } - $vuccDataLotw = $this->get_vucc_summary($band, 'lotw'); + $location_list = "'" . implode("','", $this->logbooks_locations_array) . "'"; + $bindings = array(); - foreach ($vuccDataLotw as $grid) { - if (($key = array_search($grid['gridsquare'], $workedGridArray)) !== false) { - unset($workedGridArray[$key]); - } - } - - $col_vucc_grids_confirmed_qsl = $this->get_vucc_summary_col_vucc($band, 'lotw'); - - foreach ($col_vucc_grids_confirmed_qsl as $gridSplit) { - $grids = explode(",", $gridSplit['col_vucc_grids']); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - if (($key = array_search($grid_four, $workedGridArray)) !== false) { - unset($workedGridArray[$key]); - } - } - } - - $col_vucc_grids_confirmed_lotw = $this->get_vucc_summary_col_vucc($band, 'qsl'); - - foreach ($col_vucc_grids_confirmed_lotw as $gridSplit) { - $grids = explode(",", $gridSplit['col_vucc_grids']); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - if (($key = array_search($grid_four, $workedGridArray)) !== false) { - unset($workedGridArray[$key]); - } - } - } - foreach ($workedGridArray as $grid) { - $result = $this->grid_detail($grid, $band); - $callsignlist = ''; - foreach($result->result() as $call) { - $callsignlist .= $call->COL_CALL . '
'; - } - $vuccBand[$grid]['call'] = $callsignlist; - } - - if (isset($vuccBand)) { - return $vuccBand; + // Build band condition + if ($band == 'SAT') { + $bandCondition = " and col_prop_mode = 'SAT'"; } else { - return null; + $bandCondition = " and col_prop_mode != 'SAT' and col_band = ?"; + $bindings[] = $band; } + + // Fetch all QSOs for this band - we'll filter by grids in PHP + // This is much more efficient than one query per grid + $sql = "SELECT COL_CALL, col_gridsquare, col_vucc_grids + FROM " . $this->config->item('table_name') . " + WHERE station_id IN (" . $location_list . ") + AND (col_gridsquare <> '' OR col_vucc_grids <> '')" + . $bandCondition; + + $query = $this->db->query($sql, $bindings); + $result = $query->result_array(); + + // Group callsigns by grid in PHP + $gridCallsigns = []; + $gridsLookup = array_flip($grids); // For O(1) lookups + + foreach ($result as $row) { + // Process col_gridsquare + if (!empty($row['col_gridsquare'])) { + $grid_four = strtoupper(substr($row['col_gridsquare'], 0, 4)); + if (isset($gridsLookup[$grid_four])) { + if (!isset($gridCallsigns[$grid_four])) { + $gridCallsigns[$grid_four] = []; + } + // Avoid duplicate callsigns for the same grid + if (!in_array($row['COL_CALL'], $gridCallsigns[$grid_four])) { + $gridCallsigns[$grid_four][] = $row['COL_CALL']; + } + } + } + + // Process col_vucc_grids (comma-separated list) + if (!empty($row['col_vucc_grids'])) { + $vuccGrids = explode(",", $row['col_vucc_grids']); + foreach ($vuccGrids as $vuccGrid) { + $grid_four = strtoupper(substr(trim($vuccGrid), 0, 4)); + if (isset($gridsLookup[$grid_four])) { + if (!isset($gridCallsigns[$grid_four])) { + $gridCallsigns[$grid_four] = []; + } + // Avoid duplicate callsigns for the same grid + if (!in_array($row['COL_CALL'], $gridCallsigns[$grid_four])) { + $gridCallsigns[$grid_four][] = $row['COL_CALL']; + } + } + } + } + } + + return $gridCallsigns; + } + + /* + * Fetches VUCC data for a specific band with QSL/LoTW confirmation details + * Returns data in a single query per band + */ + private function get_vucc_band_data($band) { + if (!$this->logbooks_locations_array) { + return ['gridsquare' => [], 'vucc_grids' => []]; + } + + $results = ['gridsquare' => [], 'vucc_grids' => []]; + + $location_list = "'" . implode("','", $this->logbooks_locations_array) . "'"; + + $bindings1 = array(); + + if ($band == 'SAT') { + $bandCondition1 = " and log.col_prop_mode = 'SAT'"; + } else { + $bandCondition1 = " and log.col_prop_mode != 'SAT' and log.col_band = ?"; + $bindings1[] = $band; + } + + $sql1 = "SELECT + DISTINCT UPPER(SUBSTRING(col_gridsquare, 1, 4)) as gridsquare, + MAX(CASE WHEN col_qsl_rcvd='Y' THEN 1 ELSE 0 END) as qsl_confirmed, + MAX(CASE WHEN col_lotw_qsl_rcvd='Y' THEN 1 ELSE 0 END) as lotw_confirmed, + MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed + FROM " . $this->config->item('table_name') . " log + WHERE log.station_id IN (" . $location_list . ") + AND log.col_gridsquare <> ''" + . $bandCondition1 . " + GROUP BY UPPER(SUBSTRING(col_gridsquare, 1, 4))"; + + $query1 = $this->db->query($sql1, $bindings1); + if ($query1->num_rows() > 0) { + $results['gridsquare'] = $query1->result_array(); + } + + if ($band == 'SAT') { + $bandCondition2 = " and col_prop_mode = ?"; + $bindings2[] = $band; + } else { + $bandCondition2 = " and col_prop_mode != ? and col_band = ?"; + $bindings2[] = 'SAT'; + $bindings2[] = $band; + } + + $sql2 = "SELECT + DISTINCT col_vucc_grids, + MAX(CASE WHEN col_qsl_rcvd='Y' THEN 1 ELSE 0 END) as qsl_confirmed, + MAX(CASE WHEN col_lotw_qsl_rcvd='Y' THEN 1 ELSE 0 END) as lotw_confirmed, + MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed + FROM " . $this->config->item('table_name') . " + WHERE station_id IN (" . $location_list . ") + AND col_vucc_grids <> ''" + . $bandCondition2 . " + GROUP BY col_vucc_grids"; + + $query2 = $this->db->query($sql2, $bindings2); + if ($query2->num_rows() > 0) { + $results['vucc_grids'] = $query2->result_array(); + } + + return $results; } function grid_detail($gridsquare, $band) { @@ -287,142 +420,50 @@ class VUCC extends CI_Model return $this->db->query($sql); } - function markConfirmedGrids($band, $workedGridArray) { - foreach ($workedGridArray as $grid) { - $vuccBand[$grid]['qsl'] = ''; - $vuccBand[$grid]['lotw'] = ''; - } - - $vuccDataQsl = $this->get_vucc_summary($band, 'qsl'); - - foreach ($vuccDataQsl as $grid) { - $vuccBand[$grid['gridsquare']]['qsl'] = 'Y'; - } - - $vuccDataLotw = $this->get_vucc_summary($band, 'lotw'); - - foreach ($vuccDataLotw as $grid) { - $vuccBand[$grid['gridsquare']]['lotw'] = 'Y'; - } - - $col_vucc_grids_confirmed_qsl = $this->get_vucc_summary_col_vucc($band, 'lotw'); - - foreach ($col_vucc_grids_confirmed_qsl as $gridSplit) { - $grids = explode(",", $gridSplit['col_vucc_grids']); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - $vuccBand[$grid_four]['lotw'] = 'Y'; - } - } - - $col_vucc_grids_confirmed_lotw = $this->get_vucc_summary_col_vucc($band, 'qsl'); - - foreach ($col_vucc_grids_confirmed_lotw as $gridSplit) { - $grids = explode(",", $gridSplit['col_vucc_grids']); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - $vuccBand[$grid_four]['qsl'] = 'Y'; - } - } - - return $vuccBand; - } - - function getWorkedGridsList($band, $confirmationMethod) { - - $col_gridsquare_worked = $this->get_vucc_summary($band, $confirmationMethod); - - $workedGridArray = array(); - foreach ($col_gridsquare_worked as $workedgrid) { - array_push($workedGridArray, $workedgrid['gridsquare']); - } - - $col_vucc_grids_worked = $this->get_vucc_summary_col_vucc($band, $confirmationMethod); - - foreach ($col_vucc_grids_worked as $gridSplit) { - $grids = explode(",", $gridSplit['col_vucc_grids']); - foreach($grids as $key) { - $grid_four = strtoupper(substr(trim($key),0,4)); - - if(!in_array($grid_four, $workedGridArray)){ - array_push($workedGridArray, $grid_four); - } - } - } - - return $workedGridArray; - } - - private function get_vucc_combined_data($band = 'All') { + /* + * Fetches VUCC data for ALL bands in 2 queries (optimized) + * Similar approach to CQ model's getCqZoneData() + * Returns data with band information included for processing + */ + private function get_vucc_combined_data_all_bands() { if (!$this->logbooks_locations_array) { return ['gridsquare' => [], 'vucc_grids' => []]; } $results = ['gridsquare' => [], 'vucc_grids' => []]; - $inPlaceholders = str_repeat('?,', count($this->logbooks_locations_array) - 1) . '?'; - - // Query 1: Get col_gridsquare data with worked/confirmed status - $bindings1 = array_merge($this->logbooks_locations_array); - $bandCondition1 = ''; - - if ($band != 'All') { - if ($band == 'SAT') { - $bandCondition1 = " and log.col_prop_mode = ?"; - $bindings1[] = $band; - } else { - $bandCondition1 = " and log.col_prop_mode != ? and log.col_band = ?"; - $bindings1[] = 'SAT'; - $bindings1[] = $band; - } - } else { - $bandCondition1 = " and log.col_prop_mode != ?"; - $bindings1[] = 'SAT'; - } + // Query 1: Get col_gridsquare data for ALL bands with worked/confirmed status + // GROUP BY both gridsquare and band to get per-band statistics + $location_list = "'" . implode("','", $this->logbooks_locations_array) . "'"; $sql1 = "SELECT DISTINCT UPPER(SUBSTRING(col_gridsquare, 1, 4)) as gridsquare, + col_band, MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed FROM " . $this->config->item('table_name') . " log - INNER JOIN bands b ON (b.band = log.col_band) - WHERE log.station_id IN (" . $inPlaceholders . ") + WHERE log.station_id IN (" . $location_list . ") AND log.col_gridsquare <> '' - AND b.bandgroup IN ('vhf','uhf','shf','sat')" - . $bandCondition1 . " - GROUP BY UPPER(SUBSTRING(col_gridsquare, 1, 4))"; + AND log.col_prop_mode != 'SAT' + GROUP BY UPPER(SUBSTRING(col_gridsquare, 1, 4)), col_band"; - $query1 = $this->db->query($sql1, $bindings1); + $query1 = $this->db->query($sql1); if ($query1->num_rows() > 0) { $results['gridsquare'] = $query1->result_array(); } - // Query 2: Get col_vucc_grids data with worked/confirmed status - // Note: col_vucc_grids has NO band filter when band='All' (includes SAT) - $bindings2 = array_merge($this->logbooks_locations_array); - $bandCondition2 = ''; - - if ($band != 'All') { - if ($band == 'SAT') { - $bandCondition2 = " and col_prop_mode = ?"; - $bindings2[] = $band; - } else { - $bandCondition2 = " and col_prop_mode != ? and col_band = ?"; - $bindings2[] = 'SAT'; - $bindings2[] = $band; - } - } - // When band='All', NO band filter is added (includes all prop_mode including SAT) + // Query 2: Get col_vucc_grids data for ALL bands with worked/confirmed status $sql2 = "SELECT DISTINCT col_vucc_grids, + col_band, MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed FROM " . $this->config->item('table_name') . " - WHERE station_id IN (" . $inPlaceholders . ") - AND col_vucc_grids <> ''" - . $bandCondition2 . " - GROUP BY col_vucc_grids"; + WHERE station_id IN (" . $location_list . ") + AND col_vucc_grids <> '' + AND col_prop_mode != 'SAT' + GROUP BY col_vucc_grids, col_band"; - $query2 = $this->db->query($sql2, $bindings2); + $query2 = $this->db->query($sql2); if ($query2->num_rows() > 0) { $results['vucc_grids'] = $query2->result_array(); } @@ -430,7 +471,58 @@ class VUCC extends CI_Model return $results; } - /* + /* + * Fetches VUCC data for ALL bands in 2 queries (optimized) + * Similar approach to CQ model's getCqZoneData() + * Returns data with band information included for processing + */ + private function get_vucc_combined_data_sat() { + if (!$this->logbooks_locations_array) { + return ['gridsquare' => [], 'vucc_grids' => []]; + } + + $results = ['gridsquare' => [], 'vucc_grids' => []]; + + // Query 1: Get col_gridsquare data for ALL bands with worked/confirmed status + // GROUP BY both gridsquare and band to get per-band statistics + $location_list = "'" . implode("','", $this->logbooks_locations_array) . "'"; + + $sql1 = "SELECT + DISTINCT UPPER(SUBSTRING(col_gridsquare, 1, 4)) as gridsquare, + col_prop_mode as col_band, + MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed + FROM " . $this->config->item('table_name') . " log + WHERE log.station_id IN (" . $location_list . ") + AND log.col_gridsquare <> '' + AND log.col_prop_mode = 'SAT' + GROUP BY UPPER(SUBSTRING(col_gridsquare, 1, 4)), col_prop_mode"; + + $query1 = $this->db->query($sql1); + if ($query1->num_rows() > 0) { + $results['gridsquare'] = $query1->result_array(); + } + + // Query 2: Get col_vucc_grids data for ALL bands with worked/confirmed status + + $sql2 = "SELECT + DISTINCT col_vucc_grids, + col_prop_mode as col_band, + MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed + FROM " . $this->config->item('table_name') . " + WHERE station_id IN (" . $location_list . ") + AND col_vucc_grids <> '' + AND col_prop_mode = 'SAT' + GROUP BY col_vucc_grids, col_prop_mode"; + + $query2 = $this->db->query($sql2); + if ($query2->num_rows() > 0) { + $results['vucc_grids'] = $query2->result_array(); + } + + return $results; + } + + /* * Builds the array to display worked/confirmed vucc on dashboard page */ function fetchVuccSummary($band = 'All') { @@ -475,5 +567,79 @@ class VUCC extends CI_Model return $vuccArray; } + + private function get_vucc_combined_data($band = 'All') { + if (!$this->logbooks_locations_array) { + return ['gridsquare' => [], 'vucc_grids' => []]; + } + + $results = ['gridsquare' => [], 'vucc_grids' => []]; + + $location_list = "'" . implode("','", $this->logbooks_locations_array) . "'"; + + // Query 1: Get col_gridsquare data with worked/confirmed status + $bandCondition1 = ''; + $bindings1 = array(); + + if ($band != 'All') { + if ($band == 'SAT') { + $bandCondition1 = " and log.col_prop_mode = 'SAT'"; + } else { + $bandCondition1 = " and log.col_prop_mode != 'SAT' and log.col_band = ?"; + $bindings1[] = $band; + } + } else { + $bandCondition1 = " and log.col_prop_mode != 'SAT'"; + } + + $sql1 = "SELECT + DISTINCT UPPER(SUBSTRING(col_gridsquare, 1, 4)) as gridsquare, + MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed + FROM " . $this->config->item('table_name') . " log + INNER JOIN bands b ON (b.band = log.col_band) + WHERE log.station_id IN (" . $location_list . ") + AND log.col_gridsquare <> '' + AND b.bandgroup IN ('vhf','uhf','shf','sat')" + . $bandCondition1 . " + GROUP BY UPPER(SUBSTRING(col_gridsquare, 1, 4))"; + + $query1 = $this->db->query($sql1, $bindings1); + if ($query1->num_rows() > 0) { + $results['gridsquare'] = $query1->result_array(); + } + + // Query 2: Get col_vucc_grids data with worked/confirmed status + // Note: col_vucc_grids has NO band filter when band='All' (includes SAT) + $bandCondition2 = ''; + + $bindings2 = array(); + + if ($band != 'All') { + if ($band == 'SAT') { + $bandCondition2 = " and col_prop_mode = 'SAT'"; + } else { + $bandCondition2 = " and col_prop_mode != 'SAT' and col_band = ?"; + $bindings2[] = $band; + } + } + // When band='All', NO band filter is added (includes all prop_mode including SAT) + + $sql2 = "SELECT + DISTINCT col_vucc_grids, + MAX(CASE WHEN (col_qsl_rcvd='Y' OR col_lotw_qsl_rcvd='Y') THEN 1 ELSE 0 END) as confirmed + FROM " . $this->config->item('table_name') . " + WHERE station_id IN (" . $location_list . ") + AND col_vucc_grids <> ''" + . $bandCondition2 . " + GROUP BY col_vucc_grids"; + + $query2 = $this->db->query($sql2, $bindings2); + if ($query2->num_rows() > 0) { + $results['vucc_grids'] = $query2->result_array(); + } + + return $results; + } + } ?> diff --git a/application/models/Wac.php b/application/models/Wac.php index f3bc23da4..9fb271a5f 100644 --- a/application/models/Wac.php +++ b/application/models/Wac.php @@ -2,265 +2,277 @@ class Wac extends CI_Model{ - private $validContinents = ['AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN']; + private $validContinents = ['AF', 'AN', 'AS', 'EU', 'NA', 'OC', 'SA']; function __construct() { - $this->load->library('Genfunctions'); + if(!$this->load->is_loaded('Genfunctions')) { + $this->load->library('Genfunctions'); + } + } + + /* + * Gets all WAC data with confirmation status in efficient query using MAX aggregation + */ + function getWacData($location_list, $postdata) { + $bindings = []; + $sql = "SELECT thcv.col_cont, thcv.col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv + WHERE station_id IN (" . $location_list . ") + AND thcv.col_cont IN ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN') + AND thcv.col_cont != ''"; + + // Mode filter + if ($postdata['mode'] != 'All') { + $sql .= " AND (thcv.col_mode = ? OR thcv.col_submode = ?)"; + $bindings[] = $postdata['mode']; + $bindings[] = $postdata['mode']; + } + + $sql .= " AND thcv.col_prop_mode != 'SAT'"; + + $sql .= " GROUP BY thcv.col_cont, thcv.col_band"; + + $query = $this->db->query($sql, $bindings); + return $query->result(); + } + + /* + * Gets all WAC satellite data with confirmation status + */ + function getWacDataSat($location_list, $postdata) { + $bindings = []; + $sql = "SELECT thcv.col_cont, 'SAT' as col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv + LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name + WHERE station_id IN (" . $location_list . ") + AND thcv.col_cont IN ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN') + AND thcv.col_cont != ''"; + + // Mode filter + if ($postdata['mode'] != 'All') { + $sql .= " AND (thcv.col_mode = ? OR thcv.col_submode = ?)"; + $bindings[] = $postdata['mode']; + $bindings[] = $postdata['mode']; + } + + // Satellite filter + if ($postdata['sat'] != 'All') { + $sql .= " AND thcv.col_sat_name = ?"; + $bindings[] = $postdata['sat']; + } + + // Orbit filter + $sql .= $this->addOrbitToQuery($postdata, $bindings); + + $sql .= " AND thcv.col_prop_mode = 'SAT'"; + + $sql .= " GROUP BY thcv.col_cont"; + + $query = $this->db->query($sql, $bindings); + return $query->result(); } function get_wac_array($bands, $postdata, $location_list) { - $wac = array(); - - foreach ($this->validContinents as $cont) { - $wac[$cont]['count'] = 0; // Inits each wac's count - } - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + // Initialize matrix with all continents + foreach ($this->validContinents as $cont) { + foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + $wacMatrix[$cont][$band] = '-'; + } + } + + // Initialize summary counters foreach ($bands as $band) { - foreach ($this->validContinents as $cont) { - $bandWac[$cont][$band] = '-'; // Sets all to dash to indicate no result + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + $summary['worked'][$band] = 0; + $summary['confirmed'][$band] = 0; + } + $summary['worked']['Total'] = 0; + $summary['confirmed']['Total'] = 0; + + // Track unique continent/band combinations + $workedContinents = []; // [band][continent] => true + $confirmedContinents = []; // [band][continent] => true + + // Track worked status for each continent + $continentWorkedStatus = []; // [continent] => count + + // Create a lookup array for valid bands + $validBands = array_flip($bands); + + // Get all WAC data in efficient queries + $wacData = $this->getWacData($location_list, $postdata); + + // Process regular band data + foreach ($wacData as $wac) { + // Skip if this band is not in our requested bands list + if (!isset($validBands[$wac->col_band])) { + continue; } - if ($postdata['worked'] != NULL) { - $wacBand = $this->getWACWorked($location_list, $band, $postdata); - foreach ($wacBand as $line) { - $bandWac[$line->col_cont][$band] = ''; - $wac[$line->col_cont]['count']++; + // Track worked status for this continent + if (!isset($continentWorkedStatus[$wac->col_cont])) { + $continentWorkedStatus[$wac->col_cont] = 0; + } + $continentWorkedStatus[$wac->col_cont]++; + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $wac->qsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $wac->lotw > 0) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $wac->eqsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $wac->qrz > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $wac->clublog > 0) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $wacMatrix[$wac->col_cont][$wac->col_band] = ''; + // Track confirmed continents for summary + if (!isset($confirmedContinents[$wac->col_band][$wac->col_cont])) { + $confirmedContinents[$wac->col_band][$wac->col_cont] = true; + $summary['confirmed'][$wac->col_band]++; } + } else { + $wacMatrix[$wac->col_cont][$wac->col_band] = ''; } - if ($postdata['confirmed'] != NULL) { - $wacBand = $this->getWACConfirmed($location_list, $band, $postdata); - foreach ($wacBand as $line) { - $bandWac[$line->col_cont][$band] = ''; - $wac[$line->col_cont]['count']++; - } + + // Track worked continents for summary + if (!isset($workedContinents[$wac->col_band][$wac->col_cont])) { + $workedContinents[$wac->col_band][$wac->col_cont] = true; + $summary['worked'][$wac->col_band]++; } } - // We want to remove the worked continents in the list, since we do not want to display them - if ($postdata['worked'] == NULL) { - $wacBand = $this->getWACWorked($location_list, $postdata['band'], $postdata); - foreach ($wacBand as $line) { - unset($bandWac[$line->col_cont]); - } - } + // Process SAT data if needed + if ($postdata['band'] == 'SAT') { + if (in_array('SAT', $bands)) { + $wacDataSat = $this->getWacDataSat($location_list, $postdata); - // We want to remove the confirmed continents in the list, since we do not want to display them - if ($postdata['confirmed'] == NULL) { - $wacBand = $this->getWACConfirmed($location_list, $postdata['band'], $postdata); - foreach ($wacBand as $line) { - unset($bandWac[$line->col_cont]); - } - } - - if ($postdata['notworked'] == NULL) { - foreach ($this->validContinents as $cont) { - if ($wac[$cont]['count'] == 0) { - if (isset($bandWac)) { - unset($bandWac[$cont]); + foreach ($wacDataSat as $wac) { + // Track worked status for this continent + if (!isset($continentWorkedStatus[$wac->col_cont])) { + $continentWorkedStatus[$wac->col_cont] = 0; } - }; + $continentWorkedStatus[$wac->col_cont]++; + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $wac->qsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $wac->lotw > 0) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $wac->eqsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $wac->qrz > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $wac->clublog > 0) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $wacMatrix[$wac->col_cont]['SAT'] = ''; + // Track confirmed continents for summary + if (!isset($confirmedContinents['SAT'][$wac->col_cont])) { + $confirmedContinents['SAT'][$wac->col_cont] = true; + $summary['confirmed']['SAT']++; + } + } else { + if ($postdata['worked'] != NULL) { + $wacMatrix[$wac->col_cont]['SAT'] = ''; + } + } + + // Track worked continents for summary + if (!isset($workedContinents['SAT'][$wac->col_cont])) { + $workedContinents['SAT'][$wac->col_cont] = true; + $summary['worked']['SAT']++; + } + } } } - if (isset($bandWac)) { - return $bandWac; + // Calculate totals across all bands (excluding SAT) + $totalWorkedContinents = []; + $totalConfirmedContinents = []; + foreach ($workedContinents as $band => $continents) { + foreach ($continents as $cont => $true) { + if (!isset($totalWorkedContinents[$cont])) { + $totalWorkedContinents[$cont] = true; + if ($band === 'SAT') { + continue; + } + $summary['worked']['Total']++; + } + } + } + foreach ($confirmedContinents as $band => $continents) { + foreach ($continents as $cont => $true) { + if (!isset($totalConfirmedContinents[$cont])) { + $totalConfirmedContinents[$cont] = true; + if ($band === 'SAT') { + continue; + } + $summary['confirmed']['Total']++; + } + } + } + + if (isset($wacMatrix)) { + // Return both the matrix data and summary + return ['matrix' => $wacMatrix, 'summary' => $summary]; } else { - return 0; + return ['matrix' => [], 'summary' => $summary]; } } - /* - * Function returns all worked, but not confirmed continents - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getWACWorked($location_list, $band, $postdata) { - $bindings=[]; - $sql = "SELECT distinct col_cont FROM " . $this->config->item('table_name') . " thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - if ($band == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= " and not exists (select 1 from " . $this->config->item('table_name') . " thcv2 - LEFT JOIN satellite on thcv2.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . - ") and col_cont = thcv.col_cont and col_cont <> '' "; - - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - if ($band == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= ")"; - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - /* - * Function returns all confirmed continents on given band and on LoTW or QSL - * $postdata contains data from the form, in this case Lotw or QSL are used - */ - function getWACConfirmed($location_list, $band, $postdata) { - $bindings=[]; - $sql = "SELECT distinct col_cont FROM " . $this->config->item('table_name') . " thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - if ($band == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - /* * Function gets worked and confirmed summary on each band on the active stationprofile + * This is now integrated into get_wac_array for efficiency */ function get_wac_summary($bands, $postdata, $location_list) { - foreach ($bands as $band) { - $worked = $this->getSummaryByBand($band, $postdata, $location_list); - $confirmed = $this->getSummaryByBandConfirmed($band, $postdata, $location_list); - $wacSummary['worked'][$band] = $worked[0]->count; - $wacSummary['confirmed'][$band] = $confirmed[0]->count; - } - - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $location_list); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $location_list); - - $wacSummary['worked']['Total'] = $workedTotal[0]->count; - $wacSummary['confirmed']['Total'] = $confirmedTotal[0]->count; - - return $wacSummary; - } - - function getSummaryByBand($band, $postdata, $location_list) { - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_cont) as count FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - - $sql .= " where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode = ?"; - $bindings[]=$band; - if ($band != 'All' && $postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands(); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $query = $this->db->query($sql,$bindings); - return $query->result(); - } - - function getSummaryByBandConfirmed($band, $postdata, $location_list){ - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_cont) as count FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - - $sql .= " where station_id in (" . $location_list . ") and col_cont in ('AF', 'EU', 'AS', 'SA', 'NA', 'OC', 'AN')"; - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[]=$postdata['sat']; - } - } else if ($band == 'All') { - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands(); - - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[]=$band; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[]=$postdata['mode']; - $bindings[]=$postdata['mode']; - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $query = $this->db->query($sql,$bindings); - - return $query->result(); + $result = $this->get_wac_array($bands, $postdata, $location_list); + return $result['summary']; } // Adds orbit type to query diff --git a/application/models/Wae.php b/application/models/Wae.php index 405735116..cfb34228f 100644 --- a/application/models/Wae.php +++ b/application/models/Wae.php @@ -7,18 +7,10 @@ class WAE extends CI_Model { // Reference: https://www.darc.de/der-club/referate/dx/diplome/wae-diplom/wae-laenderliste/ // ADIF refrence: https://www.adif.org.uk/315/ADIF_315.htm#Region_Enumeration - // $sql = select * from dxcc_entities where cont = 'EU' and end is null - - private $eucountries = '5,7,21,27,40,45,52,54,61,106,114,117,118,122,126,145,146,149,167,179,180,203,206,209,212,214,221,222,223,224,225,227,230,233,236,239,242,245,246,248,251,254,257,259,260,263,265,266,269,272,275,278,279,281,284,287,288,294,295,296,497,499,501,502,503,504,514,522'; - // 4U1V (OE for DXCC), JW/b, GM/s, IT, TA1, - private $waecountries = '206, 248, 259, 279, 390'; + private $eucountries = '5,7,21,27,40,45,52,54,61,106,114,117,118,122,126,145,146,149,167,179,180,203,206,209,212,214,221,222,223,224,225,227,230,233,236,239,242,245,246,248,251,254,257,259,260,263,265,266,269,272,275,278,279,281,284,287,288,294,295,296,390,497,499,501,502,503,504,514,522'; - private $region = "'IV', 'SY', 'BI', 'SI', 'ET'"; - // $sql = select * from dxcc_entities where cont = 'EU' and end is not null - - // Need to handle deleted eu countries // Deleted // Prefix Country valid since valid until // 9S4 Saarland Nov 8, 1947 Mar 31, 1957 @@ -30,6 +22,8 @@ class WAE extends CI_Model { // OK Czechoslovakia Dec 31, 1992 // R1MV Maliy Vysotskij Isl. Feb 17, 2012 + private $validWaeRegions = ['IV', 'SY', 'BI', 'SI', 'ET']; + private $location_list; function __construct() { @@ -41,7 +35,7 @@ class WAE extends CI_Model { $logbooks_locations_array = $this->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook')); if ($logbooks_locations_array) { - // Create the location_list string + // Create the location_list string $this->location_list = "'" . implode("','", $logbooks_locations_array) . "'"; } else { // Handle the case where $logbooks_locations_array is empty or not set @@ -54,239 +48,381 @@ class WAE extends CI_Model { return null; } - $waeCount = array(); // Used for keeping track of which WAE are not worked - - $waeCount['IV']['count'] = 0; - $waeCount['SY']['count'] = 0; - $waeCount['BI']['count'] = 0; - $waeCount['SI']['count'] = 0; - $waeCount['ET']['count'] = 0; - + $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); $dxccArray = $this->fetchdxcc($postdata, $this->location_list); - $qsl = $this->genfunctions->gen_qsl_from_postdata($postdata); + // WAE special regions + $waeRegions = [ + 'IV' => ['name' => 'ITU Vienna', 'prefix' => '4U1V'], + 'SY' => ['name' => 'Sicily', 'prefix' => 'IT9'], + 'BI' => ['name' => 'Bear Island', 'prefix' => 'JW/b'], + 'SI' => ['name' => 'Shetland Islands', 'prefix' => 'GM/s'], + 'ET' => ['name' => 'European Turkey', 'prefix' => 'TA1'] + ]; - foreach ($bands as $band) { // Looping through bands and entities to generate the array needed for display - foreach ($dxccArray as $dxcc) { - if ($dxcc->adif == '0') { - $dxccMatrix[$dxcc->adif]['name'] = $dxcc->name; + // Initialize matrix with all DXCC entities and WAE regions + foreach ($dxccArray as $dxcc) { + $adif = $dxcc->adif ?? '0'; + $name = $dxcc->name ?? ''; + $prefix = $dxcc->prefix ?? ''; + $enddate = $dxcc->Enddate ?? null; + + if ($adif == '0') { + $dxccMatrix[$adif]['name'] = $name; + } else { + $dxccMatrix[$adif]['name'] = ucwords(strtolower($name), "- (/"); + } + $dxccMatrix[$adif]['Dxccprefix'] = $prefix; + if ($postdata['includedeleted']) { + $dxccMatrix[$adif]['Deleted'] = isset($enddate) ? 1 : 0; + } + + // Initialize all bands to dash + foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + $dxccMatrix[$adif][$band] = '-'; + } + } + + // Initialize WAE regions + foreach ($waeRegions as $region => $info) { + $dxccMatrix[$region]['name'] = $info['name']; + $dxccMatrix[$region]['Dxccprefix'] = $info['prefix']; + foreach ($bands as $band) { + if (($postdata['band'] != 'SAT') && ($band == 'SAT')) { + continue; + } + $dxccMatrix[$region][$band] = '-'; + } + } + + // Initialize summary counters only for the bands passed in + foreach ($bands as $band) { + $summary['worked'][$band] = 0; + $summary['confirmed'][$band] = 0; + } + $summary['worked']['Total'] = 0; + $summary['confirmed']['Total'] = 0; + + // Track unique entity/band combinations for totals + $workedEntities = []; // [band][entity] => true + $confirmedEntities = []; // [band][entity] => true + + // Track worked status for each entity + $entityWorkedStatus = []; // [entity] => count + + // Create a lookup array for valid bands + $validBands = array_flip($bands); + + // Get all WAE data in efficient queries + $waeData = $this->getWaeData($this->location_list, $postdata); + $waeDataSat = $this->getWaeDataSat($this->location_list, $postdata); + + foreach ($waeData as $wae) { + // Skip if this band is not in our requested bands list + if (!isset($validBands[$wae->col_band])) { + continue; + } + + // Use region only if it's a valid WAE region, otherwise use DXCC + $entityKey = (!empty($wae->col_region) && in_array($wae->col_region, $this->validWaeRegions)) ? $wae->col_region : (string)$wae->dxcc; + + // Track worked status for this entity + if (!isset($entityWorkedStatus[$entityKey])) { + $entityWorkedStatus[$entityKey] = 0; + } + $entityWorkedStatus[$entityKey]++; + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $wae->qsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $wae->lotw > 0) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $wae->eqsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $wae->qrz > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $wae->clublog > 0) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $dxccMatrix[$entityKey][$wae->col_band] = ''; + // Track confirmed entities for summary + if (!isset($confirmedEntities[$wae->col_band][$entityKey])) { + $confirmedEntities[$wae->col_band][$entityKey] = true; + $summary['confirmed'][$wae->col_band]++; + } + } else { + if ($postdata['worked'] != NULL) { + $dxccMatrix[$entityKey][$wae->col_band] = ''; + } + } + + // Track worked entities for summary + if (!isset($workedEntities[$wae->col_band][$entityKey])) { + $workedEntities[$wae->col_band][$entityKey] = true; + $summary['worked'][$wae->col_band]++; + } + } + + if ($postdata['band'] == 'SAT') { + + foreach ($waeDataSat as $wae) { + // Skip if this band is not in our requested bands list + if (!isset($validBands['SAT'])) { + continue; + } + + // Use region only if it's a valid WAE region, otherwise use DXCC + $entityKey = (!empty($wae->col_region) && in_array($wae->col_region, $this->validWaeRegions)) ? $wae->col_region : (string)$wae->dxcc; + + // Track worked status for this entity + if (!isset($entityWorkedStatus[$entityKey])) { + $entityWorkedStatus[$entityKey] = 0; + } + $entityWorkedStatus[$entityKey]++; + + // Check if confirmed based on the confirmation types selected in postdata + $isConfirmed = false; + $confirmationLetters = ''; + if (isset($postdata['qsl']) && $postdata['qsl'] == 1 && $wae->qsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Q'; + } + if (isset($postdata['lotw']) && $postdata['lotw'] == 1 && $wae->lotw > 0) { + $isConfirmed = true; + $confirmationLetters .= 'L'; + } + if (isset($postdata['eqsl']) && $postdata['eqsl'] == 1 && $wae->eqsl > 0) { + $isConfirmed = true; + $confirmationLetters .= 'E'; + } + if (isset($postdata['qrz']) && $postdata['qrz'] == 1 && $wae->qrz > 0) { + $isConfirmed = true; + $confirmationLetters .= 'Z'; + } + if (isset($postdata['clublog']) && $postdata['clublog'] == 1 && $wae->clublog > 0) { + $isConfirmed = true; + $confirmationLetters .= 'C'; + } + + if ($isConfirmed) { + $dxccMatrix[$entityKey]['SAT'] = ''; + // Track confirmed entities for summary + if (!isset($confirmedEntities['SAT'][$entityKey])) { + $confirmedEntities['SAT'][$entityKey] = true; + $summary['confirmed']['SAT']++; + } } else { - $dxccMatrix[$dxcc->adif]['name'] = ucwords(strtolower($dxcc->name), "- (/"); - } - $dxccMatrix[$dxcc->adif]['Dxccprefix'] = $dxcc->prefix; - if ($postdata['includedeleted']) - $dxccMatrix[$dxcc->adif]['Deleted'] = isset($dxcc->Enddate) ? 1 : 0; - $dxccMatrix[$dxcc->adif][$band] = '-'; - } - $dxccMatrix['IV']['name'] = 'ITU Vienna'; - $dxccMatrix['IV']['Dxccprefix'] = '4U1V'; - $dxccMatrix['IV'][$band] = '-'; - $dxccMatrix['SY']['name'] = 'Sicily'; - $dxccMatrix['SY']['Dxccprefix'] = 'IT9'; - $dxccMatrix['SY'][$band] = '-'; - $dxccMatrix['BI']['name'] = 'Bear Island'; - $dxccMatrix['BI']['Dxccprefix'] = 'JW/b'; - $dxccMatrix['BI'][$band] = '-'; - $dxccMatrix['SI']['name'] = 'Shetland Islands'; - $dxccMatrix['SI']['Dxccprefix'] = 'GM/s'; - $dxccMatrix['SI'][$band] = '-'; - $dxccMatrix['ET']['name'] = 'European Turkey'; - $dxccMatrix['ET']['Dxccprefix'] = 'TA1'; - $dxccMatrix['ET'][$band] = '-'; - - // If worked is checked, we add worked entities to the array - if ($postdata['worked'] != NULL) { - $workedDXCC = $this->getDxccBandWorked($this->location_list, $band, $postdata); - foreach ($workedDXCC as $wdxcc) { - $dxccMatrix[$wdxcc->dxcc][$band] = ''; + $dxccMatrix[$entityKey]['SAT'] = ''; } - $workedDXCC = $this->getDxccBandWorked($this->location_list, $band, $postdata, true); - foreach ($workedDXCC as $wdxcc) { - $dxccMatrix[$wdxcc->col_region][$band] = ''; - $waeCount[$wdxcc->col_region]['count']++; - } - } - - // If confirmed is checked, we add confirmed entities to the array - if ($postdata['confirmed'] != NULL) { - $confirmedDXCC = $this->getDxccBandConfirmed($this->location_list, $band, $postdata); - foreach ($confirmedDXCC as $cdxcc) { - $dxccMatrix[$cdxcc->dxcc][$band] = ''; - } - $confirmedDXCC = $this->getDxccBandConfirmed($this->location_list, $band, $postdata, true); - foreach ($confirmedDXCC as $cdxcc) { - $dxccMatrix[$cdxcc->col_region][$band] = ''; - $waeCount[$cdxcc->col_region]['count']++; + // Track worked entities for summary + if (!isset($workedEntities['SAT'][$entityKey])) { + $workedEntities['SAT'][$entityKey] = true; + $summary['worked']['SAT']++; } } } - // We want to remove the worked dxcc's in the list, since we do not want to display them - if ($postdata['worked'] == NULL) { - $workedDxcc = $this->getDxccWorked($this->location_list, $postdata); - foreach ($workedDxcc as $wdxcc) { - if (array_key_exists($wdxcc->dxcc, $dxccMatrix)) { - unset($dxccMatrix[$wdxcc->dxcc]); + // Calculate totals across all bands (excluding SAT) + $totalWorkedEntities = []; + $totalConfirmedEntities = []; + foreach ($workedEntities as $band => $entities) { + // Skip SAT for totals + if ($band === 'SAT') { + continue; + } + foreach ($entities as $entity => $true) { + if (!isset($totalWorkedEntities[$entity])) { + $totalWorkedEntities[$entity] = true; + $summary['worked']['Total']++; } } - $workedWae = $this->getDxccWorked($this->location_list, $postdata, true); - foreach ($workedWae as $wdxcc) { - if (array_key_exists($wdxcc->col_region, $dxccMatrix)) { - unset($dxccMatrix[$wdxcc->col_region]); + } + foreach ($confirmedEntities as $band => $entities) { + // Skip SAT for totals + if ($band === 'SAT') { + continue; + } + foreach ($entities as $entity => $true) { + if (!isset($totalConfirmedEntities[$entity])) { + $totalConfirmedEntities[$entity] = true; + $summary['confirmed']['Total']++; } } } - // We want to remove the confirmed dxcc's in the list, since we do not want to display them - if ($postdata['confirmed'] == NULL) { - $confirmedDxcc = $this->getDxccConfirmed($this->location_list, $postdata); - foreach ($confirmedDxcc as $cdxcc) { - if (array_key_exists($cdxcc->dxcc, $dxccMatrix)) { - unset($dxccMatrix[$cdxcc->dxcc]); - } + // Remove entities based on postdata filters + foreach ($dxccMatrix as $entity => $data) { + // Remove not-worked entities if filter is disabled + if ($postdata['notworked'] == NULL && !isset($entityWorkedStatus[$entity])) { + unset($dxccMatrix[$entity]); + continue; } - $confirmedWae = $this->getDxccConfirmed($this->location_list, $postdata, true); - foreach ($confirmedWae as $cdxcc) { - if (array_key_exists($cdxcc->col_region, $dxccMatrix)) { - unset($dxccMatrix[$cdxcc->col_region]); - } + // Remove worked-only entities if filter is disabled + if ($postdata['worked'] == NULL && isset($entityWorkedStatus[$entity]) && !isset($totalConfirmedEntities[$entity])) { + unset($dxccMatrix[$entity]); + continue; + } + + // Remove confirmed entities if filter is disabled + if ($postdata['confirmed'] == NULL && isset($totalConfirmedEntities[$entity])) { + unset($dxccMatrix[$entity]); + continue; } } - if ($postdata['notworked'] == NULL) { - if ($waeCount['IV']['count'] == 0) { - unset($dxccMatrix['IV']); - }; - if ($waeCount['SY']['count'] == 0) { - unset($dxccMatrix['SY']); - }; - if ($waeCount['BI']['count'] == 0) { - unset($dxccMatrix['BI']); - }; - if ($waeCount['SI']['count'] == 0) { - unset($dxccMatrix['SI']); - }; - if ($waeCount['ET']['count'] == 0) { - unset($dxccMatrix['ET']); - }; - } - - if (isset($dxccMatrix)) { + if (isset($dxccMatrix) && !empty($dxccMatrix)) { // Convert associative array to indexed array for sorting $dxccIndexed = array_values($dxccMatrix); - // Sort the indexed array by the 'name' key + // Sort the indexed array by the 'Dxccprefix' key usort($dxccIndexed, function ($a, $b) { - return strcmp($a['Dxccprefix'], $b['Dxccprefix']); + $aPrefix = $a['Dxccprefix'] ?? ''; + $bPrefix = $b['Dxccprefix'] ?? ''; + return strcmp($aPrefix, $bPrefix); }); - // Optionally reindex the sorted array back to associative format - $dxccSorted = []; - foreach ($dxccIndexed as $item) { - $key = array_search($item, $dxccMatrix); - $dxccSorted[$key] = $item; - } - return $dxccSorted; + // Return both the matrix data and summary + return ['matrix' => $dxccIndexed, 'summary' => $summary]; } else { - return 0; + return ['matrix' => [], 'summary' => $summary ?? []]; } } - function getDxccBandConfirmed($location_list, $band, $postdata, $wae = false) { + /* + * Gets all WAE data with confirmation status in efficient query using MAX aggregation + */ + function getWaeData($location_list, $postdata) { $bindings = []; - $sql = "select adif as dxcc, name, x.col_region from dxcc_entities - join ( - select col_region, col_dxcc from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } + $sql = "SELECT + COALESCE(thcv.col_region, CAST(thcv.col_dxcc AS CHAR)) as entity_key, + thcv.col_dxcc as dxcc, + thcv.col_region, + thcv.col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv + JOIN dxcc_entities d ON thcv.col_dxcc = d.adif + WHERE station_id IN (" . $location_list . ")"; - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - if ($band == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[] = $postdata['sat']; - } - } + // Filter for European DXCC entities and WAE regions + $sql .= " AND thcv.col_dxcc IN (" . $this->eucountries . ") AND d.end IS NULL"; + // Mode filter if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; + $sql .= " AND (thcv.col_mode = ? OR thcv.col_submode = ?)"; $bindings[] = $postdata['mode']; $bindings[] = $postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= " group by col_dxcc, col_region - ) x on dxcc_entities.adif = x.col_dxcc"; - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; - // } - - if ($wae) { - $sql .= ' and dxcc_entities.adif in ( '. $this->waecountries . ')'; - } else { - $sql .= ' and dxcc_entities.adif in (' . $this->eucountries . ')'; + // Date filters + if ($postdata['dateFrom'] != NULL) { + $sql .= " AND thcv.col_time_on >= ?"; + $bindings[] = $postdata['dateFrom'] . ' 00:00:00'; } - $query = $this->db->query($sql,$bindings); + if ($postdata['dateTo'] != NULL) { + $sql .= " AND thcv.col_time_on <= ?"; + $bindings[] = $postdata['dateTo'] . ' 23:59:59'; + } + $sql .= " AND thcv.col_prop_mode != 'SAT'"; + + // Orbit filter + $sql .= $this->addOrbitToQuery($postdata, $bindings); + + $sql .= " GROUP BY COALESCE(thcv.col_region, CAST(thcv.col_dxcc AS CHAR)), thcv.col_dxcc, thcv.col_region, thcv.col_band"; + + $query = $this->db->query($sql, $bindings); return $query->result(); } - function getDxccBandWorked($location_list, $band, $postdata, $wae = false) { - $bindings=[]; - $sql = "select adif as dxcc, name, x.col_region from dxcc_entities - join ( - select col_region, col_dxcc from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } + function getWaeDataSat($location_list, $postdata) { + $bindings = []; + $sql = "SELECT + COALESCE(thcv.col_region, CAST(thcv.col_dxcc AS CHAR)) as entity_key, + thcv.col_dxcc as dxcc, + thcv.col_region, + 'SAT' as col_band, + MAX(case when thcv.col_lotw_qsl_rcvd ='Y' then 1 else 0 end) as lotw, + MAX(case when thcv.col_qsl_rcvd = 'Y' then 1 else 0 end) as qsl, + MAX(case when thcv.col_eqsl_qsl_rcvd = 'Y' then 1 else 0 end) as eqsl, + MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, + MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog + FROM " . $this->config->item('table_name') . " thcv + JOIN dxcc_entities d ON thcv.col_dxcc = d.adif + LEFT JOIN satellite ON thcv.COL_SAT_NAME = satellite.name + WHERE station_id IN (" . $location_list . ")"; - $sql .= $this->genfunctions->addBandToQuery($band,$bindings); - if ($band == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[] = $postdata['sat']; - } - } + // Filter for European DXCC entities and WAE regions + $sql .= " AND thcv.col_dxcc IN (" . $this->eucountries . ") AND d.end IS NULL"; + + // Mode filter if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; + $sql .= " AND (thcv.col_mode = ? OR thcv.col_submode = ?)"; $bindings[] = $postdata['mode']; $bindings[] = $postdata['mode']; } - $sql .= $this->addOrbitToQuery($postdata,$bindings); - $sql .= " group by col_dxcc, col_region - ) x on dxcc_entities.adif = x.col_dxcc";; - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; - // } - - if ($wae) { - $sql .= ' and dxcc_entities.adif in ( '. $this->waecountries . ')'; - } else { - $sql .= ' and dxcc_entities.adif in (' . $this->eucountries . ')'; + // Date filters + if ($postdata['dateFrom'] != NULL) { + $sql .= " AND thcv.col_time_on >= ?"; + $bindings[] = $postdata['dateFrom'] . ' 00:00:00'; } - $query = $this->db->query($sql,$bindings); + if ($postdata['dateTo'] != NULL) { + $sql .= " AND thcv.col_time_on <= ?"; + $bindings[] = $postdata['dateTo'] . ' 23:59:59'; + } + + // Satellite filter + if ($postdata['sat'] != 'All') { + $sql .= " AND thcv.col_sat_name = ?"; + $bindings[] = $postdata['sat']; + } + + // Orbit filter + $sql .= $this->addOrbitToQuery($postdata, $bindings); + + $sql .= " AND thcv.col_prop_mode = 'SAT'"; + + $sql .= " GROUP BY COALESCE(thcv.col_region, CAST(thcv.col_dxcc AS CHAR)), thcv.col_dxcc, thcv.col_region"; + + $query = $this->db->query($sql, $bindings); return $query->result(); } + // Adds orbit type to query + function addOrbitToQuery($postdata,&$binding) { + $sql = ''; + if ($postdata['orbit'] != 'All') { + $sql .= ' AND satellite.orbit = ?'; + $binding[] = $postdata['orbit']; + } + + return $sql; + } + function fetchDxcc($postdata, $location_list) { $bindings = []; @@ -339,425 +475,5 @@ class WAE extends CI_Model { return $query->result(); } - function getDxccWorked($location_list, $postdata, $wae = false) { - $bindings = []; - - $sql = "SELECT adif as dxcc, ll.col_region FROM dxcc_entities - join ( - select col_dxcc, col_region - from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); - if ($postdata['band'] == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[] = $postdata['sat']; - } - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[] = $postdata['mode']; - $bindings[] = $postdata['mode']; - } - - $sql .= " and not exists (select 1 from ".$this->config->item('table_name')." where station_id in (". $location_list .") and col_dxcc = thcv.col_dxcc"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - - $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); - - if ($postdata['band'] == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[] = $postdata['sat']; - } - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[] = $postdata['mode']; - $bindings[] = $postdata['mode']; - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= ')'; - $sql .= " group by col_dxcc, col_region - ) ll on dxcc_entities.adif = ll.col_dxcc - where 1=1"; - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; - // } - - if ($wae) { - $sql .= ' and dxcc_entities.adif in ( '. $this->waecountries . ')'; - } else { - $sql .= ' and dxcc_entities.adif in (' . $this->eucountries . ')'; - } - - $query = $this->db->query($sql,$bindings); - return $query->result(); - } - - function getDxccConfirmed($location_list, $postdata, $wae = false) { - $bindings = []; - - $sql = "SELECT adif as dxcc, ll.col_region FROM dxcc_entities - join ( - select col_dxcc, col_region - from ".$this->config->item('table_name')." thcv - LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name - where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - - $sql .= $this->genfunctions->addBandToQuery($postdata['band'],$bindings); - if ($postdata['band'] == 'SAT') { - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[] = $postdata['sat']; - } - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[] = $postdata['mode']; - $bindings[] = $postdata['mode']; - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= " group by col_dxcc, col_region - ) ll on dxcc_entities.adif = ll.col_dxcc - where 1=1"; - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and dxcc_entities.end is null"; - // } - - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - /* - * Function gets worked and confirmed summary on each band on the active stationprofile - */ - function get_wae_summary($bands, $postdata) { - if ($this->location_list == '') { - return null; - } - - foreach ($bands as $band) { - $dxccSummary['worked'][$band] = 0; - $dxccSummary['confirmed'][$band] = 0; - } - - $this->load->model('bands'); - - $bandslots = $this->bands->get_worked_bands('dxcc'); - - //WAE - $confirmed = $this->getSummaryConfirmed($postdata, $this->location_list, true); - - foreach ($confirmed as $c) { - if (isset($dxccSummary['confirmed'][$c->col_band])) { - $dxccSummary['confirmed'][$c->col_band] += $c->regioncount; - } - } - - $confirmed = ''; - - // EU DXCC - $confirmed = $this->getSummaryConfirmed($postdata, $this->location_list); - - foreach ($confirmed as $c) { - if (isset($dxccSummary['confirmed'][$c->col_band])) { - $dxccSummary['confirmed'][$c->col_band] += $c->count; - } - } - - // EU DXCC - $worked = $this->getSummary($postdata, $this->location_list); - - foreach ($worked as $w) { - if (isset($dxccSummary['worked'][$w->col_band])) { - $dxccSummary['worked'][$w->col_band] += $w->count; - } - } - - $worked = ''; - - //WAE - $worked = $this->getSummary($postdata, $this->location_list, true); - - foreach ($worked as $w) { - if (isset($dxccSummary['worked'][$w->col_band])) { - $dxccSummary['worked'][$w->col_band] += $w->regioncount; - } - } - - if (isset($dxccSummary['worked']['SAT'])) { - $workedSat = $this->getSummaryByBand('SAT', $postdata, $this->location_list, $bandslots, true); - $dxccSummary['worked']['SAT'] += $workedSat[0]->regioncount; - $workedSat = $this->getSummaryByBand('SAT', $postdata, $this->location_list, $bandslots); - $dxccSummary['worked']['SAT'] += $workedSat[0]->count; - } - - if (isset($dxccSummary['confirmed']['SAT'])) { - $confirmedSat = $this->getSummaryByBandConfirmed('SAT', $postdata, $this->location_list, $bandslots, true); - $dxccSummary['confirmed']['SAT'] += $confirmedSat[0]->regioncount; - - $confirmedSat = $this->getSummaryByBandConfirmed('SAT', $postdata, $this->location_list, $bandslots); - $dxccSummary['confirmed']['SAT'] += $confirmedSat[0]->count; - } - - $dxccSummary['worked']['Total'] = 0; - $dxccSummary['confirmed']['Total'] = 0; - - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $this->location_list, $bandslots); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $this->location_list, $bandslots); - - $dxccSummary['worked']['Total'] += $workedTotal[0]->count; - $dxccSummary['confirmed']['Total'] += $confirmedTotal[0]->count; - - $workedTotal = $this->getSummaryByBand($postdata['band'], $postdata, $this->location_list, $bandslots, true); - $confirmedTotal = $this->getSummaryByBandConfirmed($postdata['band'], $postdata, $this->location_list, $bandslots, true); - - $dxccSummary['worked']['Total'] += $workedTotal[0]->regioncount; - $dxccSummary['confirmed']['Total'] += $confirmedTotal[0]->regioncount; - - return $dxccSummary; - } - - function getSummary($postdata, $location_list, $wae = false) { - $bindings = []; - - $sql = "SELECT count(distinct thcv.col_dxcc) as count, count(distinct thcv.col_region) regioncount, col_band FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; - - $sql .= " where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[] = $postdata['mode']; - $bindings[] = $postdata['mode']; - } - - $sql .= " and thcv.col_prop_mode !='SAT'"; - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and d.end is null"; - // } - - if ($wae) { - $sql .= ' and d.adif in ( '. $this->waecountries . ')'; - } else { - $sql .= ' and d.adif in (' . $this->eucountries . ')'; - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $sql .= ' group by col_band'; - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - function getSummaryByBand($band, $postdata, $location_list, $bandslots, $wae = false) { - $bindings = []; - $sql = "SELECT count(distinct thcv.col_dxcc) as count, count(distinct thcv.col_region) regioncount FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; - - $sql .= " where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode ='" . $band . "'"; - if ($band != 'All' && $postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[] = $postdata['sat']; - } - } else if ($band == 'All') { - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[] = $band; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[] = $postdata['mode']; - $bindings[] = $postdata['mode']; - } - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and d.end is null"; - // } - - if ($wae) { - $sql .= ' and d.adif in ( '. $this->waecountries . ')'; - } else { - $sql .= ' and d.adif in (' . $this->eucountries . ')'; - } - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - // Adds orbit type to query - function addOrbitToQuery($postdata,&$binding) { - $sql = ''; - if ($postdata['orbit'] != 'All') { - $sql .= ' AND satellite.orbit = ?'; - $binding[] = $postdata['orbit']; - } - - return $sql; - } - - function getSummaryConfirmed($postdata, $location_list, $wae = false) { - $bindings = []; - - $sql = "SELECT count(distinct thcv.col_dxcc) as count, count(distinct thcv.col_region) regioncount, thcv.col_band FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; - - $sql .= " where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[] = $postdata['mode']; - $bindings[] = $postdata['mode']; - } - - $sql .= " and thcv.col_prop_mode !='SAT'"; - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and d.end is null"; - // } - - if ($wae) { - $sql .= ' and d.adif in ( '. $this->waecountries . ')'; - } else { - $sql .= ' and d.adif in (' . $this->eucountries . ')'; - } - - $sql .= ' group by thcv.col_band'; - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } - - function getSummaryByBandConfirmed($band, $postdata, $location_list, $bandslots, $wae = false) { - $bindings=[]; - $sql = "SELECT count(distinct thcv.col_dxcc) as count, count(distinct thcv.col_region) regioncount FROM " . $this->config->item('table_name') . " thcv"; - $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; - $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; - - $sql .= " where station_id in (" . $location_list . ")"; - if ($wae) { - $sql .= ' and col_dxcc in ( '. $this->waecountries . ') and col_region in ('. $this->region.')'; - } else { - $sql .= " and col_dxcc in ( ". $this->eucountries . ") and coalesce(col_region, '') = ''"; - } - - if ($band == 'SAT') { - $sql .= " and thcv.col_prop_mode = ?"; - $bindings[] = $band; - if ($postdata['sat'] != 'All') { - $sql .= " and col_sat_name = ?"; - $bindings[] = $postdata['sat']; - } - } else if ($band == 'All') { - $bandslots_list = "'".implode("','",$bandslots)."'"; - - $sql .= " and thcv.col_band in (" . $bandslots_list . ")" . - " and thcv.col_prop_mode !='SAT'"; - } else { - $sql .= " and thcv.col_prop_mode !='SAT'"; - $sql .= " and thcv.col_band = ?"; - $bindings[] = $band; - } - - if ($postdata['mode'] != 'All') { - $sql .= " and (col_mode = ? or col_submode = ?)"; - $bindings[] = $postdata['mode']; - $bindings[] = $postdata['mode']; - } - - $sql .= $this->genfunctions->addQslToQuery($postdata); - - $sql .= $this->addOrbitToQuery($postdata,$bindings); - - // if ($postdata['includedeleted'] == NULL) { - $sql .= " and d.end is null"; - // } - - if ($wae) { - $sql .= ' and d.adif in ( '. $this->waecountries . ')'; - } else { - $sql .= ' and d.adif in (' . $this->eucountries . ')'; - } - - $query = $this->db->query($sql,$bindings); - - return $query->result(); - } } ?> diff --git a/application/models/Wapc.php b/application/models/Wapc.php index 009c8a748..89b6186ac 100644 --- a/application/models/Wapc.php +++ b/application/models/Wapc.php @@ -81,17 +81,17 @@ class WAPC extends CI_Model { } // VR else if($line->col_dxcc == '321'){ - $bandWapc['HK'][$band] = ''; + $bandWapc['HK'][$band] = ''; $provinces['HK']['count']++; } // XX9 else if($line->col_dxcc == '152'){ - $bandWapc['MO'][$band] = ''; + $bandWapc['MO'][$band] = ''; $provinces['MO']['count']++; } // BU-BX/BV9P else if($line->col_dxcc == '386' || $line->col_dxcc == '505'){ - $bandWapc['TW'][$band] = ''; + $bandWapc['TW'][$band] = ''; $provinces['TW']['count']++; } } @@ -111,17 +111,17 @@ class WAPC extends CI_Model { } // VR else if($line->col_dxcc == '321'){ - $bandWapc['HK'][$band] = ''; + $bandWapc['HK'][$band] = ''; $provinces['HK']['count']++; } // XX9 else if($line->col_dxcc == '152'){ - $bandWapc['MO'][$band] = ''; + $bandWapc['MO'][$band] = ''; $provinces['MO']['count']++; } // BU-BX/BV9P else if($line->col_dxcc == '386' || $line->col_dxcc == '505'){ - $bandWapc['TW'][$band] = ''; + $bandWapc['TW'][$band] = ''; $provinces['MO']['count']++; } } diff --git a/application/views/adif/import.php b/application/views/adif/import.php index f737173be..6f7ab95a1 100644 --- a/application/views/adif/import.php +++ b/application/views/adif/import.php @@ -339,7 +339,7 @@ -

" . __("DARC DCL") . "") ?> ', ''); ?>

+

" . __("DARC DCL") . "") ?> ', ''); ?>

diff --git a/application/views/adif/import_success.php b/application/views/adif/import_success.php index 2a8ce1788..7c663ae81 100644 --- a/application/views/adif/import_success.php +++ b/application/views/adif/import_success.php @@ -55,7 +55,7 @@

-
Wavelog Wiki") ?> +
Wavelog Wiki") ?>

diff --git a/application/views/api/index.php b/application/views/api/index.php index 3c72dae56..8c71b1b59 100644 --- a/application/views/api/index.php +++ b/application/views/api/index.php @@ -13,7 +13,7 @@

: " onClick='copyApiUrl(apiSiteUrl)'>

diff --git a/application/views/awards/counties/index.php b/application/views/awards/counties/index.php index f0eb3d473..5bfe83ed1 100644 --- a/application/views/awards/counties/index.php +++ b/application/views/awards/counties/index.php @@ -5,7 +5,7 @@

@@ -260,64 +261,60 @@ '.__("(Q)SL-Paper-Card").", "; - echo __("(L)oTW").", "; - echo __("(e)QSL").", "; - echo __('QR(Z)-"confirmation"').", "; - echo __("(C)lublog").", "; - echo __("(W)orked").''; - echo ' + echo __('Legend:'); + echo '
'.__("(Q)SL-Paper-Card").", ";
+		echo __("(L)oTW").", ";
+		echo __("(e)QSL").", ";
+		echo __('QR(Z)-"confirmation"').", ";
+		echo __("(C)lublog").", ";
+		echo __("(W)orked").'
'; + echo ' - - + + '; - foreach($bands as $band) { - if (($posted_band != 'SAT') && ($band == 'SAT')) { - continue; - } - echo ''; - } - echo ' - - '; + foreach($bands as $band) { + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } + echo ''; + } + echo ' + + '; foreach ($dxcc_array as $dxcc => $value) { // Fills the table with the data - echo ' - '; - foreach ($value as $name => $key) { - if (isset($value['Deleted']) && $value['Deleted'] == 1 && $name == "name") { - echo ''; - } else if ($name == "Deleted") { - continue; - } else { - echo ''; - } - } - echo ''; - } - echo '
# ' . __("DXCC Name") . ' ' . __("Prefix") . '' . $band . '
' . $band . '
'. $i++ .'' . $key . ' '.__("Deleted DXCC").'' . $key . '
-

' . __("Summary") . '

+ echo ' + '. $i++ .''; + foreach ($value as $name => $key) { + if (isset($value['Deleted']) && $value['Deleted'] == 1 && $name == "name") { + echo '' . $key . ' '.__("Deleted DXCC").''; + } else if ($name == "Deleted") { + continue; + } else { + echo '' . $key . ''; + } + } + echo ''; + } + echo ' +

' . __("Summary") . '

- - - '; +
+ + '; - $addsat=''; - foreach($bands as $band) { - if ($band != 'SAT') { - echo ''; - } else { - $addsat=''; - } - } - echo ''; - if (count($bands) > 1) { - echo ''; - } - echo $addsat; - echo ' + foreach($bands as $band) { + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } + echo ''; + } + if ($posted_band != 'SAT') { + echo ''; + } + echo ' @@ -325,49 +322,43 @@ '; $addsat=''; foreach ($dxcc_summary['worked'] as $band => $dxcc) { // Fills the table with the data - if ($band != 'SAT') { - echo ''; - } else { - $addsat=''; + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; } - } - if (count($bands) > 1) { - echo ''; - } + if (($posted_band == 'SAT') && ($band == 'Total')) { + continue; + } - if ($addsat != '' && count($dxcc_summary['worked']) > 1) { - echo $addsat; + echo ''; } echo ''; $addsat=''; foreach ($dxcc_summary['confirmed'] as $band => $dxcc) { // Fills the table with the data - if ($band != 'SAT') { - echo ''; - } else { - $addsat=''; + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; } - } - if (count($bands) > 1) { - echo ''; - } - if ($addsat != '' && count($dxcc_summary['confirmed']) > 1) { - echo $addsat; + if (($posted_band == 'SAT') && ($band == 'Total')) { + continue; + } + + echo ''; + } echo ' @@ -375,7 +366,7 @@ '; } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/itu/index.php b/application/views/awards/itu/index.php index c56a4e4f1..a3b264a1f 100644 --- a/application/views/awards/itu/index.php +++ b/application/views/awards/itu/index.php @@ -11,6 +11,17 @@ height: calc(100vh - 480px) !important; max-height: 900px !important; } + + .dropdown-filters-responsive { + width: 800px; + } + + @media (max-width: 900px) { + .dropdown-filters-responsive { + width: 90vw; + max-width: none; + } + }
@@ -31,96 +42,130 @@
-
+
+
+
' . $band . '' . $band . '' . __("Total") . '' . $band . '' . __("Total (ex SAT)") . '
' . __("Total worked") . ''; - if ($band == 'Total') { - echo ''.$dxcc.''; - } else { - echo $dxcc; - } - echo '' . $dxcc . ''; + if ($band == 'Total' && $posted_band != 'SAT') { + echo ''.$dxcc.''; + } else { + echo $dxcc; + } + echo '
' . __("Total confirmed") . ''; - if ($band == 'Total') { - echo ''.$dxcc.''; - } else { - echo $dxcc; - } - echo '' . $dxcc . ''; + if (($posted_band != 'SAT') && ($band == 'Total')) { + echo ''.$dxcc.''; + } else { + echo $dxcc; + } + echo '
- "; + "; foreach($bands as $band) { + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } echo ''; } echo ' @@ -174,32 +229,49 @@ "; - foreach($bands as $band) { - echo ''; - } - echo " - + foreach($bands as $band) { + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } + echo ''; + } + if ($posted_band != 'SAT') { + echo ''; + } + echo ""; - - foreach ($itu_summary['worked'] as $dxcc) { // Fills the table with the data - echo ''; + foreach ($itu_summary['worked'] as $ituz => $value) { + if ($posted_band == 'SAT' && $ituz == 'Total') { + continue; + } + if ($ituz == 'SAT') { + echo ''; + } else { + echo ''; + } } echo ""; - foreach ($itu_summary['confirmed'] as $dxcc) { // Fills the table with the data - echo ''; + foreach ($itu_summary['confirmed'] as $ituz => $value) { + if ($posted_band == 'SAT' && $ituz == 'Total') { + continue; + } + if ($ituz == 'SAT') { + echo ''; + } else { + echo ''; + } } - echo '
#".__("ITU Zone")."" . __("ITU Zone") . "' . $band . '
' . $band . '" . __("Total") . "
' . $band . '' . __("Total (ex SAT)") . '
" . __("Total worked") . "' . $dxcc . '' . $value . '' . $value . '
" . __("Total confirmed") . "' . $dxcc . '' . $value . '' . $value . '
'; } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/wac/index.php b/application/views/awards/wac/index.php index a3ea41d86..b567ea337 100644 --- a/application/views/awards/wac/index.php +++ b/application/views/awards/wac/index.php @@ -2,69 +2,53 @@
-
- -

- -
- +
+ +

+ +
+
-
-
-
-
- input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
- input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
- input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
-
- -
-
-
-
- input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
- input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
- input->post('eqsl')) echo ' checked="checked"'; ?> > - -
-
- input->post('qrz')) echo ' checked="checked"'; ?> > - -
-
-
- +
+
+
+ input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > + +
+
+ input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > + +
+
+ input->post('eqsl')) echo ' checked="checked"'; ?> > + +
+
+ input->post('qrz')) echo ' checked="checked"'; ?> > + +
+
+ input->post('clublog')) echo ' checked="checked"'; ?> > + +
+
+
-
input->post('band') != 'SAT' && $this->input->post('band') != 'All') echo "style=\"display: none\""; ?>> +
input->post('band') != 'SAT' && $this->input->post('band') != 'All') echo "style=\"display: none\""; ?>>
- -
+
+
@@ -132,8 +116,7 @@
- - +
@@ -144,6 +127,13 @@ '.__("(Q)SL-Paper-Card").", "; + echo __("(L)oTW").", "; + echo __("(e)QSL").", "; + echo __('QR(Z)-"confirmation"').", "; + echo __("(C)lublog").", "; + echo __("(W)orked").''; echo " @@ -151,17 +141,20 @@ "; foreach($bands as $band) { - echo ''; + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } + echo ''; } echo ''; - foreach ($wac_array as $wac => $value) { // Fills the table with the data + foreach ($wac_array['matrix'] as $wac => $value) { // Fills the table with the data echo ''; foreach ($value as $key) { - echo ''; + echo ''; } echo ''; } @@ -173,22 +166,56 @@ "; foreach($bands as $band) { + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } echo ''; - } - echo " + } + if ($posted_band != 'SAT') { + echo ""; + } ?> + + - "; + "; - foreach ($wac_summary['worked'] as $wac) { // Fills the table with the data - echo ''; + foreach ($wac_summary['worked'] as $wac => $value) { // Fills the table with the data + if (($posted_band != 'SAT') && ($wac == 'SAT')) { + continue; + } + + if (($posted_band == 'SAT') && ($wac == 'Total')) { + continue; + } + echo ''; } echo ""; - foreach ($wac_summary['confirmed'] as $wac) { // Fills the table with the data - echo ''; + foreach ($wac_summary['confirmed'] as $wac => $value) { // Fills the table with the data + if (($posted_band != 'SAT') && ($wac == 'SAT')) { + continue; + } + + if (($posted_band == 'SAT') && ($wac == 'Total')) { + continue; + } + echo ''; } echo ' @@ -197,7 +224,7 @@ } else { - echo ''; + echo ''; } ?> diff --git a/application/views/awards/wae/index.php b/application/views/awards/wae/index.php index 4334137ec..055ddb8e2 100644 --- a/application/views/awards/wae/index.php +++ b/application/views/awards/wae/index.php @@ -1,3 +1,14 @@ +

@@ -16,152 +27,183 @@ -
- -
-
-
- input->post('includedeleted')) echo ' checked="checked"'; ?> > - -
-
-
*/ -?> - -
-
-
-
- input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
- input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
- input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> > - -
-
-
+
+
# " . __("Continent") . "' . $band . '' . $band . '
' . $i++ . ' '. $wac.'' . $key . '' . $key . '
' . $band . '" . __("Total") . "
" . __("Total (ex SAT)") . "
" . __("Total worked") . "" . __("Total worked") . "' . $wac . ''; + if ($wac == 'Total' && $posted_band != 'SAT') { + echo ''.$value.''; + } else { + echo $value; + } + echo '
" . __("Total confirmed") . "' . $wac . ''; + if ($wac == 'Total' && $posted_band != 'SAT') { + echo ''.$value.''; + } else { + echo $value; + } + echo '
- - - - - '; +
#' . __("WAE Name") . '' . __("Prefix") . '
+ + + + + '; foreach($bands as $band) { + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } echo ''; } echo ' @@ -172,11 +214,11 @@ '; foreach ($value as $name => $key) { if (isset($value['Deleted']) && $value['Deleted'] == 1 && $name == "name") { - echo ''; + echo ''; } else if ($name == "Deleted") { - continue; + continue; } else { - echo ''; + echo ''; } } echo ''; @@ -189,23 +231,60 @@ '; foreach($bands as $band) { - echo ''; - } - echo ' + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } + echo ''; + } + if ($posted_band != 'SAT') { + echo ''; + } + echo ' '; - foreach ($wae_summary['worked'] as $dxcc) { // Fills the table with the data - echo ''; + $addsat=''; + foreach ($wae_summary['worked'] as $band => $dxcc) { // Fills the table with the data + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } + + if (($posted_band == 'SAT') && ($band == 'Total')) { + continue; + } + + echo ''; } echo ''; - foreach ($wae_summary['confirmed'] as $dxcc) { // Fills the table with the data - echo ''; + + $addsat=''; + foreach ($wae_summary['confirmed'] as $band => $dxcc) { // Fills the table with the data + if (($posted_band != 'SAT') && ($band == 'SAT')) { + continue; + } + + if (($posted_band == 'SAT') && ($band == 'Total')) { + continue; + } + + echo ''; } echo ' diff --git a/application/views/awards/wapc/index.php b/application/views/awards/wapc/index.php index 398b4aa24..4046c2281 100644 --- a/application/views/awards/wapc/index.php +++ b/application/views/awards/wapc/index.php @@ -1,3 +1,18 @@ + + + +

@@ -7,7 +22,7 @@ var lang_award_info_ln1 = ""; var lang_award_info_ln2 = ""; var lang_award_info_ln3 = ""; - var lang_award_info_ln4 = "" . __("here") . ""); ?>"; + var lang_award_info_ln4 = "" . __("here") . ""); ?>"; var lang_award_info_ln5 = "";

@@ -103,12 +118,35 @@
+ +
+ +
+ +
+
+
+ +
+ +
+ +
+ ' . __("Nothing found!") . '
'; } ?> +
+ diff --git a/application/views/bandmap/list.php b/application/views/bandmap/list.php index 3d3067df6..ed65050bf 100644 --- a/application/views/bandmap/list.php +++ b/application/views/bandmap/list.php @@ -4,6 +4,7 @@ var cat_timeout_interval = "optionslib->get_option('cat_timeout_interval'); ?>"; var dxcluster_maxage = optionslib->get_option('dxcluster_maxage') ?? 60; ?>; var custom_date_format = ""; + var dxcluster_refresh_time = ; // Detect OS for proper keyboard shortcuts var isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0; @@ -173,7 +174,7 @@ // Map configuration (matches QSO map settings) var map_tile_server = 'optionslib->get_option('option_map_tile_server');?>'; var map_tile_server_copyright = 'optionslib->get_option('option_map_tile_server_copyright');?>'; - var icon_dot_url = "assets/images/dot.png"; + var icon_dot_url = "paths->cache_buster('/assets/images/dot.png'); ?>"; // User gridsquare for home position marker var user_gridsquare = ''; - +
@@ -198,13 +199,13 @@
-
+
+ " aria-label="">
diff --git a/application/views/dashboard/index.php b/application/views/dashboard/index.php index d15802260..a214b69b6 100644 --- a/application/views/dashboard/index.php +++ b/application/views/dashboard/index.php @@ -488,6 +488,13 @@ function getDistance($distance) {
@@ -517,14 +524,14 @@ function getDistance($distance) { @@ -445,15 +486,6 @@
#' . __("WAE Name") . '' . __("Prefix") . '' . $band . '
'. $i++ .'' . $key . ' '.__("Deleted DXCC").'' . $key . ' '.__("Deleted DXCC").'' . $key . '' . $key . '
' . $band . '' . __("Total") . '' . $band . '' . __("Total (ex SAT)") . '
' . __("Total worked") . '' . $dxcc . ''; + if ($band == 'Total' && $posted_band != 'SAT') { + echo ''.$dxcc.''; + } else { + echo $dxcc; + } + echo '
' . __("Total confirmed") . '' . $dxcc . ''; + if (($posted_band != 'SAT') && ($band == 'Total')) { + echo ''.$dxcc.''; + } else { + echo $dxcc; + } + echo '
+ 'text-success', 'Fair' => 'text-warning', 'Poor' => 'text-danger', 'n/a' => 'text-secondary']; + $color = $colors[$condition] ?? ''; + return $condition ? ' ' . $condition : ($condition ?? ''); + } + ?> @@ -498,17 +505,17 @@ function getDistance($distance) { - - - - + + + + - - - - + + + +
 
Day
Night
- - - - - - - - + + + + + + + + diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 724dee4fb..4c17f50cd 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -63,7 +63,7 @@

-

', ''); ?>

+

', ''); ?>


@@ -315,6 +315,45 @@ + + + + + + + + + + + + + + + + + + + + +
KpASFISWSSXNoiseAurora">Kp">A">SFI">SW">SS">X">SSN">Aurora
php-apcu + + + + + +
php-redis + + + + + +
php-memcached + + + + + +
@@ -433,6 +472,8 @@ + +
- - - - -

@@ -472,6 +504,21 @@
+
+ + + + + + + +
diff --git a/application/views/hrdlog/export.php b/application/views/hrdlog/export.php index 678dc96d0..d861beef2 100644 --- a/application/views/hrdlog/export.php +++ b/application/views/hrdlog/export.php @@ -21,7 +21,7 @@

-

http://www.hrdlog.net/EditUser.aspx'); ?>

+

https://www.hrdlog.net/EditUser.aspx'); ?>

config->item('disable_manual_hrdlog'))) { echo '

' . __("Warning") . ' ' . __("This might take a while as QSO uploads are processed sequentially.") . '

'; } ?> - var icon_dot_url = "assets/images/dot.png"; + var icon_dot_url = "paths->cache_buster('/assets/images/dot.png');?>"; // get the user_callsign from session var my_call = "session->userdata('user_callsign'); ?>".toUpperCase(); @@ -143,31 +143,31 @@ - - - - - - + + + + + + uri->segment(1) == "activators") { ?> - + - - - - - - - - - + + + + + + + + + - + + uri->segment(1) == "oqrs") { ?> - + uri->segment(1) == "cron") { ?> - + uri->segment(1) == "options") { ?> @@ -333,69 +333,73 @@ function stopImpersonate_modal() { uri->segment(1) == "awards" && ($this->uri->segment(2) == "iota") ) { ?> - + uri->segment(1) == "awards" && ($this->uri->segment(2) == "dxcc") ) { ?> - + + + +uri->segment(1) == "awards" && ($this->uri->segment(2) == "wae") ) { ?> + uri->segment(1) == "statistics" && $this->uri->segment(2) == "") { ?> - - - + + + uri->segment(1) == "continents") { ?> - - - + + + uri->segment(1) == "adif" || $this->uri->segment(1) == "qrz" || $this->uri->segment(1) == "hrdlog" || $this->uri->segment(1) == "webadif" || $this->uri->segment(1) == "sattimers") { ?> - + uri->segment(1) == "adif" ) { ?> - - + + uri->segment(1) == "notes" ) { ?> uri->segment(2) == "add" || $this->uri->segment(2) == "edit") { ?> - + - + uri->segment(1) == "qso" ) { ?> - + session->userdata('user_dxwaterfall_enable') == 'E' || $this->session->userdata('user_dxwaterfall_enable') == 'Y') && isset($manual_mode) && $manual_mode == 0) { ?> - + uri->segment(1) == "notes" && ($this->uri->segment(2) == "view") ) { ?> - - + + - - - - + + + + uri->segment(1) == "station") { ?> - - - + + + + uri->segment(1) == "debug") { ?> @@ -436,7 +440,7 @@ $(function () { uri->segment(1) == "api") { ?> - + + uri->segment(1) == "" || $this->uri->segment(1) == "dashboard" ) { ?> - - + + - + + - - + + + session->userdata('isWinkeyEnabled')) { ?> - + uri->segment(1) == "qso" || ($this->uri->segment(1) == "contesting" && $this->uri->segment(2) != "add")) { ?> - - - + + + @@ -1349,7 +1323,7 @@ mymap.on('mousemove', onQsoMapMove); var dxwaterfall_cat_state = "none"; - + @@ -1428,7 +1402,7 @@ $(document).ready(function(){ uri->segment(1) == "gridsquares" && !empty($this->uri->segment(2))) { ?> - + + - + + uri->segment(1) == "distances") { ?> - - - - - + + + + + uri->segment(1) == "hrdlog") { ?> - + uri->segment(1) == "qrz") { ?> - + uri->segment(1) == "webadif") { ?> - + uri->segment(2) == "dxcc" || $this->uri->segment(2) == "wae" || $this->uri->segment(2) == "wpx") { ?> @@ -2241,7 +2215,7 @@ $('#sats').change(function(){ } function displayTimelineContacts(querystring, band, mode, propmode, type) { - var baseURL= ""; + var baseURL= ""; $.ajax({ url: baseURL + 'index.php/timeline/details', type: 'post', @@ -2279,28 +2253,28 @@ $('#sats').change(function(){ uri->segment(1) == "usermode") { ?> - + uri->segment(1) == "mode") { ?> - + uri->segment(1) == "band") { ?> - + uri->segment(1) == "accumulated") { ?> - - + + uri->segment(1) == "timeplotter") { ?> - - - - - + + + + + uri->segment(1) == "generic_qsl" || $this->uri->segment(1) == "qsl" || $this->uri->segment(1) == "eqsl") { @@ -2326,8 +2300,8 @@ $('#sats').change(function(){ } ?> - - + + + uri->segment(1) == "themes") { ?> - + @@ -2915,8 +2889,8 @@ function viewEqsl(picture, callsign) { uri->segment(1) == "distancerecords") { ?> - - + + - - + + uri->segment(2) == "wwff") { ?> + ?> - + - + - + optionslib->get_theme(); if ($theme) { ?> - - - - - - + + + + + + uri->segment(1) == "awards")) { @@ -38,33 +38,33 @@ - + - + - - + + uri->segment(1) == "search" && $this->uri->segment(2) == "filter") { ?> - + uri->segment(1) == "notes" && ($this->uri->segment(2) == "add" || $this->uri->segment(2) == "edit" || $this->uri->segment(2) == "view")) || $this->uri->segment(1) == "qso") { ?> - + - - + + uri->segment(1) == "sattimers") { ?> - + - '; - } ?> + + + - '; - } ?> + + + - + <?php if (isset($page_title)) { echo $page_title; @@ -94,7 +94,7 @@ <body dir="<?php echo $language['direction']; ?>"> <nav class="navbar navbar-expand-lg navbar-light bg-light main-nav" id="header-menu"> <div class="container"> - <a class="navbar-brand" href="<?php echo site_url(); ?>"><img class="headerLogo" src="<?php echo base_url(); ?>assets/logo/<?php echo $this->optionslib->get_logo('header_logo'); ?>.png" alt="Logo" /></a> + <a class="navbar-brand" href="<?php echo site_url(); ?>"><img class="headerLogo" src="<?php echo $this->paths->cache_buster('/assets/logo/'. $this->optionslib->get_logo('header_logo').'.png'); ?>" alt="Logo" /></a> <?php if (ENVIRONMENT == "development") { ?> <span class="badge text-bg-danger me-1"><?= __("Developer Mode"); ?></span> <?php } ?> @@ -545,7 +545,7 @@ <div class="dropdown-divider"></div> <li><a class="dropdown-item" href="javascript:displayVersionDialog();" title="Version Information"><i class="fas fa-star"></i> <?= __("Version Info"); ?></a></li> - <li><a class="dropdown-item" target="_blank" href="https://github.com/wavelog/wavelog/wiki" title="Help"><i class="fas fa-question"></i> <?= __("Help"); ?></a></li> + <li><a class="dropdown-item" target="_blank" href="https://docs.wavelog.org/" title="Help"><i class="fas fa-question"></i> <?= __("Help"); ?></a></li> <li><a class="dropdown-item" target="_blank" href="https://github.com/wavelog/wavelog/discussions" title="Forum"><i class="far fa-comment-dots"></i> <?= __("Forum"); ?></a></li> <div class="dropdown-divider"></div> <?php if ($this->session->userdata('impersonate') == 1) { ?> diff --git a/application/views/interface_assets/mini_header.php b/application/views/interface_assets/mini_header.php index 5d0463074..e00c27a1a 100644 --- a/application/views/interface_assets/mini_header.php +++ b/application/views/interface_assets/mini_header.php @@ -7,20 +7,20 @@ <!-- Bootstrap CSS --> <?php if($this->optionslib->get_theme()) { ?> - <link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $this->optionslib->get_theme();?>/bootstrap.min.css"> - <link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/general.css"> - <link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $this->optionslib->get_theme();?>/overrides.css"> + <link rel="stylesheet" href="<?php echo $this->paths->cache_buster('/assets/css/' . $this->optionslib->get_theme() . '/bootstrap.min.css'); ?>"> + <link rel="stylesheet" href="<?php echo $this->paths->cache_buster('/assets/css/general.css'); ?>"> + <link rel="stylesheet" href="<?php echo $this->paths->cache_buster('/assets/css/' . $this->optionslib->get_theme() . '/overrides.css'); ?>"> <?php } ?> - <link rel="stylesheet" href="<?php echo base_url(); ?>assets/fontawesome/css/all.min.css"> + <link rel="stylesheet" href="<?php echo $this->paths->cache_buster('/assets/fontawesome/css/all.min.css'); ?>"> - <link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/jquery.fancybox.min.css" /> + <link rel="stylesheet" href="<?php echo $this->paths->cache_buster('/assets/css/jquery.fancybox.min.css'); ?>" /> <!-- Maps --> - <link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/js/leaflet/leaflet.css" /> + <link rel="stylesheet" type="text/css" href="<?php echo $this->paths->cache_buster('/assets/js/leaflet/leaflet.css'); ?>" /> - <?php if (file_exists(APPPATH.'../assets/css/custom.css')) { echo '<link rel="stylesheet" href="'.base_url().'assets/css/custom.css">'; } ?> + <?php if (file_exists(APPPATH.'../assets/css/custom.css')) { echo '<link rel="stylesheet" href="'.$this->paths->cache_buster('/assets/css/custom.css').'">'; } ?> - <link rel="icon" href="<?php echo base_url(); ?>favicon.ico"> + <link rel="icon" href="<?php echo $this->paths->cache_buster('/favicon.ico'); ?>"> <title><?php if(isset($page_title)) { echo $page_title; } ?> - Wavelog diff --git a/application/views/labels/index.php b/application/views/labels/index.php index bfc00823d..c7ed01595 100644 --- a/application/views/labels/index.php +++ b/application/views/labels/index.php @@ -1,6 +1,7 @@
diff --git a/application/views/labels/startatform.php b/application/views/labels/startatform.php index 62fa9dfb9..2aa308bc7 100644 --- a/application/views/labels/startatform.php +++ b/application/views/labels/startatform.php @@ -1,39 +1,103 @@ + +
-
- -
- + +
+
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+ + +
+ +
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
diff --git a/application/views/logbookadvanced/dbtoolsdialog.php b/application/views/logbookadvanced/dbtoolsdialog.php index e796383c5..5795c21ad 100644 --- a/application/views/logbookadvanced/dbtoolsdialog.php +++ b/application/views/logbookadvanced/dbtoolsdialog.php @@ -2,10 +2,31 @@
- +
-

+

+ + +
+
+
+
+ + +
+
+
+
diff --git a/application/views/logbookadvanced/index.php b/application/views/logbookadvanced/index.php index 6e0521ed7..3e3cca5e8 100644 --- a/application/views/logbookadvanced/index.php +++ b/application/views/logbookadvanced/index.php @@ -79,6 +79,7 @@ let lang_gen_advanced_logbook_confirmedLabel = ''; let lang_gen_advanced_logbook_workedLabel = ''; + let lang_label_print_options = ""; let homegrid =''; duration)) { + echo "\nvar o_template = { duration: {show: 'false'}};"; + echo "\nuser_options={...user_options, ...o_template};"; + } foreach ($mapoptions as $mo) { if ($mo != null) { @@ -506,6 +512,10 @@ $options = json_decode($options);
distance->show ?? "true") == "false") { echo 'style="display:none"'; } ?> class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl"> "> +
+
duration->show ?? "true") == "false") { echo 'style="display:none"'; } ?> class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl"> + + ">
@@ -892,6 +902,9 @@ $options = json_decode($options); datetime->show ?? "true") == "true") { echo '' . __("Date/Time") . ''; + } ?> + duration->show ?? "false") == "true") { + echo '' . __("Duration") . ''; } ?> last_modification->show ?? "false") == "true") { echo '' . __("Last modified") . ''; diff --git a/application/views/logbookadvanced/startatform.php b/application/views/logbookadvanced/startatform.php index 38c45b9ad..1e1f79bd4 100644 --- a/application/views/logbookadvanced/startatform.php +++ b/application/views/logbookadvanced/startatform.php @@ -1,44 +1,115 @@ + +
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- -
-
-
- -
- +
+
+
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ +
+ + +
+ +
diff --git a/application/views/logbookadvanced/useroptions.php b/application/views/logbookadvanced/useroptions.php index 43ddf06cc..6c1618856 100644 --- a/application/views/logbookadvanced/useroptions.php +++ b/application/views/logbookadvanced/useroptions.php @@ -22,6 +22,12 @@
+
+
+ duration->show ?? "false") == "true") { echo 'checked'; } ?>> + +
+
de->show ?? "true") == "true") { echo 'checked'; } ?>> diff --git a/application/views/lotw_views/upload_cert.php b/application/views/lotw_views/upload_cert.php index ebbafe022..4beedd84a 100644 --- a/application/views/lotw_views/upload_cert.php +++ b/application/views/lotw_views/upload_cert.php @@ -25,7 +25,7 @@
  • -
  • ', ''); ?>
  • +
  • ', ''); ?>
  • diff --git a/application/views/options/hon.php b/application/views/options/hon.php index 2ddc99d5f..d2d5b8cca 100644 --- a/application/views/options/hon.php +++ b/application/views/options/hon.php @@ -36,7 +36,7 @@ diff --git a/application/views/options/maptiles.php b/application/views/options/maptiles.php index 75f63bd58..083c2ce0c 100644 --- a/application/views/options/maptiles.php +++ b/application/views/options/maptiles.php @@ -47,7 +47,7 @@


    ', '
    '); ?>
    - ', ''); ?> + ', ''); ?>

    diff --git a/application/views/qslprint/qslprint.php b/application/views/qslprint/qslprint.php index f8d449bf2..4a1f8c133 100644 --- a/application/views/qslprint/qslprint.php +++ b/application/views/qslprint/qslprint.php @@ -50,7 +50,7 @@ if ($qsos->result() != NULL) { foreach ($qsos->result() as $qsl) { echo ''; echo '
    '; - ?>COL_CALL)); ?>Lookup <?php echo strtoupper($qsl->COL_CALL); ?> on QRZ.com Lookup <?php echo strtoupper($qsl->COL_CALL); ?> on HamQTH Lookup <?php echo strtoupper($qsl->COL_CALL); ?> on eQSL.ccCOL_CALL)); ?>Lookup <?php echo strtoupper($qsl->COL_CALL); ?> on QRZ.com Lookup <?php echo strtoupper($qsl->COL_CALL); ?> on HamQTH Lookup <?php echo strtoupper($qsl->COL_CALL); ?> on eQSL.cc'; $timestamp = strtotime($qsl->COL_TIME_ON); echo date($custom_date_format, $timestamp); echo ''; echo ''; $timestamp = strtotime($qsl->COL_TIME_ON); echo date('H:i', $timestamp); echo ''; echo ''; echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE; echo ''; diff --git a/application/views/qslprint/qsolist.php b/application/views/qslprint/qsolist.php index 4e3386abd..9c8b3e749 100644 --- a/application/views/qslprint/qsolist.php +++ b/application/views/qslprint/qsolist.php @@ -41,8 +41,24 @@ if ($qsos->result() != NULL) { echo ''; $timestamp = strtotime($qsl->COL_TIME_ON); echo date($custom_date_format, $timestamp); echo ''; echo ''; $timestamp = strtotime($qsl->COL_TIME_ON); echo date('H:i', $timestamp); echo ''; echo ''; echo $qsl->COL_SUBMODE==null?$qsl->COL_MODE:$qsl->COL_SUBMODE; echo ''; - echo ''; if($qsl->COL_SAT_NAME != null) { echo __("SAT") . ' ' . $qsl->COL_SAT_NAME . ' '. strtolower($qsl->COL_BAND) . '/' . strtolower($qsl->COL_BAND_RX); } else { echo strtolower($qsl->COL_BAND); }; echo ''; - echo ''; if($qsl->COL_SAT_NAME != null) { echo __("SAT") . ' ' . $qsl->COL_SAT_NAME . ' ' . $this->frequency->qrg_conversion($qsl->COL_FREQ) . '/' . $this->frequency->qrg_conversion($qsl->COL_FREQ_RX); } else { echo $this->frequency->qrg_conversion($qsl->COL_FREQ); }; echo ''; + echo ''; if($qsl->COL_SAT_NAME != null) { + $band_rx = strtolower($qsl->COL_BAND_RX ?? ''); + $band = strtolower($qsl->COL_BAND); + if ($band_rx && $band && $band_rx != $band) { + echo __("SAT") . ' ' . $qsl->COL_SAT_NAME . ' ' . $band . '/' . $band_rx; + } else { + echo __("SAT") . ' ' . $qsl->COL_SAT_NAME . ' ' . $band; + } + } else { echo strtolower($qsl->COL_BAND); }; echo ''; + echo ''; if($qsl->COL_SAT_NAME != null) { + $freq_rx = $qsl->COL_FREQ_RX ?? 0; + $freq = $qsl->COL_FREQ ?? 0; + if ($freq_rx && $freq && !$this->frequency->frequencies_are_equal($freq, $freq_rx)) { + echo __("SAT") . ' ' . $qsl->COL_SAT_NAME . ' ' . $this->frequency->qrg_conversion($freq) . '/' . $this->frequency->qrg_conversion($freq_rx); + } else { + echo __("SAT") . ' ' . $qsl->COL_SAT_NAME . ' ' . $this->frequency->qrg_conversion($freq); + } + } else { echo $this->frequency->qrg_conversion($qsl->COL_FREQ); }; echo ''; echo '' . $qsl->COL_RST_SENT . ''; echo '' . $qsl->COL_RST_RCVD . ''; echo '' . $qsl->station_callsign . ''; diff --git a/application/views/qso/edit_ajax.php b/application/views/qso/edit_ajax.php index ce378f30a..4038604b5 100644 --- a/application/views/qso/edit_ajax.php +++ b/application/views/qso/edit_ajax.php @@ -5,18 +5,18 @@ optionslib->get_theme()) { ?> - - - + + + - + - + - - - + + + diff --git a/application/views/qso/edit_done.php b/application/views/qso/edit_done.php index 6afdd1cff..76b4ebe06 100644 --- a/application/views/qso/edit_done.php +++ b/application/views/qso/edit_done.php @@ -3,7 +3,7 @@ - + + - - - - - - - + + + + + + + - - - - + + + + diff --git a/application/views/visitor/exportmap/header.php b/application/views/visitor/exportmap/header.php index c83e82b65..b69dfbd33 100644 --- a/application/views/visitor/exportmap/header.php +++ b/application/views/visitor/exportmap/header.php @@ -8,19 +8,19 @@ optionslib->get_theme()) { ?> - - - + + + - + - + - - + + - + <?php if (isset($page_title)) { echo $page_title; } ?> - Wavelog diff --git a/application/views/visitor/layout/footer.php b/application/views/visitor/layout/footer.php index 2dc434e9d..24e722d67 100644 --- a/application/views/visitor/layout/footer.php +++ b/application/views/visitor/layout/footer.php @@ -6,7 +6,7 @@ */ var base_url = ""; // Base URL var site_url = ""; // Site URL - var icon_dot_url = "assets/images/dot.png"; + var icon_dot_url = "paths->cache_buster('/assets/images/dot.png'); ?>"; var option_map_tile_server_copyright = 'optionslib->get_option('option_map_tile_server_copyright');?>'; var option_map_tile_subdomains = 'optionslib->get_option('option_map_tile_subdomains') ?? 'abc';?>'; var lang_general_gridsquares = ""; @@ -14,21 +14,21 @@ - - - - - - - - - + + + + + + + + + paths->cache_buster('/assets/json/datatables_languages/' . $local_code . '.json'); // Check if the file exists if ($lang_code != 'en' && !file_exists(FCPATH . "assets/json/datatables_languages/" . $local_code . ".json")) { @@ -57,8 +57,8 @@ if ($lang_code != 'en' && !file_exists(FCPATH . "assets/json/datatables_language - - + + - + + session->userdata('user_type') >= 2) { ?> - - - - - + + + + + '; + echo ''; } ?> - + <?php if(isset($page_title)) { echo $page_title; } ?> - Wavelog @@ -50,9 +50,9 @@ '; + echo ''; } else { - echo 'Logo'; + echo 'Logo'; } ?> diff --git a/application/views/widgets/on_air.php b/application/views/widgets/on_air.php index 49cf85ee4..3411f544f 100644 --- a/application/views/widgets/on_air.php +++ b/application/views/widgets/on_air.php @@ -22,9 +22,9 @@ The widget automatically detects the nojs=1 parameter and serves a JavaScript-fr - - - + + + <?= "Wavelog Dynamic On-Air widget"; ?>