From 7c2546264779f319a8344293b3514eee9f03f78d Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Fri, 24 Jan 2025 15:55:20 +0100 Subject: [PATCH 01/17] [Advanced Logbook] Query fix for getting band/mode/sat to the dropdowns --- application/controllers/Continents.php | 7 +- application/controllers/Logbookadvanced.php | 4 +- application/models/Logbookadvanced_model.php | 57 +++++++- application/views/continents/index.php | 4 +- assets/js/sections/logbookadvanced.js | 131 ++++++++++--------- 5 files changed, 133 insertions(+), 70 deletions(-) diff --git a/application/controllers/Continents.php b/application/controllers/Continents.php index 53237f1b8..0d4886de2 100644 --- a/application/controllers/Continents.php +++ b/application/controllers/Continents.php @@ -7,9 +7,10 @@ class Continents extends CI_Controller { $this->load->model('user_model'); $this->load->model('bands'); $this->load->model('logbookadvanced_model'); + $this->load->model('gridmap_model'); $data['bands'] = $this->bands->get_worked_bands(); - $data['modes'] = $this->logbookadvanced_model->get_modes(); + $data['modes'] = $this->gridmap_model->get_worked_modes(); if(!$this->user_model->authorize($this->config->item('auth_mode'))) { if($this->user_model->validate_session()) { @@ -18,7 +19,7 @@ class Continents extends CI_Controller { } else { redirect('user/login'); } - } + } // Render User Interface // Set Page Title @@ -29,7 +30,7 @@ class Continents extends CI_Controller { $this->load->view('continents/index'); $this->load->view('interface_assets/footer'); } - + public function get_continents() { diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php index 9ab424a85..b98d89b80 100644 --- a/application/controllers/Logbookadvanced.php +++ b/application/controllers/Logbookadvanced.php @@ -53,14 +53,14 @@ class Logbookadvanced extends CI_Controller { $pageData['modes'] = $this->logbookadvanced_model->get_modes(); $pageData['dxccarray'] = $this->logbook_model->fetchDxcc(); $pageData['iotaarray'] = $this->logbook_model->fetchIota(); - $pageData['sats'] = $this->bands->get_worked_sats(); + $pageData['sats'] = $this->logbookadvanced_model->get_worked_sats(); $pageData['orbits'] = $this->bands->get_worked_orbits(); $pageData['station_profile'] = $this->stations->all_of_user(); $pageData['active_station_info'] = $station_profile->row(); $pageData['homegrid'] = explode(',', $this->stations->find_gridsquare()); $pageData['active_station_id'] = $active_station_id; - $pageData['bands'] = $this->bands->get_worked_bands(); + $pageData['bands'] = $this->logbookadvanced_model->get_worked_bands(); // Get Date format if($this->session->userdata('user_date_format')) { diff --git a/application/models/Logbookadvanced_model.php b/application/models/Logbookadvanced_model.php index 8b6abf873..b3c028d4b 100644 --- a/application/models/Logbookadvanced_model.php +++ b/application/models/Logbookadvanced_model.php @@ -596,14 +596,12 @@ class Logbookadvanced_model extends CI_Model { } function get_modes() { - if (!$this->logbooks_locations_array) { - return null; - } $modes = array(); $this->db->select('distinct col_mode, coalesce(col_submode, "") col_submode', FALSE); - $this->db->where_in('station_id', $this->logbooks_locations_array); + $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'); $query = $this->db->get($this->config->item('table_name')); @@ -619,6 +617,57 @@ class Logbookadvanced_model extends CI_Model { return $modes; } + 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 + 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); + } + + $sql = "SELECT distinct LOWER(`COL_PROP_MODE`) as `COL_PROP_MODE` 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)); + } + + usort( + $worked_slots, + function($b, $a) { + sscanf($a, '%f%s', $ac, $ar); + sscanf($b, '%f%s', $bc, $br); + if ($ar == $br) { + return ($ac < $bc) ? -1 : 1; + } + return ($ar < $br) ? -1 : 1; + } + ); + + return $worked_slots; + } + + 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"; + + $data = $this->db->query($sql, array($this->session->userdata('user_id'))); + + $worked_sats = array(); + foreach($data->result() as $row){ + array_push($worked_sats, $row->col_sat_name); + } + + return $worked_sats; + } + function getQslsForQsoIds($ids) { $this->db->select('*'); $this->db->from($this->config->item('table_name')); diff --git a/application/views/continents/index.php b/application/views/continents/index.php index 643979e06..c72b72186 100644 --- a/application/views/continents/index.php +++ b/application/views/continents/index.php @@ -40,7 +40,7 @@ @@ -67,4 +67,4 @@ - \ No newline at end of file + diff --git a/assets/js/sections/logbookadvanced.js b/assets/js/sections/logbookadvanced.js index f82fcc8e4..d9b25393e 100644 --- a/assets/js/sections/logbookadvanced.js +++ b/assets/js/sections/logbookadvanced.js @@ -813,9 +813,18 @@ $(document).ready(function () { action: function (dialogItself) { $('#optionButton').prop("disabled", false); $('#closeButton').prop("disabled", true); - saveOptions(); - dialogItself.close(); - location.reload(); + saveOptions().then(() => { + dialogItself.close(); + location.reload(); + }).catch(error => { + BootstrapDialog.alert({ + title: 'Error', + message: 'An error occurred while saving options: ' + error, + type: BootstrapDialog.TYPE_DANGER, // Sets the dialog style to "danger" + closable: true, + buttonLabel: 'Close' + }); + }); } }, { @@ -1263,61 +1272,65 @@ function printlabel() { function saveOptions() { $('#saveButton').prop("disabled", true); $('#closeButton').prop("disabled", true); - $.ajax({ - url: base_url + 'index.php/logbookadvanced/setUserOptions', - type: 'post', - data: { - datetime: $('input[name="datetime"]').is(':checked') ? true : false, - de: $('input[name="de"]').is(':checked') ? true : false, - dx: $('input[name="dx"]').is(':checked') ? true : false, - mode: $('input[name="mode"]').is(':checked') ? true : false, - rsts: $('input[name="rsts"]').is(':checked') ? true : false, - rstr: $('input[name="rstr"]').is(':checked') ? true : false, - band: $('input[name="band"]').is(':checked') ? true : false, - myrefs: $('input[name="myrefs"]').is(':checked') ? true : false, - name: $('input[name="name"]').is(':checked') ? true : false, - qslvia: $('input[name="qslvia"]').is(':checked') ? true : false, - qsl: $('input[name="qsl"]').is(':checked') ? true : false, - clublog: $('input[name="clublog"]').is(':checked') ? true : false, - lotw: $('input[name="lotw"]').is(':checked') ? true : false, - eqsl: $('input[name="eqsl"]').is(':checked') ? true : false, - qslmsgs: $('input[name="qslmsgs"]').is(':checked') ? true : false, - qslmsgr: $('input[name="qslmsgr"]').is(':checked') ? true : false, - dxcc: $('input[name="dxcc"]').is(':checked') ? true : false, - state: $('input[name="state"]').is(':checked') ? true : false, - cqzone: $('input[name="cqzone"]').is(':checked') ? true : false, - ituzone: $('input[name="ituzone"]').is(':checked') ? true : false, - iota: $('input[name="iota"]').is(':checked') ? true : false, - pota: $('input[name="pota"]').is(':checked') ? true : false, - operator: $('input[name="operator"]').is(':checked') ? true : false, - comment: $('input[name="comment"]').is(':checked') ? true : false, - propagation: $('input[name="propagation"]').is(':checked') ? true : false, - contest: $('input[name="contest"]').is(':checked') ? true : false, - gridsquare: $('input[name="gridsquare"]').is(':checked') ? true : false, - sota: $('input[name="sota"]').is(':checked') ? true : false, - dok: $('input[name="dok"]').is(':checked') ? true : false, - wwff: $('input[name="wwff"]').is(':checked') ? true : false, - sig: $('input[name="sig"]').is(':checked') ? true : false, - region: $('input[name="region"]').is(':checked') ? true : false, - continent: $('input[name="continent"]').is(':checked') ? true : false, - distance: $('input[name="distance"]').is(':checked') ? true : false, - antennaazimuth: $('input[name="antennaazimuth"]').is(':checked') ? true : false, - antennaelevation: $('input[name="antennaelevation"]').is(':checked') ? true : false, - qrz: $('input[name="qrz"]').is(':checked') ? true : false, - profilename: $('input[name="profilename"]').is(':checked') ? true : false, - stationpower: $('input[name="stationpower"]').is(':checked') ? true : false, - gridsquare_layer: $('input[name="gridsquareoverlay"]').is(':checked') ? true : false, - path_lines: $('input[name="pathlines"]').is(':checked') ? true : false, - cqzone_layer: $('input[name="cqzones"]').is(':checked') ? true : false, - ituzone_layer: $('input[name="ituzones"]').is(':checked') ? true : false, - nightshadow_layer: $('input[name="nightshadow"]').is(':checked') ? true : false, - }, - success: function(data) { - $('#saveButton').prop("disabled", false); - $('#closeButton').prop("disabled", false); - }, - error: function() { - $('#saveButton').prop("disabled", false); - }, + return new Promise((resolve, reject) => { + $.ajax({ + url: base_url + 'index.php/logbookadvanced/setUserOptions', + type: 'post', + data: { + datetime: $('input[name="datetime"]').is(':checked') ? true : false, + de: $('input[name="de"]').is(':checked') ? true : false, + dx: $('input[name="dx"]').is(':checked') ? true : false, + mode: $('input[name="mode"]').is(':checked') ? true : false, + rsts: $('input[name="rsts"]').is(':checked') ? true : false, + rstr: $('input[name="rstr"]').is(':checked') ? true : false, + band: $('input[name="band"]').is(':checked') ? true : false, + myrefs: $('input[name="myrefs"]').is(':checked') ? true : false, + name: $('input[name="name"]').is(':checked') ? true : false, + qslvia: $('input[name="qslvia"]').is(':checked') ? true : false, + qsl: $('input[name="qsl"]').is(':checked') ? true : false, + clublog: $('input[name="clublog"]').is(':checked') ? true : false, + lotw: $('input[name="lotw"]').is(':checked') ? true : false, + eqsl: $('input[name="eqsl"]').is(':checked') ? true : false, + qslmsgs: $('input[name="qslmsgs"]').is(':checked') ? true : false, + qslmsgr: $('input[name="qslmsgr"]').is(':checked') ? true : false, + dxcc: $('input[name="dxcc"]').is(':checked') ? true : false, + state: $('input[name="state"]').is(':checked') ? true : false, + cqzone: $('input[name="cqzone"]').is(':checked') ? true : false, + ituzone: $('input[name="ituzone"]').is(':checked') ? true : false, + iota: $('input[name="iota"]').is(':checked') ? true : false, + pota: $('input[name="pota"]').is(':checked') ? true : false, + operator: $('input[name="operator"]').is(':checked') ? true : false, + comment: $('input[name="comment"]').is(':checked') ? true : false, + propagation: $('input[name="propagation"]').is(':checked') ? true : false, + contest: $('input[name="contest"]').is(':checked') ? true : false, + gridsquare: $('input[name="gridsquare"]').is(':checked') ? true : false, + sota: $('input[name="sota"]').is(':checked') ? true : false, + dok: $('input[name="dok"]').is(':checked') ? true : false, + wwff: $('input[name="wwff"]').is(':checked') ? true : false, + sig: $('input[name="sig"]').is(':checked') ? true : false, + region: $('input[name="region"]').is(':checked') ? true : false, + continent: $('input[name="continent"]').is(':checked') ? true : false, + distance: $('input[name="distance"]').is(':checked') ? true : false, + antennaazimuth: $('input[name="antennaazimuth"]').is(':checked') ? true : false, + antennaelevation: $('input[name="antennaelevation"]').is(':checked') ? true : false, + qrz: $('input[name="qrz"]').is(':checked') ? true : false, + profilename: $('input[name="profilename"]').is(':checked') ? true : false, + stationpower: $('input[name="stationpower"]').is(':checked') ? true : false, + gridsquare_layer: $('input[name="gridsquareoverlay"]').is(':checked') ? true : false, + path_lines: $('input[name="pathlines"]').is(':checked') ? true : false, + cqzone_layer: $('input[name="cqzones"]').is(':checked') ? true : false, + ituzone_layer: $('input[name="ituzones"]').is(':checked') ? true : false, + nightshadow_layer: $('input[name="nightshadow"]').is(':checked') ? true : false, + }, + success: function(data) { + $('#saveButton').prop("disabled", false); + $('#closeButton').prop("disabled", false); + resolve(data); + }, + error: function(error) { + $('#saveButton').prop("disabled", false); + reject(error); + }, + }); }); } From 1e103ce8351067a0f45a812593fba7a3dcc8c18b Mon Sep 17 00:00:00 2001 From: Alexander Date: Sat, 25 Jan 2025 21:27:24 +0000 Subject: [PATCH 02/17] Translated using Weblate (Dutch) Currently translated at 23.9% (575 of 2403 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/nl/ --- .../locale/nl_NL/LC_MESSAGES/messages.po | 1097 ++++++++++------- 1 file changed, 618 insertions(+), 479 deletions(-) diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index f1d8158fa..1457f1959 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -5,12 +5,13 @@ # Casper van Lieburg , 2024. # Fabian Berg , 2024. # PE1PQX , 2025. +# Alexander , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-23 16:03+0000\n" -"Last-Translator: PE1PQX \n" +"PO-Revision-Date: 2025-01-26 15:27+0000\n" +"Last-Translator: Alexander \n" "Language-Team: Dutch \n" "Language: nl_NL\n" @@ -126,7 +127,7 @@ msgstr "" #: application/controllers/User_options.php:9 #: application/controllers/Webadif.php:91 application/models/Club_model.php:52 msgid "You're not allowed to do that!" -msgstr "" +msgstr "Je mag dat niet doen!" #: application/controllers/Accumulated.php:19 #: application/views/interface_assets/header.php:159 @@ -136,7 +137,7 @@ msgstr "Opgetelde statistieken" #: application/controllers/Activated_gridmap.php:10 #: application/views/activated_gridmap/index.php:5 msgid "Activated Gridsquare Map" -msgstr "Geaktiveerde Gridsquare Kaart" +msgstr "Kaart met geactiveerde Gridsquares" #: application/controllers/Activated_gridmap.php:31 #: application/controllers/Awards.php:922 @@ -154,47 +155,47 @@ msgstr "Gridsquares" #: application/controllers/Gridmap.php:32 #: application/controllers/Visitor.php:386 msgid "Gridsquares confirmed" -msgstr "Gridsquares bevestigd" +msgstr "Bevestigde gridsquares" #: application/controllers/Activated_gridmap.php:33 #: application/controllers/Gridmap.php:33 #: application/controllers/Visitor.php:387 msgid "Gridsquares not confirmed" -msgstr "Gridsquares niet bevestigd" +msgstr "Niet bevestigde gridsquares" #: application/controllers/Activated_gridmap.php:34 msgid "Total gridsquares activated" -msgstr "Totaal Gridsquares geactiveerd" +msgstr "Totaal geactiveerde gridsquares" #: application/controllers/Activated_gridmap.php:36 #: application/controllers/Gridmap.php:36 #: application/controllers/Visitor.php:390 msgid "Fields" -msgstr "" +msgstr "Vakken" #: application/controllers/Activated_gridmap.php:37 #: application/controllers/Gridmap.php:37 #: application/controllers/Visitor.php:391 msgid "Fields confirmed" -msgstr "" +msgstr "Bevestigde vakken" #: application/controllers/Activated_gridmap.php:38 #: application/controllers/Gridmap.php:38 #: application/controllers/Visitor.php:392 msgid "Fields not confirmed" -msgstr "" +msgstr "Onbevestigde vakken" #: application/controllers/Activated_gridmap.php:39 #: application/controllers/Gridmap.php:39 #: application/controllers/Visitor.php:393 msgid "Total fields worked" -msgstr "" +msgstr "Totaal aantal gewerkte vakken" #: application/controllers/Activators.php:20 #: application/views/activators/index.php:5 #: application/views/interface_assets/header.php:149 msgid "Gridsquare Activators" -msgstr "Gridsquares acticators" +msgstr "Geactiveerde gridsquares" #: application/controllers/Activatorsmap.php:17 #: application/views/activators/index.php:2 @@ -226,7 +227,7 @@ msgstr "File soorten niet ondersteund" #: application/controllers/Adif.php:260 #: application/views/adif/import_failed.php:12 msgid "ADIF Import failed!" -msgstr "" +msgstr "ADIF importeren gefaald!" #: application/controllers/Adif.php:274 msgid "Station Profile not valid for User" @@ -264,30 +265,30 @@ msgstr "Wijzig API beschrijving" #: application/controllers/Api.php:56 #, php-format msgid "API Key %s description has been updated." -msgstr "API leutel %s beschrijving is gewijzigd" +msgstr "API sleutel %s beschrijving is gewijzigd." #: application/controllers/Api.php:68 msgid "Invalid API rights" -msgstr "" +msgstr "Ongeldige API rechten" #: application/controllers/Api.php:82 msgid "API Key generated" -msgstr "" +msgstr "API sleutel gegenereerd" #: application/controllers/Api.php:84 msgid "API Key could not be generated" -msgstr "" +msgstr "API sleutel kon niet worden gegenereerd" #: application/controllers/Api.php:98 #, php-format msgid "API Key %s has been deleted" -msgstr "" +msgstr "API sleutel %s is verwijderd" #: application/controllers/Awards.php:22 #: application/views/interface_assets/header.php:169 #: application/views/qso/edit_ajax.php:35 msgid "Awards" -msgstr "" +msgstr "Awards" #: application/controllers/Awards.php:92 application/controllers/Awards.php:175 #: application/controllers/Awards.php:330 @@ -307,9 +308,9 @@ msgstr "" #: application/controllers/Awards.php:1785 #: application/controllers/Awards.php:1914 #: application/controllers/Awards.php:1992 -#, php-format +#, fuzzy, php-format msgid "Awards - %s" -msgstr "" +msgstr "Awards - %s" #: application/controllers/Awards.php:92 #: application/views/awards/dok/index.php:149 @@ -322,7 +323,7 @@ msgstr "" #: application/views/qso/index.php:562 application/views/user/edit.php:623 #: application/views/view_log/qso.php:460 msgid "DOK" -msgstr "" +msgstr "DOK" #: application/controllers/Awards.php:175 application/views/awards/index.php:7 #: application/views/bandmap/list.php:116 application/views/bands/index.php:48 @@ -349,21 +350,21 @@ msgstr "DXCC" #: application/controllers/Awards.php:254 msgid "Awards - WAJA" -msgstr "" +msgstr "Awards - WAJA" #: application/controllers/Awards.php:330 application/views/bands/index.php:51 #: application/views/interface_assets/header.php:225 msgid "JCC" -msgstr "" +msgstr "JCC" #: application/controllers/Awards.php:378 application/views/bands/index.php:57 #: application/views/interface_assets/header.php:181 msgid "VUCC" -msgstr "" +msgstr "VUCC" #: application/controllers/Awards.php:408 msgid "Log View - VUCC" -msgstr "" +msgstr "Logweergave - VUCC" #: application/controllers/Awards.php:456 #: application/controllers/Callstats.php:100 @@ -375,37 +376,37 @@ msgstr "" #: application/controllers/Timeline.php:138 #: application/controllers/Timeline.php:141 msgid "Log View" -msgstr "" +msgstr "Logweergave" #: application/controllers/Awards.php:457 #: application/controllers/Callstats.php:101 msgid " and band " -msgstr "" +msgstr " en band " #: application/controllers/Awards.php:460 #: application/controllers/Callstats.php:104 msgid " and sat " -msgstr "" +msgstr " en satelliet " #: application/controllers/Awards.php:463 #: application/controllers/Callstats.php:107 msgid " and orbit type " -msgstr "" +msgstr " en baansoort " #: application/controllers/Awards.php:467 #: application/controllers/Callstats.php:111 msgid " and propagation " -msgstr "" +msgstr " en propagatie " #: application/controllers/Awards.php:470 #: application/controllers/Callstats.php:114 msgid " and mode " -msgstr "" +msgstr " en mode " #: application/controllers/Awards.php:473 #: application/controllers/Callstats.php:117 msgid " and " -msgstr "" +msgstr " en " #: application/controllers/Awards.php:489 #: application/controllers/Logbook.php:1286 @@ -431,7 +432,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:9 #: application/views/visitor/index.php:21 msgid "SOTA" -msgstr "" +msgstr "SOTA" #: application/controllers/Awards.php:506 #: application/controllers/Logbook.php:1287 @@ -451,7 +452,7 @@ msgstr "" #: application/views/user/edit.php:343 #: application/views/view_log/partial/log_ajax.php:10 msgid "WWFF" -msgstr "" +msgstr "WWFF" #: application/controllers/Awards.php:523 #: application/controllers/Logbook.php:1288 @@ -471,22 +472,22 @@ msgstr "" #: application/views/user/edit.php:344 #: application/views/view_log/partial/log_ajax.php:11 msgid "POTA" -msgstr "" +msgstr "POTA" #: application/controllers/Awards.php:594 msgid "CQ Magazine WAZ" -msgstr "" +msgstr "CQ Magazine WAZ" #: application/controllers/Awards.php:655 #: application/views/accumulate/index.php:54 #: application/views/timeline/index.php:45 msgid "Worked All States (WAS)" -msgstr "" +msgstr "Worked All States (WAS)" #: application/controllers/Awards.php:717 application/views/bands/index.php:53 #: application/views/interface_assets/header.php:203 msgid "RAC" -msgstr "" +msgstr "RAC" #: application/controllers/Awards.php:779 application/views/bands/index.php:49 msgid "H26" @@ -494,78 +495,79 @@ msgstr "" #: application/controllers/Awards.php:859 msgid "IOTA (Island On The Air)" -msgstr "" +msgstr "IOTA (Island On The Air)" #: application/controllers/Awards.php:870 #: application/controllers/Awards.php:884 #: application/views/interface_assets/header.php:245 msgid "US Counties" -msgstr "" +msgstr "US Counties" #: application/controllers/Awards.php:899 +#, fuzzy msgid "Log View - Counties" -msgstr "" +msgstr "Logweergave - Counties" #: application/controllers/Awards.php:906 msgid "Awards - " -msgstr "" +msgstr "Awards - " #: application/controllers/Awards.php:923 #: application/controllers/Awards.php:955 msgid "Gridsquares worked" -msgstr "" +msgstr "Gewerkte gridsquared" #: application/controllers/Awards.php:924 #: application/controllers/Awards.php:956 msgid "Gridsquares confirmed on LoTW" -msgstr "" +msgstr "Door LoTW bevestigde gridsquares" #: application/controllers/Awards.php:925 #: application/controllers/Awards.php:957 msgid "Gridsquares confirmed by paper QSL" -msgstr "" +msgstr "Door papieren QSL bevestigde gridsquares" #: application/controllers/Awards.php:942 msgid "Fred Fish Memorial Award (FFMA)" -msgstr "" +msgstr "Fred Fish Memorial Award (FFMA)" #: application/controllers/Awards.php:1143 #: application/views/interface_assets/header.php:179 #: application/views/logbookadvanced/useroptions.php:126 msgid "SIG" -msgstr "" +msgstr "SIG" #: application/controllers/Awards.php:1161 msgid "Awards - SIG - " -msgstr "" +msgstr "Awards - SIG - " #: application/controllers/Awards.php:1785 #: application/views/awards/itu/index.php:20 msgid "ITU Zones" -msgstr "" +msgstr "ITU Zones" #: application/controllers/Awards.php:1914 #: application/views/awards/wac/index.php:8 #: application/views/interface_assets/header.php:185 msgid "Worked All Continents (WAC)" -msgstr "" +msgstr "Worked All Continents (WAC)" #: application/controllers/Awards.php:1992 msgid "WAE" -msgstr "" +msgstr "WAE" #: application/controllers/Backup.php:15 application/views/backup/main.php:14 #: application/views/interface_assets/header.php:293 msgid "Backup" -msgstr "" +msgstr "Back-up" #: application/controllers/Backup.php:50 msgid "ADIF - Backup" -msgstr "" +msgstr "ADIF - Back-up" #: application/controllers/Backup.php:84 msgid "Notes - Backup" -msgstr "" +msgstr "Notities - Back-up" #: application/controllers/Band.php:25 application/views/bands/index.php:28 #: application/views/bands/index.php:32 @@ -573,15 +575,15 @@ msgstr "" #: application/views/statistics/index.php:16 #: application/views/statistics/index.php:65 msgid "Bands" -msgstr "" +msgstr "Banden" #: application/controllers/Band.php:39 application/controllers/Mode.php:41 msgid "Create Mode" -msgstr "" +msgstr "Maak modus" #: application/controllers/Band.php:64 application/views/bands/index.php:150 msgid "Edit Band" -msgstr "" +msgstr "Band bewerken" #: application/controllers/Bandmap.php:28 #: application/controllers/Bandmap.php:69 @@ -589,19 +591,20 @@ msgstr "" #: application/controllers/Options.php:156 #: application/views/options/sidebar.php:10 msgid "DXCluster" -msgstr "" +msgstr "DXCluster" #: application/controllers/Cabrillo.php:20 msgid "Export Cabrillo" -msgstr "" +msgstr "Exporteer Cabrillo" #: application/controllers/Cabrillo.php:150 msgid "Cabrillo Import" -msgstr "" +msgstr "Cabrillo importeren" #: application/controllers/Cabrillo.php:197 msgid "Broken CBR file - no QSO data or incomplete header found." msgstr "" +"Gebroken CBR-bestand - geen QSO-gegevens of onvolledige header gevonden." #: application/controllers/Cabrillo.php:243 #, php-format @@ -609,91 +612,94 @@ msgid "" "QSO %d not found or more than 1 QSO found that match the criteria of the CBR " "file. Skipping as a safety measure." msgstr "" +"QSO %d niet gevonden of meer dan 1 QSO gevonden die aan de criteria van het " +"CBR-bestand voldoen. Wordt overgeslagen als veiligheidsmaatregel." #: application/controllers/Cabrillo.php:301 msgid "CBR Data Imported" -msgstr "" +msgstr "CBR-gegevens geïmporteerd" #: application/controllers/Callstats.php:19 #: application/views/callstats/index.php:2 msgid "Callsign statistics" -msgstr "" +msgstr "Roepnaamstatistieken" #: application/controllers/Cfdexport.php:20 #: application/views/interface_assets/header.php:442 msgid "CFD Export" -msgstr "" +msgstr "CFD-export" #: application/controllers/Club.php:23 msgid "Club Officer" -msgstr "" +msgstr "Clubfunctionaris" #: application/controllers/Club.php:24 msgid "Club Member" -msgstr "" +msgstr "Club lid" #: application/controllers/Club.php:44 application/models/Club_model.php:75 #: application/models/Club_model.php:149 application/models/Club_model.php:191 msgid "Invalid User ID!" -msgstr "" +msgstr "Ongeldig gebruikers-ID!" #: application/controllers/Club.php:52 msgid "This user is not a club station." -msgstr "" +msgstr "Deze gebruiker is geen clubstation." #: application/controllers/Club.php:56 #: application/views/club/permissions.php:10 #: application/views/user/index.php:207 msgid "Club Permissions" -msgstr "" +msgstr "Clubrechten" #: application/controllers/Club.php:118 application/controllers/Club.php:147 #: application/controllers/Club.php:174 application/models/Club_model.php:22 #: application/models/Club_model.php:70 application/models/Club_model.php:144 #: application/models/Club_model.php:186 msgid "Invalid Club ID!" -msgstr "" +msgstr "Ongeldig club-ID!" #: application/controllers/Club.php:130 msgid "User could not be notified. Please check your email settings." msgstr "" +"Gebruiker kon niet worden geïnformeerd. Controleer je e-mailinstellingen." #: application/controllers/Club.php:134 msgid "Club member permissions have been updated." -msgstr "" +msgstr "De machtigingen van de clubleden zijn bijgewerkt." #: application/controllers/Club.php:156 msgid "User removed from club." -msgstr "" +msgstr "Gebruiker verwijderd uit de club." #: application/controllers/Club.php:158 msgid "User could not be removed from club." -msgstr "" +msgstr "Gebruiker kon niet uit de club worden verwijderd." #: application/controllers/Club.php:201 msgid "Invalid message type." -msgstr "" +msgstr "Ongeldig berichttype." #: application/controllers/Club.php:220 msgid "Email settings not configured." -msgstr "" +msgstr "E-mailinstellingen niet geconfigureerd." #: application/controllers/Club.php:227 application/views/api/index.php:62 #: application/views/satellite/index.php:64 msgid "Unknown" -msgstr "" +msgstr "Onbekend" #: application/controllers/Clublog.php:15 application/controllers/Cron.php:12 #: application/controllers/Eqsl.php:13 application/controllers/Hrdlog.php:19 #: application/controllers/Lotw.php:27 application/controllers/Qrz.php:14 #: application/controllers/Update.php:16 msgid "Maintenance Mode is active. Try again later." -msgstr "" +msgstr "Onderhoudsmodus is actief. Probeer het later opnieuw." #: application/controllers/Clublog.php:44 #: application/controllers/Clublog.php:66 msgid "No user has configured Clublog." -msgstr "" +msgstr "Geen gebruiker heeft Clublog geconfigureerd." #: application/controllers/Contestcalendar.php:19 #: application/views/interface_assets/header.php:262 @@ -723,16 +729,16 @@ msgstr "" #: application/views/awards/iota/index.php:57 #: application/views/interface_assets/header.php:163 msgid "Continents" -msgstr "" +msgstr "Continenten" #: application/controllers/Cron.php:38 #: application/views/interface_assets/header.php:297 msgid "Cron Manager" -msgstr "" +msgstr "Cron Manager" #: application/controllers/Cron.php:154 application/views/cron/edit.php:5 msgid "Edit Cronjob" -msgstr "" +msgstr "Cronjob bewerken" #: application/controllers/Cron.php:218 application/controllers/Cron.php:219 #: application/views/cron/index.php:83 application/views/cron/index.php:85 @@ -742,67 +748,74 @@ msgstr "" #: application/views/debug/index.php:549 application/views/debug/index.php:554 #: application/views/debug/index.php:559 msgid "never" -msgstr "" +msgstr "nooit" #: application/controllers/Cron.php:219 msgid "calculating..." -msgstr "" +msgstr "berekenen..." #: application/controllers/Cron.php:230 application/views/cron/index.php:70 msgid "healthy" -msgstr "" +msgstr "gezond" #: application/controllers/Cron.php:232 application/views/cron/index.php:72 msgid "failed" -msgstr "" +msgstr "mislukt" #: application/controllers/Cron.php:234 application/views/cron/index.php:74 msgid "pending" -msgstr "" +msgstr "in behandeling" #: application/controllers/Cron.php:239 application/views/cron/index.php:79 msgid "disabled" -msgstr "" +msgstr "uitgeschakeld" #: application/controllers/Cron.php:278 #: application/views/interface_assets/footer.php:39 msgid "OK" -msgstr "" +msgstr "Oké" #: application/controllers/Cron.php:282 -#, php-format +#, fuzzy, php-format msgid "" "Last run occurred more than %s seconds ago.%sPlease check your master cron! " "It should run every minute (* * * * *)." msgstr "" +"Laatste uitvoering vond meer dan %s seconden geleden plaats.%sControleer je " +"master cron! Het zou elke minuut moeten draaien (* * * * *)." #: application/controllers/Cron.php:285 -#, php-format +#, fuzzy, php-format msgid "" "Last run occurred more than %s minutes ago.%sSeems like your Mastercron " "isn't running!%sIt should run every minute (* * * * *)." msgstr "" +"De laatste uitvoering vond meer dan %s minuten geleden plaats.%s Het lijkt " +"erop dat je Mastercron niet draait!%s Het zou elke minuut moeten draaien (* *" +" * * *)." #: application/controllers/Cron.php:290 application/views/cron/index.php:29 +#, fuzzy msgctxt "Master Cron" msgid "Not running" -msgstr "" +msgstr "Draait niet" #: application/controllers/Csv.php:20 application/views/csv/index.php:3 #: application/views/interface_assets/header.php:436 msgid "SOTA CSV Export" -msgstr "" +msgstr "SOTA CSV-export" #: application/controllers/Dashboard.php:123 #: application/controllers/Visitor.php:134 +#, fuzzy msgid "Dashboard" -msgstr "" +msgstr "Dashboard" #: application/controllers/Dayswithqso.php:17 #: application/views/dayswithqso/index.php:2 #: application/views/interface_assets/header.php:155 msgid "Days with QSOs" -msgstr "" +msgstr "Dagen met QSOs" #: application/controllers/Debug.php:115 msgid "Debug" @@ -810,27 +823,27 @@ msgstr "" #: application/controllers/Debug.php:154 msgid "Migrate data now" -msgstr "" +msgstr "Gegevens nu migreren" #: application/controllers/Debug.php:157 msgid "Migration already done. Run again?" -msgstr "" +msgstr "Migratie al voltooid. Opnieuw uitvoeren?" #: application/controllers/Debug.php:161 msgid "No data to migrate" -msgstr "" +msgstr "Geen gegevens om te migreren" #: application/controllers/Debug.php:165 application/controllers/Debug.php:170 msgid "No migration possible" -msgstr "" +msgstr "Geen migratie mogelijk" #: application/controllers/Debug.php:235 msgid "Wavelog was updated successfully!" -msgstr "" +msgstr "Wavelog is succesvol bijgewerkt!" #: application/controllers/Debug.php:253 msgid "Selfupdate() not available. Check the Error Log." -msgstr "" +msgstr "Selfupdate() niet beschikbaar. Controleer het foutlogboek." #: application/controllers/Debug.php:297 msgid "" @@ -838,266 +851,309 @@ msgid "" "everything seems right you can delete the folders 'assets/qslcard' and " "'images/eqsl_card_images'." msgstr "" +"Bestandsoverdracht was succesvol, maar controleer ook handmatig. Als alles " +"goed lijkt, kun je de mappen 'assets/qslcard' en 'images/eqsl_card_images' " +"verwijderen." #: application/controllers/Debug.php:300 +#, fuzzy msgid "File Migration failed. Please check the Error Log." -msgstr "" +msgstr "Bestandsoverdracht mislukt. Controleer het foutlogboek." #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 #: application/views/interface_assets/header.php:153 +#, fuzzy msgid "Satellite Distance Records" -msgstr "" +msgstr "Satellietafstandrecords" #: application/controllers/Distances.php:17 #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 #: application/views/interface_assets/header.php:151 +#, fuzzy msgid "Distances Worked" -msgstr "" +msgstr "Afstanden gewerkt" #: application/controllers/Distances.php:83 #: application/views/distances/index.php:15 msgid "QSOs with" -msgstr "" +msgstr "QSOs met" #: application/controllers/Distances.php:83 +#, fuzzy msgid "and band" -msgstr "" +msgstr "en band" #: application/controllers/Distances.php:83 msgid "and propagation" -msgstr "" +msgstr "en propagatie" #: application/controllers/Dxatlas.php:19 #: application/views/interface_assets/header.php:434 +#, fuzzy msgid "DX Atlas Gridsquare Export" -msgstr "" +msgstr "DX Atlas Gridsquare Exporteren" #: application/controllers/Dxcalendar.php:10 #: application/views/interface_assets/header.php:260 msgid "DX Calendar" -msgstr "" +msgstr "DX-kalender" #: application/controllers/Eqsl.php:34 #: application/views/dashboard/index.php:383 #: application/views/eqslcard/index.php:5 #: application/views/visitor/index.php:310 msgid "eQSL Cards" -msgstr "" +msgstr "eQSL-kaarten" #: application/controllers/Eqsl.php:127 msgid "eQSL Import" -msgstr "" +msgstr "eQSL importeren" #: application/controllers/Eqsl.php:137 msgid "eQSL Import Information" -msgstr "" +msgstr "eQSL importinformatie" #: application/controllers/Eqsl.php:154 +#, fuzzy msgid "eQSL Nicknames in Station Profiles aren't defined!" -msgstr "" +msgstr "eQSL-bijnamen in stationprofielen zijn niet gedefinieerd!" #: application/controllers/Eqsl.php:161 msgid "eQSL QSO Upload" -msgstr "" +msgstr "eQSL QSO Upload" #: application/controllers/Eqsl.php:173 msgid "You have not defined your eQSL.cc credentials!" -msgstr "" +msgstr "Je hebt je eQSL.cc gegevens nog niet ingesteld!" #: application/controllers/Eqsl.php:432 msgid "eQSL Tools" -msgstr "" +msgstr "eQSL-hulpmiddelen" #: application/controllers/Eqsl.php:480 +#, fuzzy msgid " / Errors: " -msgstr "" +msgstr " / Fouten: " #: application/controllers/Eqsl.php:480 msgid "Successfully downloaded: " -msgstr "" +msgstr "Succesvol gedownload: " #: application/controllers/Eqsl.php:489 +#, fuzzy msgid "eQSL Card Image Download" -msgstr "" +msgstr "eQSL-kaartafbeelding downloaden" #: application/controllers/Gridmap.php:10 #: application/views/interface_assets/header.php:145 +#, fuzzy msgid "Gridsquare Map" -msgstr "" +msgstr "Gridsquare-kaart" #: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:388 +#, fuzzy msgid "Total gridsquares worked" -msgstr "" +msgstr "Totaal aantal vakken gewerkt" #: application/controllers/Hamsat.php:59 msgid "Hamsat - Satellite Roving" -msgstr "" +msgstr "Hamsat - Satelliet Roving" #: application/controllers/Hrdlog.php:74 -#, php-format +#, fuzzy, php-format msgid "%d QSO is now uploaded to HRDlog" msgid_plural "%d QSOs are now uploaded to HRDlog" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d QSO is nu geüpload naar HRDlog" +msgstr[1] "%d QSO's zijn nu geüpload naar HRDlog" #: application/controllers/Hrdlog.php:79 +#, fuzzy msgid "No QSOs found to upload." -msgstr "" +msgstr "Geen QSOs gevonden om te uploaden." #: application/controllers/Kmlexport.php:24 #: application/views/interface_assets/header.php:432 #: application/views/kml/index.php:3 msgid "KML Export" -msgstr "" +msgstr "KML-export" #: application/controllers/Labels.php:40 application/views/labels/index.php:30 +#, fuzzy msgid "QSL Card Labels" -msgstr "" +msgstr "QSL-kaartlabels" #: application/controllers/Labels.php:71 +#, fuzzy msgid "Create Label Type" -msgstr "" +msgstr "Labeltype maken" #: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 +#, fuzzy msgid "Label Name" -msgstr "" +msgstr "Labelnaam" #: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 +#, fuzzy msgid "Paper Type" -msgstr "" +msgstr "Papier Type" #: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 +#, fuzzy msgid "Measurement" -msgstr "" +msgstr "Afmetingen" #: application/controllers/Labels.php:81 application/controllers/Labels.php:409 +#, fuzzy msgid "Top Margin" -msgstr "" +msgstr "Bovenmarge" #: application/controllers/Labels.php:82 application/controllers/Labels.php:410 +#, fuzzy msgid "Left Margin" -msgstr "" +msgstr "Linkermarge" #: application/controllers/Labels.php:83 application/controllers/Labels.php:411 +#, fuzzy msgid "QSLs Horizontally" -msgstr "" +msgstr "QSL's horizontaal" #: application/controllers/Labels.php:84 application/controllers/Labels.php:412 +#, fuzzy msgid "QSLs Vertically" -msgstr "" +msgstr "QSL's verticaal" #: application/controllers/Labels.php:85 application/controllers/Labels.php:413 +#, fuzzy msgid "Horizontal Space" -msgstr "" +msgstr "Horizontale ruimte" #: application/controllers/Labels.php:86 application/controllers/Labels.php:414 +#, fuzzy msgid "Vertical Space" -msgstr "" +msgstr "Verticale ruimte" #: application/controllers/Labels.php:87 application/controllers/Labels.php:415 +#, fuzzy msgid "Label width" -msgstr "" +msgstr "Labelbreedte" #: application/controllers/Labels.php:88 application/controllers/Labels.php:416 +#, fuzzy msgid "Label height" -msgstr "" +msgstr "Labelhoogte" #: application/controllers/Labels.php:89 application/controllers/Labels.php:417 +#, fuzzy msgid "Size of Font" -msgstr "" +msgstr "Lettergrootte" #: application/controllers/Labels.php:90 application/controllers/Labels.php:418 +#, fuzzy msgid "Number of QSOs on label" -msgstr "" +msgstr "Aantal QSOs op label" #: application/controllers/Labels.php:115 +#, fuzzy msgid "Create Paper Type" -msgstr "" +msgstr "Papier type maken" #: application/controllers/Labels.php:119 #: application/controllers/Labels.php:465 +#, fuzzy msgid "Paper Name" -msgstr "" +msgstr "Papiernaam" #: application/controllers/Labels.php:120 #: application/controllers/Labels.php:466 +#, fuzzy msgid "Paper Width" -msgstr "" +msgstr "Papierbreedte" #: application/controllers/Labels.php:121 #: application/controllers/Labels.php:467 +#, fuzzy msgid "Paper Height" -msgstr "" +msgstr "Papierhoogte" #: application/controllers/Labels.php:132 #: application/controllers/Labels.php:475 +#, fuzzy msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." msgstr "" +"Je document kon niet worden opgeslagen. Vergeet niet dat het niet dezelfde " +"naam mag hebben als bestaande documenttypen." #: application/controllers/Labels.php:205 #: application/controllers/Labels.php:208 msgid "You need to assign a paperType to the label before printing" -msgstr "" +msgstr "Je moet een papiertype aan het label toewijzen voordat je gaat printen" #: application/controllers/Labels.php:215 #: application/controllers/Labels.php:218 +#, fuzzy msgid "You need to create a label and set it to be used for print." -msgstr "" +msgstr "Je moet een label maken en instellen om te printen." #: application/controllers/Labels.php:225 #: application/controllers/Labels.php:228 +#, fuzzy msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." msgstr "" +"Er is iets misgegaan! Het label kon niet worden gegenereerd. Controleer de " +"labelgrootte en lettergrootte." #: application/controllers/Labels.php:251 msgid "0 QSOs found for print!" -msgstr "" +msgstr "Geen QSO's gevonden om te printen!" #: application/controllers/Labels.php:395 msgid "Edit Label" -msgstr "" +msgstr "Label bewerken" #: application/controllers/Labels.php:424 msgid "Label was saved." -msgstr "" +msgstr "Label is opgeslagen." #: application/controllers/Labels.php:432 msgid "Label was deleted." -msgstr "" +msgstr "Label is verwijderd." #: application/controllers/Labels.php:454 +#, fuzzy msgid "Edit Paper" -msgstr "" +msgstr "Papier bewerken" #: application/controllers/Labels.php:479 msgid "Paper was saved." -msgstr "" +msgstr "Papier is opgeslagen." #: application/controllers/Labels.php:492 msgid "Paper was deleted." -msgstr "" +msgstr "Papier is verwijderd." #: application/controllers/Logbook.php:37 msgid "" "No logbooks were found. You need to define a logbook under Station Logbooks! " "Do it here:" msgstr "" +"Er zijn geen logboeken gevonden. Je moet een logboek definiëren onder " +"Station Logboeken! Doe het hier:" #: application/controllers/Logbook.php:37 #: application/views/stationsetup/stationsetup.php:18 msgid "Station Logbooks" -msgstr "" +msgstr "Stationlogboeken" #: application/controllers/Logbook.php:60 #: application/views/interface_assets/header.php:100 @@ -1130,7 +1186,7 @@ msgstr "Logboek" #: application/views/timeline/index.php:56 application/views/user/edit.php:582 #: application/views/user/edit.php:669 msgid "QSL" -msgstr "" +msgstr "QSL" #: application/controllers/Logbook.php:663 #: application/views/activated_gridmap/index.php:66 @@ -1163,7 +1219,7 @@ msgstr "" #: application/views/user/edit.php:679 application/views/view_log/qso.php:531 #: application/views/view_log/qso.php:536 msgid "LoTW" -msgstr "" +msgstr "LoTW" #: application/controllers/Logbook.php:666 #: application/views/activated_gridmap/index.php:74 @@ -1194,7 +1250,7 @@ msgstr "" #: application/views/timeline/index.php:64 application/views/user/edit.php:584 #: application/views/user/edit.php:687 application/views/user/edit.php:753 msgid "eQSL" -msgstr "" +msgstr "eQSL" #: application/controllers/Logbook.php:672 #: application/views/awards/dok/index.php:71 @@ -1214,7 +1270,7 @@ msgstr "" #: application/views/view_log/qso.php:565 #: application/views/view_log/qso.php:570 msgid "Clublog" -msgstr "" +msgstr "Clublog" #: application/controllers/Logbook.php:1281 #: application/controllers/Radio.php:46 @@ -1287,8 +1343,9 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:4 #: application/views/view_log/qso.php:108 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:30 +#, fuzzy msgid "Mode" -msgstr "" +msgstr "Modus" #: application/controllers/Logbook.php:1282 #: application/views/awards/pota/index.php:36 @@ -1315,7 +1372,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:5 #: application/views/view_log/qso.php:113 application/views/visitor/index.php:9 msgid "RST (S)" -msgstr "" +msgstr "RST (S)" #: application/controllers/Logbook.php:1283 #: application/views/awards/pota/index.php:37 @@ -1343,7 +1400,7 @@ msgstr "" #: application/views/view_log/qso.php:118 #: application/views/visitor/index.php:12 msgid "RST (R)" -msgstr "" +msgstr "RST (R)" #: application/controllers/Logbook.php:1284 #: application/views/dashboard/index.php:7 @@ -1391,7 +1448,7 @@ msgstr "Land" #: application/views/view_log/partial/log_ajax.php:8 #: application/views/visitor/index.php:18 msgid "IOTA" -msgstr "" +msgstr "IOTA" #: application/controllers/Logbook.php:1289 #: application/views/awards/counties/details.php:12 @@ -1418,8 +1475,9 @@ msgstr "" #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 #: application/views/visitor/index.php:24 +#, fuzzy msgid "State" -msgstr "" +msgstr "Staat" #: application/controllers/Logbook.php:1290 #: application/views/activated_gridmap/index.php:106 @@ -1487,7 +1545,7 @@ msgstr "" #: application/views/view_log/partial/log_ajax.php:14 #: application/views/visitor/index.php:30 msgid "Distance" -msgstr "" +msgstr "Afstand" #: application/controllers/Logbook.php:1292 #: application/views/accumulate/index.php:21 @@ -1563,7 +1621,7 @@ msgstr "" #: application/views/view_log/qso.php:88 application/views/visitor/index.php:33 #: application/views/widgets/qsos.php:33 msgid "Band" -msgstr "" +msgstr "Band" #: application/controllers/Logbook.php:1293 #: application/controllers/Radio.php:45 application/views/bandmap/list.php:114 @@ -1606,7 +1664,7 @@ msgstr "Frequentie" #: application/views/view_log/qso.php:684 #: application/views/visitor/index.php:39 msgid "Operator" -msgstr "" +msgstr "Operator" #: application/controllers/Logbook.php:1315 #: application/controllers/Stationsetup.php:381 @@ -1638,11 +1696,12 @@ msgstr "Verwijderde DXCC" #: application/controllers/Logbookadvanced.php:31 msgid "Advanced logbook" -msgstr "" +msgstr "Geavanceerd logboek" #: application/controllers/Lookup.php:22 +#, fuzzy msgid "Quick Lookup" -msgstr "" +msgstr "Snel opzoeken" #: application/controllers/Lotw.php:53 application/controllers/Lotw.php:85 #: application/controllers/Lotw.php:125 application/views/adif/import.php:27 @@ -1651,19 +1710,19 @@ msgstr "" #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:725 application/views/visitor/index.php:328 msgid "Logbook of the World" -msgstr "" +msgstr "Logbook of the World" #: application/controllers/Lotw.php:150 msgid "Certificate Imported." -msgstr "" +msgstr "Certificaat geïmporteerd." #: application/controllers/Lotw.php:157 msgid "Certificate Updated." -msgstr "" +msgstr "Certificaat bijgewerkt." #: application/controllers/Lotw.php:383 msgid "Certificate Deleted." -msgstr "" +msgstr "Certificaat verwijderd." #: application/controllers/Lotw.php:412 #, php-format @@ -1671,65 +1730,72 @@ msgid "" "Found no certificate in file %s. If the filename contains 'key-only' this is " "typically a certificate request which has not been processed by LoTW yet." msgstr "" +"Geen certificaat gevonden in bestand %s. Als de bestandsnaam 'key-only' " +"bevat, is dit meestal een certificaataanvraag die nog niet door LoTW is " +"verwerkt." #: application/controllers/Lotw.php:629 msgid "LoTW ADIF Information" -msgstr "" +msgstr "LoTW ADIF Informatie" #: application/controllers/Lotw.php:795 application/controllers/Lotw.php:798 #, php-format msgid "LoTW login failed for user %s: %s." -msgstr "" +msgstr "LoTW-login mislukt voor gebruiker %s: %s." #: application/controllers/Lotw.php:798 msgid "Username/password incorrect" -msgstr "" +msgstr "Gebruikersnaam/wachtwoord onjuist" #: application/controllers/Lotw.php:801 +#, fuzzy msgid "LoTW login OK!" -msgstr "" +msgstr "LoTW login oké!" #: application/controllers/Lotw.php:805 msgid "LoTW currently not available. Try again later." -msgstr "" +msgstr "LoTW momenteel niet beschikbaar. Probeer het later opnieuw." #: application/controllers/Lotw.php:810 +#, fuzzy msgid "No LoTW credentials provided." -msgstr "" +msgstr "Geen LoTW-gegevens verstrekt." #: application/controllers/Lotw.php:828 msgid "LoTW ADIF Import" -msgstr "" +msgstr "LoTW ADIF importeren" #: application/controllers/Lotw.php:854 application/controllers/Lotw.php:962 +#, fuzzy msgid "You have not defined your ARRL LoTW credentials!" -msgstr "" +msgstr "Je hebt je ARRL LoTW-gegevens niet gedefinieerd!" #: application/controllers/Lotw.php:929 msgid "LoTW .TQ8 Upload" -msgstr "" +msgstr "LoTW .TQ8 uploaden" #: application/controllers/Lotw.php:1007 msgid "Your ARRL username and/or password is incorrect." -msgstr "" +msgstr "Je ARRL-gebruikersnaam en/of wachtwoord is onjuist." #: application/controllers/Lotw.php:1026 application/controllers/Lotw.php:1031 msgid "LoTW .TQ8 Sent" -msgstr "" +msgstr "LoTW .TQ8 verzonden" #: application/controllers/Lotw.php:1038 msgid "LoTW .TQ8 Not Sent" -msgstr "" +msgstr "LoTW .TQ8 niet verzonden" #: application/controllers/Mode.php:25 #: application/views/interface_assets/header.php:285 #: application/views/mode/index.php:27 +#, fuzzy msgid "Modes" -msgstr "" +msgstr "Modi" #: application/controllers/Mode.php:62 msgid "Edit Mode" -msgstr "" +msgstr "Modus bewerken" #: application/controllers/Notes.php:18 #: application/views/interface_assets/header.php:133 @@ -1745,17 +1811,17 @@ msgstr "Aantekeningen" #: application/controllers/Notes.php:37 msgid "Add Notes" -msgstr "" +msgstr "Notities toevoegen" #: application/controllers/Notes.php:64 #: application/views/oqrs/showrequests.php:88 msgid "Note" -msgstr "" +msgstr "Notitie" #: application/controllers/Notes.php:92 application/views/notes/edit.php:7 #: application/views/notes/view.php:19 msgid "Edit Note" -msgstr "" +msgstr "Notitie bewerken" #: application/controllers/Options.php:31 #: application/controllers/Options.php:41 @@ -1773,13 +1839,13 @@ msgstr "" #: application/controllers/Options.php:489 #: application/controllers/Options.php:499 msgid "Wavelog Options" -msgstr "" +msgstr "Wavelog-opties" #: application/controllers/Options.php:42 #: application/controllers/Options.php:57 #: application/views/options/sidebar.php:4 msgid "Appearance" -msgstr "" +msgstr "Uiterlijk" #: application/controllers/Options.php:78 #: application/controllers/Options.php:86 @@ -1790,61 +1856,63 @@ msgstr "" #: application/controllers/Options.php:126 #: application/controllers/Options.php:134 msgid "Options saved" -msgstr "" +msgstr "Opties opgeslagen" #: application/controllers/Options.php:173 msgid "de continent changed to " -msgstr "" +msgstr "het continent veranderde in " #: application/controllers/Options.php:178 msgid "Maximum age of spots changed to " -msgstr "" +msgstr "Maximale leeftijd van spots gewijzigd naar " #: application/controllers/Options.php:183 msgid "DXCluster Cache URL changed to " -msgstr "" +msgstr "DXCluster Cache URL gewijzigd naar " #: application/controllers/Options.php:193 #: application/controllers/Options.php:204 msgid "Radio Settings" -msgstr "" +msgstr "Radio-instellingen" #: application/controllers/Options.php:225 msgid "Radio Timeout Warning changed to " -msgstr "" +msgstr "Radio Time-out waarschuwing gewijzigd in " #: application/controllers/Options.php:237 #: application/controllers/Options.php:248 #: application/views/options/sidebar.php:6 msgid "Email" -msgstr "" +msgstr "E-mail" #: application/controllers/Options.php:305 msgid "The settings were saved successfully." -msgstr "" +msgstr "De instellingen zijn succesvol opgeslagen." #: application/controllers/Options.php:307 msgid "Something went wrong with saving the settings. Try again." msgstr "" +"Er is iets misgegaan met het opslaan van de instellingen. Probeer het " +"opnieuw." #: application/controllers/Options.php:318 #: application/controllers/Options.php:328 #: application/views/options/sidebar.php:8 msgid "OQRS Options" -msgstr "" +msgstr "OQRS-opties" #: application/controllers/Options.php:341 msgid "OQRS options have been saved." -msgstr "" +msgstr "OQRS-opties zijn opgeslagen." #: application/controllers/Options.php:381 #: application/controllers/Options.php:386 msgid "Testmail failed. Something went wrong." -msgstr "" +msgstr "Testmail mislukt. Er is iets misgegaan." #: application/controllers/Options.php:383 msgid "Testmail sent. Email settings seem to be correct." -msgstr "" +msgstr "Testmail verzonden. E-mailinstellingen lijken correct te zijn." #: application/controllers/Options.php:395 #: application/controllers/Options.php:414 @@ -1869,7 +1937,7 @@ msgstr "" #: application/controllers/Options.php:490 #: application/controllers/Options.php:500 msgid "Version Info Settings" -msgstr "" +msgstr "Versie-informatie-instellingen" #: application/controllers/Options.php:506 msgid "Version Info Header changed to" @@ -1898,94 +1966,96 @@ msgstr "" #: application/controllers/Oqrs.php:67 msgid "Invalid Station ID" -msgstr "" +msgstr "Ongeldige station-ID" #: application/controllers/Oqrs.php:134 #: application/views/interface_assets/header.php:459 msgid "OQRS Requests" -msgstr "" +msgstr "OQRS-verzoeken" #: application/controllers/Qrbcalc.php:17 msgid "QRB Calculator" -msgstr "" +msgstr "QRB Calculator" #: application/controllers/Qrbcalc.php:49 #: application/controllers/Qrbcalc.php:50 #, php-format msgid "Latitude: %s, Longitude: %s" -msgstr "" +msgstr "Breedtegraad: %s, Lengtegraad: %s" #: application/controllers/Qrbcalc.php:54 #, php-format msgid "The distance between %s and %s is %s mile." msgid_plural "The distance between %s and %s is %s miles." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "De afstand tussen %s en %s is %s mijl." +msgstr[1] "De afstand tussen %s en %s is %s mijlen." #: application/controllers/Qrbcalc.php:57 #, php-format msgid "The distance between %s and %s is %s nautical mile." msgid_plural "The distance between %s and %s is %s nautical miles." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "De afstand tussen %s en %s is %s zeemijl." +msgstr[1] "De afstand tussen %s en %s is %s zeemijlen." #: application/controllers/Qrbcalc.php:60 #, php-format msgid "The distance between %s and %s is %s kilometer." msgid_plural "The distance between %s and %s is %s kilometers." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "De afstand tussen %s en %s is %s kilometer." +msgstr[1] "De afstand tussen %s en %s is %s kilometer." #: application/controllers/Qrbcalc.php:66 #, php-format msgid "The bearing is %s." -msgstr "" +msgstr "De koers is %s." #: application/controllers/Qrbcalc.php:72 msgid "" "Negative latitudes are south of the equator, negative longitudes are west of " "Greenwich." msgstr "" +"Negatieve breedtegraden liggen ten zuiden van de evenaar, negatieve " +"lengtegraden liggen ten westen van Greenwich." #: application/controllers/Qrz.php:204 #: application/views/interface_assets/header.php:472 msgid "QRZ Logbook" -msgstr "" +msgstr "QRZ Logboek" #: application/controllers/Qrz.php:287 msgid "QRZ QSL Import" -msgstr "" +msgstr "QRZ QSL importeren" #: application/controllers/Qrz.php:344 msgid "QRZ ADIF Information" -msgstr "" +msgstr "QRZ ADIF Informatie" #: application/controllers/Qsl.php:25 application/views/dashboard/index.php:318 #: application/views/dashboard/index.php:335 #: application/views/qslcard/index.php:5 #: application/views/visitor/index.php:287 msgid "QSL Cards" -msgstr "QSL kaarten" +msgstr "QSL-kaarten" #: application/controllers/Qsl.php:35 msgid "Upload QSL Cards" -msgstr "" +msgstr "QSL-kaarten uploaden" #: application/controllers/Qslmanagement.php:14 msgid "QSL Card Management" -msgstr "" +msgstr "QSL-kaartbeheer" #: application/controllers/Qslprint.php:44 msgid "Print Requested QSLs" -msgstr "" +msgstr "Aangevraagde QSL's afdrukken" #: application/controllers/Qso.php:101 msgid "Add QSO" -msgstr "" +msgstr "QSO toevoegen" #: application/controllers/Qso.php:661 msgid "You have to be logged in to access this URL." -msgstr "" +msgstr "Je moet ingelogd zijn om deze URL te openen." #: application/controllers/Qso.php:667 msgid "Call Transfer" @@ -1993,23 +2063,23 @@ msgstr "" #: application/controllers/Qso.php:674 msgid "No callsign provided." -msgstr "" +msgstr "Geen roepnaam opgegeven." #: application/controllers/Radio.php:17 #: application/views/interface_assets/header.php:481 msgid "Hardware Interfaces" -msgstr "" +msgstr "Hardware-interfaces" #: application/controllers/Radio.php:41 application/views/bandmap/index.php:25 #: application/views/bandmap/list.php:64 #: application/views/contesting/index.php:152 #: application/views/qso/index.php:319 msgid "Radio" -msgstr "" +msgstr "Radio" #: application/controllers/Radio.php:47 msgid "Timestamp" -msgstr "" +msgstr "Tijdstempel" #: application/controllers/Radio.php:49 #: application/views/logbookadvanced/index.php:625 @@ -2018,30 +2088,30 @@ msgstr "" #: application/views/simplefle/index.php:184 #: application/views/stationsetup/exportmapoptions.php:5 msgid "Options" -msgstr "" +msgstr "Opties" #: application/controllers/Radio.php:50 application/views/debug/index.php:312 #: application/views/qso/index.php:718 msgid "Settings" -msgstr "" +msgstr "Instellingen" #: application/controllers/Radio.php:63 msgid "UNKNOWN" -msgstr "" +msgstr "ONBEKEND" #: application/controllers/Radio.php:98 #: application/views/contesting/index.php:156 #: application/views/qso/index.php:323 msgid "last updated" -msgstr "" +msgstr "laatst bijgewerkt" #: application/controllers/Radio.php:106 application/controllers/Radio.php:109 msgid "Set as default radio" -msgstr "" +msgstr "Instellen als standaardradio" #: application/controllers/Radio.php:111 msgid "Default (click to release)" -msgstr "" +msgstr "Standaard (klik om vrij te geven)" #: application/controllers/Radio.php:115 #: application/controllers/Stationsetup.php:359 @@ -2060,7 +2130,7 @@ msgstr "" #: application/views/themes/index.php:104 application/views/user/index.php:95 #: application/views/user/index.php:195 msgid "Edit" -msgstr "" +msgstr "Bewerken" #: application/controllers/Radio.php:116 #: application/controllers/Stationsetup.php:372 @@ -2087,32 +2157,32 @@ msgstr "" #: application/views/themes/index.php:107 application/views/user/index.php:117 #: application/views/user/index.php:220 application/views/view_log/qso.php:762 msgid "Delete" -msgstr "" +msgstr "Verwijderen" #: application/controllers/Radio.php:122 msgid "No CAT interfaced radios found." -msgstr "" +msgstr "Geen CAT-gekoppelde radio's gevonden." #: application/controllers/Radio.php:137 application/views/radio/index.php:2 msgid "Edit CAT Settings" -msgstr "" +msgstr "CAT-instellingen bewerken" #: application/controllers/Reg1test.php:22 msgid "Export EDI" -msgstr "" +msgstr "EDI exporteren" #: application/controllers/Satellite.php:49 msgid "Create Satellite" -msgstr "" +msgstr "Nieuwe satelliet invoeren" #: application/controllers/Satellite.php:76 msgid "Edit Satellite" -msgstr "" +msgstr "Bewerk satelliet" #: application/controllers/Sattimers.php:41 -#, php-format +#, fuzzy, php-format msgid "You have no station locations. Go %s to create it!" -msgstr "" +msgstr "Je hebt geen stationlocaties. Ga %s om het te maken!" #: application/controllers/Sattimers.php:41 #: application/views/awards/counties/index.php:8 @@ -2121,7 +2191,7 @@ msgstr "" #: application/views/awards/was/index.php:23 #: application/views/simplefle/index.php:16 msgid "here" -msgstr "" +msgstr "hier" #: application/controllers/Sattimers.php:44 #: application/views/sattimers/index.php:13 @@ -2157,21 +2227,23 @@ msgstr "Zoeken" #: application/controllers/Search.php:28 msgid "Search & Filter Logbook" -msgstr "" +msgstr "Zoek & filter logboek" #: application/controllers/Search.php:58 msgid "Incorrectly logged CQ zones" -msgstr "" +msgstr "Onjuist gelogde CQ-zones" #: application/controllers/Search.php:70 msgid "Incorrectly logged ITU zones" -msgstr "" +msgstr "Onjuist geregistreerde ITU-zones" #: application/controllers/Search.php:82 msgid "" "QSOs unconfirmed on LoTW, but the callsign has uploaded to LoTW after QSO " "date" msgstr "" +"QSOs niet bevestigd op LoTW, maar de roepnaam is geüpload naar LoTW na de " +"QSO-datum" #: application/controllers/Staticmap.php:20 #: application/controllers/Staticmap.php:25 @@ -2184,7 +2256,7 @@ msgstr "" #: application/controllers/Visitor.php:476 #: application/controllers/Widgets.php:40 msgid "Unknown Public Page." -msgstr "" +msgstr "Onbekende openbare pagina." #: application/controllers/Staticmap.php:150 #: application/controllers/Visitor.php:76 @@ -2193,16 +2265,18 @@ msgstr "" #: application/controllers/Visitor.php:472 #: application/controllers/Widgets.php:36 msgid "Empty Logbook" -msgstr "" +msgstr "Leeg logboek" #: application/controllers/Station.php:37 #: application/controllers/Stationsetup.php:226 +#, fuzzy msgid "Create Station Location" -msgstr "" +msgstr "Maak stationlocatie aan" #: application/controllers/Station.php:52 +#, fuzzy msgid "Edit Station Location: " -msgstr "" +msgstr "Bewerk stationlocatie: " #: application/controllers/Station.php:61 application/views/csv/index.php:19 #: application/views/dxatlas/index.php:19 @@ -2220,8 +2294,9 @@ msgid "Station Location" msgstr "Station Profiel" #: application/controllers/Station.php:80 +#, fuzzy msgid "Duplicate Station Location:" -msgstr "" +msgstr "Duplicaat stationlocatie:" #: application/controllers/Stationsetup.php:35 #: application/views/interface_assets/header.php:398 @@ -2234,7 +2309,7 @@ msgstr "" #: application/controllers/Stationsetup.php:395 #: application/controllers/Stationsetup.php:409 msgid "Not allowed" -msgstr "" +msgstr "Niet toegestaan" #: application/controllers/Stationsetup.php:72 #: application/controllers/Stationsetup.php:86 @@ -2245,28 +2320,28 @@ msgstr "" #: application/controllers/Stationsetup.php:436 #: application/views/qso/index.php:677 application/views/simplefle/index.php:38 msgid "Error" -msgstr "" +msgstr "Fout" #: application/controllers/Stationsetup.php:159 #: application/views/stationsetup/stationsetup.php:22 msgid "Create Station Logbook" -msgstr "" +msgstr "Maak stationlogboek aan" #: application/controllers/Stationsetup.php:166 msgid "Edit container name" -msgstr "" +msgstr "Containernaam bewerken" #: application/controllers/Stationsetup.php:181 msgid "Edit linked locations" -msgstr "" +msgstr "Gekoppelde locaties bewerken" #: application/controllers/Stationsetup.php:190 msgid "Edit visitor site" -msgstr "" +msgstr "Bezoekerssite bewerken" #: application/controllers/Stationsetup.php:212 msgid "Error. Link is already in use!" -msgstr "" +msgstr "Fout. Link is al in gebruik!" #: application/controllers/Stationsetup.php:253 #: application/views/options/appearance.php:57 @@ -2284,51 +2359,57 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:76 #: application/views/user/edit.php:471 application/views/user/edit.php:480 msgid "Disabled" -msgstr "" +msgstr "Uitgeschakeld" #: application/controllers/Stationsetup.php:261 #: application/views/stationsetup/stationsetup.php:44 msgid "Set as Active Logbook" -msgstr "" +msgstr "Instellen als actief logboek" #: application/controllers/Stationsetup.php:263 #: application/views/interface_assets/header.php:542 #: application/views/stationsetup/stationsetup.php:46 #: application/views/view_log/index.php:4 msgid "Active Logbook" -msgstr "" +msgstr "Actief logboek" #: application/controllers/Stationsetup.php:270 #: application/views/stationsetup/stationsetup.php:55 +#, fuzzy msgid "" "Are you sure you want to delete the following station logbook? You must re-" "link any locations linked here to another logbook.: " msgstr "" +"Weet je zeker dat je het volgende stationlogboek wilt verwijderen? Je moet " +"alle locaties die hieraan gekoppeld zijn opnieuw koppelen aan een ander " +"logboek. " #: application/controllers/Stationsetup.php:280 #: application/views/stationsetup/stationsetup.php:65 +#, fuzzy msgid "View Public Page for Logbook: " -msgstr "" +msgstr "Bekijk openbare pagina voor logboek: " #: application/controllers/Stationsetup.php:281 msgid "Are you sure you want to delete the public slug?" -msgstr "" +msgstr "Weet je zeker dat je de openbare slug wilt verwijderen?" #: application/controllers/Stationsetup.php:349 #: application/views/stationsetup/stationsetup.php:154 msgid "" "Are you sure you want to make the following station the active station: " msgstr "" +"Weet je zeker dat je het volgende station als actief station wilt instellen: " #: application/controllers/Stationsetup.php:349 #: application/views/stationsetup/stationsetup.php:154 msgid "Set Active" -msgstr "" +msgstr "Actief maken" #: application/controllers/Stationsetup.php:351 #: application/views/stationsetup/stationsetup.php:156 msgid "Active Station" -msgstr "" +msgstr "Actief station" #: application/controllers/Stationsetup.php:354 #: application/views/interface_assets/header.php:116 @@ -2338,24 +2419,25 @@ msgstr "" #: application/views/user/index.php:81 application/views/user/index.php:85 #: application/views/user/index.php:186 application/views/user/index.php:188 msgid "QSO" -msgstr "" +msgstr "QSO" #: application/controllers/Stationsetup.php:363 #: application/views/stationsetup/stationsetup.php:185 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:363 #: application/views/stationsetup/stationsetup.php:136 #: application/views/stationsetup/stationsetup.php:187 msgid "Empty Log" -msgstr "" +msgstr "Leeg logboek" #: application/controllers/Stationsetup.php:367 #: application/views/stationsetup/stationsetup.php:129 #: application/views/stationsetup/stationsetup.php:168 msgid "Copy" -msgstr "" +msgstr "Kopiëren" #: application/controllers/Stationsetup.php:372 #: application/views/stationsetup/stationsetup.php:191 @@ -2364,6 +2446,8 @@ msgid "" "Are you sure you want delete station profile '%s'? This will delete all QSOs " "within this station profile." msgstr "" +"Weet je zeker dat je het stationprofiel '%s' wilt verwijderen? Dit zal alle " +"QSO's binnen dit stationprofiel verwijderen." #: application/controllers/Stationsetup.php:379 #: application/views/qso/edit_ajax.php:236 @@ -2381,145 +2465,145 @@ msgstr "" #: application/controllers/Statistics.php:26 #: application/views/interface_assets/header.php:139 msgid "Statistics" -msgstr "" +msgstr "Statistieken" #: application/controllers/Statistics.php:209 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" -msgstr "" +msgstr "QSL-statistieken" #: application/controllers/Statistics.php:224 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" -msgstr "" +msgstr "Antenne-analyse" #: application/controllers/Themes.php:27 #: application/views/interface_assets/header.php:291 msgid "Themes" -msgstr "" +msgstr "Thema's" #: application/controllers/Themes.php:46 msgid "Create Theme" -msgstr "" +msgstr "Thema maken" #: application/controllers/Themes.php:65 msgid "Edit Theme" -msgstr "" +msgstr "Thema bewerken" #: application/controllers/Timeline.php:15 #: application/views/interface_assets/header.php:157 #: application/views/timeline/index.php:2 msgid "Timeline" -msgstr "" +msgstr "Tijdlijn" #: application/controllers/Timeplotter.php:17 #: application/views/interface_assets/header.php:161 #: application/views/timeplotter/index.php:9 msgid "Timeplotter" -msgstr "" +msgstr "Tijdplotter" #: application/controllers/Update.php:26 msgid "Updates" -msgstr "" +msgstr "Updates" #: application/controllers/Update.php:71 msgid "Preparing DXCC-Entries: " -msgstr "" +msgstr "DXCC-items voorbereiden: " #: application/controllers/Update.php:136 msgid "Preparing DXCC Exceptions: " -msgstr "" +msgstr "DXCC uitzonderingen voorbereiden: " #: application/controllers/Update.php:187 msgid "Preparing DXCC Prefixes: " -msgstr "" +msgstr "DXCC-prefixen voorbereiden: " #: application/controllers/Update.php:275 msgid "DONE" -msgstr "" +msgstr "KLAAR" #: application/controllers/Update.php:289 msgid "Updating..." -msgstr "" +msgstr "Bijwerken..." #: application/controllers/Update.php:292 msgid "Dxcc Entities:" -msgstr "" +msgstr "Dxcc-entiteiten:" #: application/controllers/Update.php:293 msgid "Dxcc Exceptions:" -msgstr "" +msgstr "Dxcc uitzonderingen:" #: application/controllers/Update.php:294 msgid "Dxcc Prefixes:" -msgstr "" +msgstr "Dxcc-prefixen:" #: application/controllers/Update.php:365 msgid "SCP Update complete. Result: " -msgstr "" +msgstr "SCP-update voltooid. Resultaat: " #: application/controllers/Update.php:367 msgid "SCP Update failed. Result: " -msgstr "" +msgstr "SCP-update mislukt. Resultaat: " #: application/controllers/Update.php:385 msgid "LoTW Users Update complete. Result: " -msgstr "" +msgstr "LoTW-gebruikersupdate voltooid. Resultaat: " #: application/controllers/Update.php:387 msgid "LoTW Users Update failed. Result: " -msgstr "" +msgstr "LoTW-gebruikersupdate mislukt. Resultaat: " #: application/controllers/Update.php:404 msgid "DOK Update complete. Result: " -msgstr "" +msgstr "DOK-update voltooid. Resultaat: " #: application/controllers/Update.php:406 msgid "DOK Update failed. Result: " -msgstr "" +msgstr "DOK-update mislukt. Resultaat: " #: application/controllers/Update.php:423 msgid "SOTA Update complete. Result: " -msgstr "" +msgstr "SOTA-update voltooid. Resultaat: " #: application/controllers/Update.php:425 msgid "SOTA Update failed. Result: " -msgstr "" +msgstr "SOTA-update mislukt. Resultaat: " #: application/controllers/Update.php:442 msgid "WWFF Update complete. Result: " -msgstr "" +msgstr "WWFF-update voltooid. Resultaat: " #: application/controllers/Update.php:444 msgid "WWFF Update failed. Result: " -msgstr "" +msgstr "WWFF-update mislukt. Resultaat: " #: application/controllers/Update.php:458 msgid "POTA Update complete. Result: " -msgstr "" +msgstr "POTA-update voltooid. Resultaat: " #: application/controllers/Update.php:460 msgid "POTA Update failed. Result: " -msgstr "" +msgstr "POTA-update mislukt. Resultaat: " #: application/controllers/Update.php:473 msgid "TLE Update complete. Result: " -msgstr "" +msgstr "TLE-update voltooid. Resultaat: " #: application/controllers/Update.php:475 msgid "TLE Update failed. Result: " -msgstr "" +msgstr "TLE-update mislukt. Resultaat: " #: application/controllers/Update.php:486 msgid "LoTW SAT Update" -msgstr "" +msgstr "LoTW SAT update" #: application/controllers/User.php:50 #: application/views/interface_assets/header.php:281 msgid "User Accounts" -msgstr "" +msgstr "Gebruikersaccounts" #: application/controllers/User.php:96 msgid "Invalid User ID or missing modal!" @@ -2527,93 +2611,99 @@ msgstr "" #: application/controllers/User.php:107 msgid "User unlocked!" -msgstr "" +msgstr "Gebruiker ontgrendeld!" #: application/controllers/User.php:110 msgid "Failed to unlock user!" -msgstr "" +msgstr "Gebruiker ontgrendelen mislukt!" #: application/controllers/User.php:114 msgid "User not found!" -msgstr "" +msgstr "Gebruiker niet gevonden!" #: application/controllers/User.php:127 msgid "Invalid Parameter!" -msgstr "" +msgstr "Ongeldige parameter!" #: application/controllers/User.php:183 #: application/views/club/permissions.php:155 msgid "Add User" -msgstr "" +msgstr "Gebruiker toevoegen" #: application/controllers/User.php:284 #, php-format msgid "Username %s already in use!" -msgstr "" +msgstr "Gebruikersnaam %s is al in gebruik!" #: application/controllers/User.php:287 #, php-format msgid "E-mail %s already in use!" -msgstr "" +msgstr "E-mail %s is al in gebruik!" #: application/controllers/User.php:290 msgid "Invalid Password!" -msgstr "" +msgstr "Ongeldig wachtwoord!" #: application/controllers/User.php:294 #, php-format msgid "User %s added!" -msgstr "" +msgstr "Gebruiker %s toegevoegd!" #: application/controllers/User.php:298 msgid "Users" -msgstr "" +msgstr "Gebruikers" #: application/controllers/User.php:378 application/controllers/User.php:811 #: application/views/club/permissions.php:253 msgid "Edit User" -msgstr "" +msgstr "Gebruiker bewerken" #: application/controllers/User.php:803 application/controllers/User.php:806 #, php-format msgid "User %s edited" -msgstr "" +msgstr "Gebruiker %s bewerkt" #: application/controllers/User.php:860 msgid "Profile" -msgstr "" +msgstr "Profiel" #: application/controllers/User.php:925 msgid "" "Congrats! Wavelog was successfully installed. You can now login for the " "first time." msgstr "" +"Gefeliciteerd! Wavelog is succesvol geïnstalleerd. Je kunt nu voor de eerste " +"keer inloggen." #: application/controllers/User.php:964 msgid "This is not allowed!" -msgstr "" +msgstr "Dit is niet toegestaan!" #: application/controllers/User.php:999 application/controllers/User.php:1010 msgid "Login failed. Try again." -msgstr "" +msgstr "Inloggen mislukt. Probeer het opnieuw." #: application/controllers/User.php:1017 #: application/views/interface_assets/header.php:369 #: application/views/user/login.php:91 #: application/views/visitor/layout/header.php:87 msgid "Login" -msgstr "" +msgstr "Inloggen" #: application/controllers/User.php:1055 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:1058 msgid "" "Your account is locked, due to too many failed login-attempts. Please reset " "your password." msgstr "" +"Je account is vergrendeld vanwege te veel mislukte inlogpogingen. Reset je " +"wachtwoord." #: application/controllers/User.php:1062 msgid "" @@ -2621,21 +2711,24 @@ msgid "" "appears unexpectedly or keeps showing up, please contact an administrator. " "Only administrators are currently allowed to log in." msgstr "" +"Sorry. Deze instantie is momenteel in onderhoudsmodus. Als dit bericht " +"onverwacht verschijnt of blijft verschijnen, neem dan contact op met een " +"beheerder. Alleen beheerders mogen momenteel inloggen." #: application/controllers/User.php:1065 msgid "Incorrect username or password!" -msgstr "" +msgstr "Onjuiste gebruikersnaam of wachtwoord!" #: application/controllers/User.php:1088 #, php-format msgid "User %s logged out." -msgstr "" +msgstr "Gebruiker %s heeft zich afgemeld." #: application/controllers/User.php:1104 #: application/views/oqrs/request_grouped.php:16 #: application/views/user/modals/first_login_wizard.php:26 msgid "Station Name" -msgstr "" +msgstr "Stationsnaam" #: application/controllers/User.php:1105 application/views/debug/index.php:584 #: application/views/public_search/result.php:17 @@ -2645,31 +2738,31 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:123 #: application/views/user/modals/first_login_wizard.php:34 msgid "Station Callsign" -msgstr "" +msgstr "Station roepnaam" #: application/controllers/User.php:1106 #: application/views/station_profile/create.php:68 #: application/views/station_profile/edit.php:96 #: application/views/user/modals/first_login_wizard.php:42 msgid "Station DXCC" -msgstr "" +msgstr "Station DXCC" #: application/controllers/User.php:1107 msgid "Station CQ Zone" -msgstr "" +msgstr "Station CQ Zone" #: application/controllers/User.php:1108 msgid "Station ITU Zone" -msgstr "" +msgstr "Station ITU Zone" #: application/controllers/User.php:1109 #: application/views/user/modals/first_login_wizard.php:91 msgid "Station Locator" -msgstr "" +msgstr "Station Locator" #: application/controllers/User.php:1124 msgid "Invalid Locator!" -msgstr "" +msgstr "Ongeldige locator!" #: application/controllers/User.php:1132 #, php-format @@ -2677,34 +2770,36 @@ msgid "" "Station created successfully! Welcome to Wavelog! To complete your station " "setup, click %shere%s." msgstr "" +"Station succesvol aangemaakt! Welkom bij Wavelog! Om je station in te " +"stellen, klik %shier%s." #: application/controllers/User.php:1135 msgid "Station setup failed! Please set up your station manually." -msgstr "" +msgstr "Station installatie mislukt! Stel je station handmatig in." #: application/controllers/User.php:1152 msgid "Password Reset is disabled on the Demo!" -msgstr "" +msgstr "Wachtwoord resetten is uitgeschakeld in de demo!" #: application/controllers/User.php:1165 msgid "Forgot Password" -msgstr "" +msgstr "Wachtwoord vergeten" #: application/controllers/User.php:1216 #: application/views/user/modals/more_actions_modal.php:88 msgid "Email settings are incorrect." -msgstr "" +msgstr "E-mailinstellingen zijn onjuist." #: application/controllers/User.php:1220 application/controllers/User.php:1225 msgid "Password Reset Processed." -msgstr "" +msgstr "Wachtwoordreset verwerkt." #: application/controllers/User.php:1326 #: 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 "" +msgstr "Wachtwoord opnieuw instellen" #: application/controllers/User.php:1386 #, php-format @@ -2712,6 +2807,8 @@ msgid "" "You currently can't impersonate another user. You need to set %s to %s in " "your config.php!" msgstr "" +"Je kunt momenteel geen andere gebruiker imiteren. Je moet %s instellen op %s " +"in je config.php!" #: application/controllers/User.php:1400 #: application/views/user/modals/admin_impersonate_modal.php:36 @@ -2719,10 +2816,12 @@ msgid "" "You currently can't impersonate another user. Please change the " "encryption_key in your config.php file first!" msgstr "" +"Je kunt momenteel geen andere gebruiker imiteren. Verander eerst de " +"encryption_key in je config.php-bestand!" #: application/controllers/User.php:1407 msgid "Invalid Hash" -msgstr "" +msgstr "Ongeldige hash" #: application/controllers/User.php:1420 msgid "The impersonation hash is too old. Please try again." @@ -2736,29 +2835,33 @@ msgstr "" #: application/controllers/User.php:1433 msgid "There was a problem with your session. Please try again." -msgstr "" +msgstr "Er was een probleem met je sessie. Probeer het opnieuw." #: application/controllers/User.php:1440 msgid "The requested user to impersonate does not exist" -msgstr "" +msgstr "De gevraagde gebruiker om te imiteren bestaat niet" #: application/controllers/User.php:1461 msgid "" "Could not determine the correct permission level for the clubstation. Try " "again after re-login." msgstr "" +"Kon het juiste machtigingsniveau voor het clubstation niet bepalen. Probeer " +"het opnieuw na opnieuw inloggen." #: application/controllers/User.php:1506 application/controllers/User.php:1518 #: application/controllers/User.php:1524 application/controllers/User.php:1533 #: application/controllers/User.php:1541 msgid "Ups.. Something went wrong. Try to log back in." -msgstr "" +msgstr "Oeps.. Er is iets misgegaan. Probeer opnieuw in te loggen." #: application/controllers/User.php:1547 msgid "" "The ability to return quickly has been disabled after the security hash " "expired. Please log in again." msgstr "" +"De mogelijkheid om snel terug te keren is uitgeschakeld nadat de " +"beveiligingshash is verlopen. Log alstublieft opnieuw in." #: application/controllers/User.php:1563 #, php-format @@ -2766,6 +2869,8 @@ msgid "" "You have been logged out of the clubstation %s. Welcome back, %s, to your " "personal account!" msgstr "" +"Je bent uitgelogd bij het clubstation %s. Welkom terug, %s, op je " +"persoonlijke account!" #: application/controllers/Visitor.php:216 msgid "Satellite Gridsquare Map" @@ -2774,60 +2879,62 @@ msgstr "" #: application/controllers/Visitor.php:410 #: application/views/stationsetup/stationsetup.php:35 msgid "Public Search" -msgstr "" +msgstr "Openbare zoekopdracht" #: application/controllers/Visitor.php:443 msgid "Export Map" -msgstr "" +msgstr "Kaart exporteren" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 #: application/views/interface_assets/header.php:473 +#, fuzzy msgid "QO-100 Dx Club Upload" -msgstr "" +msgstr "QO-100 Dx Club Upload" #: application/controllers/Widgets.php:21 +#, fuzzy msgid "Unknown Public Page, please make sure the public slug is correct." -msgstr "" +msgstr "Onbekende openbare pagina, controleer of de openbare slug correct is." #: application/controllers/Widgets.php:54 application/views/oqrs/index.php:69 msgid "No stations found that are using Wavelog OQRS." -msgstr "" +msgstr "Geen stations gevonden die Wavelog OQRS gebruiken." #: application/libraries/Callbook.php:86 msgid "QRZCQ Error" -msgstr "" +msgstr "QRZCQ Fout" #: application/libraries/Subdivisions.php:31 msgctxt "Division Name (States in various countries)." msgid "Province" -msgstr "" +msgstr "Provincie" #: application/libraries/Subdivisions.php:39 msgctxt "Division Name (States in various countries)." msgid "Oblast" -msgstr "" +msgstr "oblast" #: application/libraries/Subdivisions.php:41 #: application/libraries/Subdivisions.php:47 msgctxt "Division Name (States in various countries)." msgid "Region" -msgstr "" +msgstr "Regio" #: application/libraries/Subdivisions.php:45 msgctxt "Division Name (States in various countries)." msgid "Department" -msgstr "" +msgstr "Departement" #: application/libraries/Subdivisions.php:49 msgctxt "Division Name (States in various countries)." msgid "Municipality" -msgstr "" +msgstr "Gemeente" #: application/libraries/Subdivisions.php:51 msgctxt "Division Name (States in various countries)." msgid "Federal State" -msgstr "" +msgstr "Deelstaat" #: application/libraries/Subdivisions.php:56 #: application/libraries/Subdivisions.php:94 @@ -2839,139 +2946,146 @@ msgstr "" #: application/libraries/Subdivisions.php:85 msgctxt "Division Name (States in various countries)." msgid "District" -msgstr "" +msgstr "District" #: application/libraries/Subdivisions.php:62 msgctxt "Division Name (States in various countries)." msgid "Canton" -msgstr "" +msgstr "Kanton" #: application/libraries/Subdivisions.php:64 msgctxt "Division Name (States in various countries)." msgid "US State" -msgstr "" +msgstr "Amerikaanse staat" #: application/libraries/Subdivisions.php:67 msgctxt "Division Name (States in various countries)." msgid "Prefecture" -msgstr "" +msgstr "Prefectuur" #: application/libraries/Subdivisions.php:69 msgctxt "Division Name (States in various countries)." msgid "State" -msgstr "" +msgstr "Staat" #: application/libraries/Subdivisions.php:78 msgctxt "Division Name (States in various countries)." msgid "US County" -msgstr "" +msgstr "Amerikaanse county" #: application/libraries/Subdivisions.php:90 msgctxt "Division Name (States in various countries)." msgid "DME" -msgstr "" +msgstr "DME" #: application/libraries/Subdivisions.php:92 msgctxt "Division Name (States in various countries)." msgid "City / Ku / Gun" -msgstr "" +msgstr "Stad / Ku / Gun" #: application/models/Club_model.php:154 msgid "Invalid Permission Level!" -msgstr "" +msgstr "Ongeldig machtigingsniveau!" #: application/models/Club_model.php:169 msgid "Error adding Club Member!" -msgstr "" +msgstr "Fout bij het toevoegen van clublid!" #: application/models/Eqslmethods_model.php:287 msgid "Your eQSL username and/or password is incorrect." -msgstr "" +msgstr "Je eQSL-gebruikersnaam en/of wachtwoord is onjuist." #: application/models/Eqslmethods_model.php:293 msgid "Something went wrong with eQSL.cc!" -msgstr "" +msgstr "Er is iets misgegaan met eQSL.cc!" #: application/models/Eqslmethods_model.php:309 msgid "eQSL.cc is experiencing issues. Please try exporting QSOs later." -msgstr "" +msgstr "eQSL.cc ondervindt problemen. Probeer later QSOs te exporteren." #: application/models/Eqslmethods_model.php:315 msgid "" "There was an error in one of the QSOs. You might want to manually upload " "them." msgstr "" +"Er was een fout in een van de QSOs. Je zou ze handmatig kunnen uploaden." #: application/models/Eqslmethods_model.php:321 msgid "" "It seems that the eQSL site has changed. Please open up an issue on GitHub." msgstr "" +"Het lijkt erop dat de eQSL-site is veranderd. Open alsjeblieft een issue op " +"GitHub." #: application/models/Hrdlog_model.php:22 msgid "" "HRDlog: QSOs have been uploaded to hrdlog.net for the station callsign: " -msgstr "" +msgstr "HRDlog: QSO's zijn geüpload naar hrdlog.net voor de station roepnaam: " #: application/models/Hrdlog_model.php:25 msgid "HRDlog: No QSOs found to upload for the station callsign: " -msgstr "" +msgstr "HRDlog: Geen QSOs gevonden om te uploaden voor de station roepnaam: " #: application/models/Hrdlog_model.php:31 msgid "HRDlog: No station profiles with HRDlog Credentials found." -msgstr "" +msgstr "HRDlog: Geen stationprofielen met HRDlog-gegevens gevonden." #: application/models/Logbook_model.php:3875 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" +"Verkeerde station roepnaam %s bij het importeren van QSO met %s voor %s: " +"OVERGESLAGEN" #: application/models/Logbook_model.php:3876 #, php-format msgid "Check %s for hints about errors in ADIF files." -msgstr "" +msgstr "Controleer %s voor hints over fouten in ADIF-bestanden." #: application/models/Logbook_model.php:3888 msgid "QSO on" -msgstr "" +msgstr "QSO vanaf" #: application/models/Logbook_model.php:3888 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" 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:4187 msgid "the qslrdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de qslrdate is ongeldig (JJJJMMDD)" #: application/models/Logbook_model.php:4198 msgid "the qslsdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de qslsdatum is ongeldig (JJJJMMDD)" #: application/models/Logbook_model.php:4259 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" -msgstr "" +msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" #: application/models/Logbook_model.php:4279 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de lotw_qslrdate is ongeldig (JJJJMMDD)" #: application/models/Logbook_model.php:4300 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" -msgstr "" +msgstr "de lotw_qslsdate is ongeldig (JJJJMMDD)" #: application/models/Logbook_model.php:4581 #: application/views/simplefle/index.php:40 msgid "Duplicate for" -msgstr "" +msgstr "Duplicaat voor" #: application/models/Logbook_model.php:4642 msgid "QSO could not be matched" -msgstr "" +msgstr "QSO kon niet worden gekoppeld" #: application/models/Logbook_model.php:4648 msgid "confirmed by LoTW/Clublog/eQSL/Contest" -msgstr "" +msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" #: application/models/Logbook_model.php:4653 msgid "confirmed by award manager" @@ -2979,21 +3093,21 @@ msgstr "" #: application/models/Logbook_model.php:4656 msgid "confirmed by cross-check of DCL data" -msgstr "" +msgstr "bevestigd door kruiscontrole van DCL-gegevens" #: application/models/Logbook_model.php:4659 msgid "confirmation pending" -msgstr "" +msgstr "bevestiging in afwachting" #: application/models/Logbook_model.php:4662 msgid "unconfirmed" -msgstr "" +msgstr "onbevestigd" #: application/models/Logbook_model.php:4665 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" -msgstr "" +msgstr "onbekend" #: application/models/Logbook_model.php:5475 #: application/views/activated_gridmap/index.php:110 @@ -3007,71 +3121,71 @@ msgstr "" #: application/views/user/edit.php:351 #: application/views/view_log/partial/log_ajax.php:20 msgid "Bearing" -msgstr "" +msgstr "Koers" #: application/models/Update_model.php:303 msgid "Newer release available:" -msgstr "" +msgstr "Nieuwere release beschikbaar:" #: application/models/Update_model.php:307 msgid "You are running the latest version." -msgstr "" +msgstr "Je draait de nieuwste versie." #: application/models/Update_model.php:385 msgid "cURL error:" -msgstr "" +msgstr "cURL-fout:" #: application/models/Update_model.php:420 msgid "SAT already existing. LoTW status updated." -msgstr "" +msgstr "SAT bestaat al. LoTW-status bijgewerkt." #: application/models/Update_model.php:422 msgid "SAT already existing. Updating LoTW status failed." -msgstr "" +msgstr "SAT bestaat al. Bijwerken van LoTW-status mislukt." #: application/models/Update_model.php:425 msgid "SAT already existing. Ignored." -msgstr "" +msgstr "SAT bestaat al. Genegeerd." #: application/models/Update_model.php:432 msgid "SAT already existing. Display name updated." -msgstr "" +msgstr "SAT bestaat al. Weergavenaam bijgewerkt." #: application/models/Update_model.php:434 msgid "SAT already existing. Updating display name failed." -msgstr "" +msgstr "SAT bestaat al. Bijwerken van de weergavenaam is mislukt." #: application/models/Update_model.php:444 msgid "New SAT. Inserted." -msgstr "" +msgstr "Nieuwe SAT. ingevoegd." #: application/models/Update_model.php:446 msgid "New SAT. Insert failed." -msgstr "" +msgstr "Nieuwe SAT. invoegen mislukt." #: application/views/accumulate/index.php:2 msgid "Accumulated number of DXCCs worked" -msgstr "" +msgstr "Opgeteld aantal gewerkte DXCC's" #: application/views/accumulate/index.php:3 msgid "Accumulated number of States worked" -msgstr "" +msgstr "Opgeteld aantal gewerkte staten" #: application/views/accumulate/index.php:4 msgid "Accumulated number of IOTAs worked" -msgstr "" +msgstr "Opgeteld aantal IOTAs gewerkt" #: application/views/accumulate/index.php:5 msgid "Accumulated number of CQ Zones worked" -msgstr "" +msgstr "Opgeteld aantal CQ-zones gewerkt" #: application/views/accumulate/index.php:6 msgid "Accumulated number of VUCC Grids worked" -msgstr "" +msgstr "Opgeteld aantal VUCC-grids gewerkt" #: application/views/accumulate/index.php:7 msgid "Accumulated number of WAJA worked" -msgstr "" +msgstr "Opgeteld aantal WAJA gewerkt" #: application/views/accumulate/index.php:8 #: application/views/dashboard/index.php:296 @@ -3088,7 +3202,7 @@ msgstr "Jaar" #: application/views/accumulate/index.php:67 #: application/views/dayswithqso/index.php:14 msgid "Yearly" -msgstr "" +msgstr "Jaarlijks" #: application/views/accumulate/index.php:10 #: application/views/dashboard/index.php:301 @@ -3099,11 +3213,11 @@ msgstr "Maand" #: application/views/accumulate/index.php:11 #: application/views/accumulate/index.php:73 msgid "Monthly" -msgstr "" +msgstr "Maandelijks" #: application/views/accumulate/index.php:12 msgid "Difference" -msgstr "" +msgstr "Verschil" #: application/views/accumulate/index.php:24 #: application/views/accumulate/index.php:34 @@ -3212,7 +3326,7 @@ msgstr "" #: application/views/user/edit.php:653 #: application/views/visitor/layout/footer.php:172 msgid "All" -msgstr "" +msgstr "Alles" #: application/views/accumulate/index.php:50 #: application/views/timeline/index.php:41 @@ -3222,31 +3336,31 @@ msgstr "" #: application/views/accumulate/index.php:53 #: application/views/timeline/index.php:44 msgid "DX Century Club (DXCC)" -msgstr "" +msgstr "DX Century Club (DXCC)" #: application/views/accumulate/index.php:55 #: application/views/timeline/index.php:46 msgid "Islands On The Air (IOTA)" -msgstr "" +msgstr "Islands On The Air (IOTA)" #: application/views/accumulate/index.php:56 #: application/views/timeline/index.php:47 msgid "Worked All Zones (WAZ)" -msgstr "" +msgstr "Worked All Zones (WAZ)" #: application/views/accumulate/index.php:57 #: application/views/timeline/index.php:48 msgid "VHF / UHF Century Club (VUCC)" -msgstr "" +msgstr "VHF / UHF Century Club (VUCC)" #: application/views/accumulate/index.php:58 #: application/views/timeline/index.php:49 msgid "Worked All Japan (WAJA)" -msgstr "" +msgstr "Worked All Japan (WAJA)" #: application/views/accumulate/index.php:62 msgid "Period" -msgstr "" +msgstr "Periode" #: application/views/accumulate/index.php:80 #: application/views/callstats/index.php:65 @@ -3259,13 +3373,13 @@ msgstr "" #: application/views/timeline/index.php:79 #: application/views/view_log/qso.php:230 msgid "Propagation" -msgstr "" +msgstr "Propagatie" #: application/views/accumulate/index.php:84 #: application/views/distances/index.php:57 #: application/views/timeline/index.php:83 msgid "All but SAT" -msgstr "" +msgstr "Alles behalve SAT" #: application/views/accumulate/index.php:85 #: application/views/callstats/index.php:69 @@ -3275,7 +3389,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:357 #: application/views/timeline/index.php:84 msgid "None/Empty" -msgstr "" +msgstr "Geen/Leeg" #: application/views/accumulate/index.php:86 #: application/views/callstats/index.php:71 application/views/csv/index.php:95 @@ -3288,7 +3402,7 @@ msgstr "" #: application/views/view_log/qso.php:233 msgctxt "Propagation Mode" msgid "Aircraft Scatter" -msgstr "" +msgstr "Aircraft Scatter" #: application/views/accumulate/index.php:87 #: application/views/callstats/index.php:72 application/views/csv/index.php:96 @@ -3301,7 +3415,7 @@ msgstr "" #: application/views/view_log/qso.php:236 msgctxt "Propagation Mode" msgid "Aurora" -msgstr "" +msgstr "Aurora" #: application/views/accumulate/index.php:88 #: application/views/callstats/index.php:73 application/views/csv/index.php:97 @@ -3314,7 +3428,7 @@ msgstr "" #: application/views/view_log/qso.php:239 msgctxt "Propagation Mode" msgid "Aurora-E" -msgstr "" +msgstr "Aurora-E" #: application/views/accumulate/index.php:89 #: application/views/callstats/index.php:74 application/views/csv/index.php:98 @@ -3327,7 +3441,7 @@ msgstr "" #: application/views/view_log/qso.php:242 msgctxt "Propagation Mode" msgid "Back scatter" -msgstr "" +msgstr "Back scatter" #: application/views/accumulate/index.php:90 #: application/views/callstats/index.php:75 application/views/csv/index.php:99 @@ -3340,7 +3454,7 @@ msgstr "" #: application/views/view_log/qso.php:245 msgctxt "Propagation Mode" msgid "EchoLink" -msgstr "" +msgstr "EchoLink" #: application/views/accumulate/index.php:91 #: application/views/callstats/index.php:76 application/views/csv/index.php:100 @@ -3353,7 +3467,7 @@ msgstr "" #: application/views/view_log/qso.php:248 msgctxt "Propagation Mode" msgid "Earth-Moon-Earth" -msgstr "" +msgstr "Earth-Moon-Earth" #: application/views/accumulate/index.php:92 #: application/views/callstats/index.php:77 application/views/csv/index.php:101 @@ -3366,7 +3480,7 @@ msgstr "" #: application/views/view_log/qso.php:251 msgctxt "Propagation Mode" msgid "Sporadic E" -msgstr "" +msgstr "Sporadic E" #: application/views/accumulate/index.php:93 #: application/views/callstats/index.php:78 application/views/csv/index.php:102 @@ -3379,7 +3493,7 @@ msgstr "" #: application/views/view_log/qso.php:254 msgctxt "Propagation Mode" msgid "Field Aligned Irregularities" -msgstr "" +msgstr "Field Aligned Irregularities" #: application/views/accumulate/index.php:94 #: application/views/callstats/index.php:79 application/views/csv/index.php:103 @@ -3392,7 +3506,7 @@ msgstr "" #: application/views/view_log/qso.php:257 msgctxt "Propagation Mode" msgid "F2 Reflection" -msgstr "" +msgstr "F2 Reflection" #: application/views/accumulate/index.php:95 #: application/views/callstats/index.php:80 application/views/csv/index.php:104 @@ -3405,7 +3519,7 @@ msgstr "" #: application/views/view_log/qso.php:260 msgctxt "Propagation Mode" msgid "Internet-assisted" -msgstr "" +msgstr "Internet-ondersteund" #: application/views/accumulate/index.php:96 #: application/views/callstats/index.php:81 application/views/csv/index.php:105 @@ -3418,7 +3532,7 @@ msgstr "" #: application/views/view_log/qso.php:263 msgctxt "Propagation Mode" msgid "Ionoscatter" -msgstr "" +msgstr "Ionoscatter" #: application/views/accumulate/index.php:97 #: application/views/callstats/index.php:82 application/views/csv/index.php:106 @@ -3431,7 +3545,7 @@ msgstr "" #: application/views/view_log/qso.php:266 msgctxt "Propagation Mode" msgid "IRLP" -msgstr "" +msgstr "IRLP" #: application/views/accumulate/index.php:98 #: application/views/callstats/index.php:83 application/views/csv/index.php:107 @@ -3444,7 +3558,7 @@ msgstr "" #: application/views/view_log/qso.php:269 msgctxt "Propagation Mode" msgid "Meteor scatter" -msgstr "" +msgstr "Meteor scatter" #: application/views/accumulate/index.php:99 #: application/views/callstats/index.php:84 application/views/csv/index.php:108 @@ -3457,7 +3571,7 @@ msgstr "" #: application/views/view_log/qso.php:272 msgctxt "Propagation Mode" msgid "Terrestrial or atmospheric repeater or transponder" -msgstr "" +msgstr "Terrestrische of atmosferische repeater of transponder" #: application/views/accumulate/index.php:100 #: application/views/callstats/index.php:85 application/views/csv/index.php:109 @@ -3468,9 +3582,10 @@ msgstr "" #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:460 #: application/views/timeline/index.php:99 #: application/views/view_log/qso.php:275 +#, fuzzy msgctxt "Propagation Mode" msgid "Rain scatter" -msgstr "" +msgstr "Regen scatter" #: application/views/accumulate/index.php:101 #: application/views/callstats/index.php:86 application/views/csv/index.php:110 @@ -3496,7 +3611,7 @@ msgstr "Satelliet" #: application/views/view_log/qso.php:281 msgctxt "Propagation Mode" msgid "Trans-equatorial" -msgstr "" +msgstr "Trans-equatoriaal" #: application/views/accumulate/index.php:103 #: application/views/callstats/index.php:88 application/views/csv/index.php:112 @@ -3509,7 +3624,7 @@ msgstr "" #: application/views/view_log/qso.php:284 msgctxt "Propagation Mode" msgid "Tropospheric ducting" -msgstr "" +msgstr "Tropospheric ducting" #: application/views/accumulate/index.php:112 #: application/views/activators/index.php:53 @@ -3541,7 +3656,7 @@ msgstr "" #: application/views/timeline/index.php:370 #: application/views/timeplotter/index.php:59 msgid "Show" -msgstr "" +msgstr "Toon" #: application/views/activated_gridmap/index.php:20 #: application/views/awards/dxcc/index.php:131 @@ -3580,14 +3695,14 @@ msgstr "Satelliet" #: application/views/statistics/antennaanalytics.php:60 #: application/views/statistics/antennaanalytics.php:101 msgid "Orbit" -msgstr "" +msgstr "Baan" #: application/views/activated_gridmap/index.php:50 #: application/views/awards/wab/index.php:64 #: application/views/gridmap/index.php:92 #: application/views/timeline/index.php:52 msgid "Confirmation" -msgstr "" +msgstr "Bevestiging" #: application/views/activated_gridmap/index.php:82 #: application/views/awards/cq/index.php:68 @@ -3604,18 +3719,18 @@ msgstr "" #: application/views/awards/was/index.php:67 #: application/views/gridmap/index.php:125 application/views/user/edit.php:695 msgid "QRZ.com" -msgstr "" +msgstr "QRZ.com" #: application/views/activated_gridmap/index.php:86 #: application/views/gridmap/index.php:130 #: application/views/satellite/flightpath.php:46 msgid "Plot" -msgstr "" +msgstr "Plot" #: application/views/activated_gridmap/index.php:87 #: application/views/gridmap/index.php:131 msgid "Clear Markers" -msgstr "" +msgstr "Markeringen wissen" #: application/views/activated_gridmap/index.php:102 #: application/views/awards/ffma/index.php:30 @@ -3623,7 +3738,7 @@ msgstr "" #: application/views/gridmap/index.php:148 #: application/views/logbookadvanced/index.php:8 msgid "Latitude" -msgstr "" +msgstr "Breedtegraad" #: application/views/activated_gridmap/index.php:104 #: application/views/awards/ffma/index.php:32 @@ -3631,17 +3746,17 @@ msgstr "" #: application/views/gridmap/index.php:150 #: application/views/logbookadvanced/index.php:9 msgid "Longitude" -msgstr "" +msgstr "Lengtegraad" #: application/views/activators/index.php:26 msgctxt "Orbiter LEO or GEO" msgid "Both" -msgstr "" +msgstr "Beide" #: application/views/activators/index.php:33 #: application/views/callstats/index.php:92 msgid "Minimum Count" -msgstr "" +msgstr "Minimum aantal" #: application/views/activators/index.php:76 #: application/views/awards/counties/details.php:27 @@ -3669,7 +3784,7 @@ msgstr "" #: application/views/public_search/empty.php:3 #: application/views/qrz/export.php:65 application/views/timeline/index.php:158 msgid "Nothing found!" -msgstr "" +msgstr "Niets gevonden!" #: application/views/activators/index.php:98 #: application/views/adif/import.php:75 application/views/adif/import.php:221 @@ -3713,11 +3828,11 @@ msgstr "" #: application/views/user/index.php:151 application/views/user/profile.php:29 #: application/views/view_log/qso.php:83 application/views/view_log/qso.php:656 msgid "Callsign" -msgstr "Callsign" +msgstr "Roepnaam" #: application/views/activators/index.php:99 msgid "Count" -msgstr "" +msgstr "Tellen" #: application/views/activators/index.php:101 #: application/views/callstats/index.php:150 @@ -3728,33 +3843,33 @@ msgstr "" #: application/views/timeline/index.php:328 #: application/views/timeline/index.php:357 msgid "Show QSO's" -msgstr "" +msgstr "Toon QSO's" #: application/views/activators/index.php:102 msgid "Show Map" -msgstr "" +msgstr "Toon kaart" #: application/views/adif/dcl_success.php:12 msgid "Results of DCL DOK Update" -msgstr "" +msgstr "Resultaten van DCL DOK-update" #: application/views/adif/dcl_success.php:16 #: application/views/cabrillo/cbr_success.php:16 msgid "Yay, its updated!" -msgstr "" +msgstr "Jippie, het is bijgewerkt!" #: application/views/adif/dcl_success.php:17 msgid "DCL information for DOKs has been updated." -msgstr "" +msgstr "DCL-informatie voor DOK's is bijgewerkt." #: application/views/adif/dcl_success.php:19 msgid "No QSOs found which could be updated." -msgstr "" +msgstr "Geen QSOs gevonden die bijgewerkt kunnen worden." #: application/views/adif/dcl_success.php:22 #: application/views/cabrillo/cbr_success.php:22 msgid "QSOs ignored" -msgstr "" +msgstr "QSOs genegeerd" #: application/views/adif/dcl_success.php:22 msgid "QSOs unmatched" @@ -3763,15 +3878,16 @@ msgstr "" #: application/views/adif/dcl_success.php:22 #: application/views/cabrillo/cbr_success.php:22 msgid "QSOs updated" -msgstr "" +msgstr "QSOs bijgewerkt" #: application/views/adif/dcl_success.php:25 msgid "DOK Errors" -msgstr "" +msgstr "DOK-fouten" #: application/views/adif/dcl_success.php:26 msgid "There is different data for DOK in your log compared to DCL" msgstr "" +"Er zijn verschillende gegevens voor DOK in je logboek vergeleken met DCL" #: application/views/adif/dcl_success.php:29 #: application/views/awards/pota/index.php:32 @@ -3863,19 +3979,19 @@ msgstr "Tijd" #: application/views/visitor/index.php:156 #: application/views/widgets/qsos.php:29 msgid "Call" -msgstr "" +msgstr "Roepnaam" #: application/views/adif/dcl_success.php:34 msgid "DOK in Log" -msgstr "" +msgstr "DOK in logboek" #: application/views/adif/dcl_success.php:35 msgid "DOK in DCL" -msgstr "" +msgstr "DOK in DCL" #: application/views/adif/dcl_success.php:36 msgid "DCL QSL Status" -msgstr "" +msgstr "DCL QSL-status" #: application/views/adif/import.php:24 msgid "ADIF Export" @@ -3883,11 +3999,11 @@ msgstr "ADIF Export" #: application/views/adif/import.php:36 application/views/adif/import.php:291 msgid "DARC DCL" -msgstr "" +msgstr "DARC DCL" #: application/views/adif/import.php:45 msgid "CBR Import" -msgstr "" +msgstr "CBR Importeren" #: application/views/adif/import.php:64 application/views/adif/import.php:338 #: application/views/api/index.php:16 application/views/dashboard/index.php:172 @@ -3901,11 +4017,11 @@ msgstr "Belangrijk" #: application/views/adif/import.php:64 msgid "Log Files must have the file type *.adi" -msgstr "" +msgstr "Logbestanden moeten het bestandstype *.adi hebben" #: application/views/adif/import.php:65 application/views/view_log/qso.php:771 msgid "Maximum file upload size is " -msgstr "" +msgstr "Maximale bestandsgrootte voor uploaden is " #: application/views/adif/import.php:65 application/views/adif/import.php:268 #: application/views/adif/import.php:307 application/views/debug/index.php:193 @@ -3919,7 +4035,7 @@ msgstr "" #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 msgid "Warning" -msgstr "" +msgstr "Waarschuwing" #: application/views/adif/import.php:69 application/views/adif/import.php:71 #: application/views/adif/import.php:215 application/views/adif/import.php:263 @@ -3927,46 +4043,47 @@ msgstr "" #: application/views/qrz/export.php:91 application/views/reg1test/index.php:30 #: application/views/webadif/export.php:89 msgid "Select Station Location" -msgstr "" +msgstr "Selecteer stationlocatie" #: application/views/adif/import.php:82 msgid "Select the operator of the imported QSOs" -msgstr "" +msgstr "Selecteer de operator van de geïmporteerde QSOs" #: application/views/adif/import.php:94 msgid "Add QSOs to Contest" -msgstr "" +msgstr "QSO's toevoegen aan contest" #: application/views/adif/import.php:96 application/views/adif/import.php:345 #: application/views/simplefle/index.php:85 +#, fuzzy msgid "No Contest" -msgstr "" +msgstr "Geen contest" #: application/views/adif/import.php:102 msgid "ADIF File" -msgstr "" +msgstr "ADIF-bestand" #: application/views/adif/import.php:109 msgid "Import duplicate QSOs" -msgstr "" +msgstr "Dubbele QSOs importeren" #: application/views/adif/import.php:118 msgid "Mark imported QSOs as uploaded to LoTW" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar LoTW" #: application/views/adif/import.php:120 application/views/adif/import.php:130 #: application/views/adif/import.php:140 application/views/adif/import.php:150 #: application/views/adif/import.php:160 application/views/adif/import.php:170 msgid "Select if ADIF being imported does not contain this information." -msgstr "" +msgstr "Selecteer als ADIF die informatie niet bevat bij het importeren." #: application/views/adif/import.php:128 msgid "Mark imported QSOs as uploaded to eQSL Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar eQSL logboek" #: application/views/adif/import.php:138 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar HRDLog.net Logboek" #: application/views/adif/import.php:148 msgid "Mark imported QSOs as uploaded to QRZ Logbook" @@ -3994,6 +4111,8 @@ msgstr "" msgid "" "Always use the logged-in account callsign as the operator call during import" msgstr "" +"Gebruik altijd de ingelogde accountroepnaam als de operatorroepnaam tijdens " +"het importeren" #: application/views/adif/import.php:199 #: application/views/interface_assets/footer.php:34 @@ -4004,7 +4123,7 @@ msgstr "" #: application/views/adif/import.php:199 msgid "Ignore Stationcallsign on import" -msgstr "" +msgstr "Negeer stationroepnaam bij import" #: application/views/adif/import.php:201 #, php-format @@ -4119,7 +4238,7 @@ msgstr "" #: application/views/adif/import.php:316 msgid "Ignore QSOs that cannot be matched." -msgstr "Negeer QSOs die niet kunnen worden bevestigd" +msgstr "Negeer QSOs die niet kunnen worden bevestigd." #: application/views/adif/import.php:318 msgid "" @@ -4471,6 +4590,9 @@ msgid "" "individuals for all county contacts made, regardless of callsigns used, " "operating locations, or dates." msgstr "" +"USA-CA is beschikbaar voor alle gelicenseerde amateurs wereldwijd en wordt " +"uitgegeven aan individuen voor alle county-contacten, ongeacht de gebruikte " +"roepnamen, operationele locaties of data." #: application/views/awards/counties/index.php:10 msgid "Special USA-CA awards are also available to SWLs on a heard basis." @@ -6138,6 +6260,9 @@ msgid "" "appropriate authorizations. Add users to the table below and set the " "appropriate permission." msgstr "" +"Om gebruikers QSOs met deze club/speciale roepnaam te laten loggen, hebben " +"ze de juiste autorisaties nodig. Voeg gebruikers toe aan de onderstaande " +"tabel en stel de juiste toestemming in." #: application/views/club/permissions.php:14 msgid "See available Permissions" @@ -6236,10 +6361,12 @@ msgid "" "Search for the user by their callsign or first/lastname and select the " "permission level." msgstr "" +"Zoek de gebruiker op hun roepnaam of voor-/achternaam en selecteer het " +"machtigingsniveau." #: application/views/club/permissions.php:175 msgid "User (Callsign or Name)" -msgstr "" +msgstr "Gebruiker (roepnaam of naam)" #: application/views/club/permissions.php:176 #: application/views/club/permissions.php:225 @@ -6288,7 +6415,7 @@ msgstr "" #: application/views/club/permissions.php:268 msgid "User Callsign" -msgstr "" +msgstr "Gebruikersroepnaam" #: application/views/club/permissions.php:286 msgid "Notify the user via email about the change" @@ -6305,7 +6432,7 @@ msgstr "" #: application/views/club/permissions.php:320 #, php-format msgid "Callsign: %s" -msgstr "" +msgstr "Roepnaam: %s" #: application/views/club/permissions.php:321 #, php-format @@ -6551,7 +6678,7 @@ msgstr "" #: application/views/operator/index.php:5 #: application/views/qso/edit_ajax.php:649 application/views/qso/index.php:360 msgid "Operator Callsign" -msgstr "" +msgstr "Operator roepnaam" #: application/views/contesting/index.php:45 #: application/views/contesting/index.php:50 @@ -6664,7 +6791,7 @@ msgstr "Bewaar QSO" #: application/views/contesting/index.php:243 msgid "Callsign Suggestions" -msgstr "Roepnaam suggesties" +msgstr "Aanbevelingen voor roepnamen" #: application/views/contesting/index.php:250 msgid "Contest Logbook" @@ -7605,8 +7732,9 @@ msgid "the distance was" msgstr "" #: application/views/distances/index.php:14 +#, fuzzy msgid "Callsign(s) worked (max 5 shown)" -msgstr "" +msgstr "Opgeroepen roepna(a)m(en) (maximaal 5 getoond)" #: application/views/distances/index.php:19 msgid "Band selection" @@ -7691,6 +7819,10 @@ msgid "" "Your permission level for Clubstation %s has been changed. You can access " "this callsign through your account at %s." msgstr "" +"Beste %s,\n" +"\n" +"Je toestemmingsniveau voor Clubstation %s is gewijzigd. Je kunt deze " +"roepnaam via je account op %s benaderen." #: application/views/email/club/modified_member.php:9 #, php-format @@ -7720,6 +7852,10 @@ msgid "" "You have been added to the Clubstation %s. You can now access this callsign " "through your account on %s." msgstr "" +"Beste %s\n" +"\n" +"Je bent toegevoegd aan de Clubstation %s. Je kunt nu toegang krijgen tot " +"deze roepnaam via je account op %s." #: application/views/email/club/new_member.php:9 #, php-format @@ -7949,6 +8085,8 @@ msgid "" "Use this if you have lots of QSOs to upload to eQSL it will save the server " "timing out." msgstr "" +"Gebruik dit als je veel QSO's naar eQSL moet uploaden, het voorkomt dat de " +"server uitvalt." #: application/views/eqslcard/index.php:10 #, php-format @@ -8026,8 +8164,9 @@ msgstr "" #: application/views/hrdlog/export.php:35 #: application/views/oqrs/showrequests.php:86 #: application/views/qrz/export.php:40 application/views/webadif/export.php:42 +#, fuzzy msgid "Station callsign" -msgstr "" +msgstr "Station roepnaam" #: application/views/hrdlog/export.php:36 application/views/qrz/export.php:41 msgid "Edited QSOs not uploaded" @@ -8225,7 +8364,7 @@ msgstr "" #: application/views/interface_assets/footer.php:779 #: application/views/logbookadvanced/index.php:596 msgid "Callsign: " -msgstr "" +msgstr "Roepnaam: " #: application/views/interface_assets/footer.php:780 msgid "Count: " @@ -9482,7 +9621,7 @@ msgstr "" #: application/views/lotw/import.php:24 msgid "Download Report" -msgstr "" +msgstr "Rapport downloaden" #: application/views/lotw/import.php:24 #, php-format From c2a84530253e195946a806b4639d1e1bd166e22f Mon Sep 17 00:00:00 2001 From: Alexander Date: Sat, 25 Jan 2025 22:10:43 +0000 Subject: [PATCH 03/17] Translated using Weblate (Dutch) Currently translated at 100.0% (160 of 160 strings) Translation: Wavelog/Installer Translate-URL: https://translate.wavelog.org/projects/wavelog/installer/nl/ --- .../locale/nl_NL/LC_MESSAGES/installer.po | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po index a3f006ed3..e4bad9743 100644 --- a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po @@ -5,12 +5,13 @@ # Casper van Lieburg , 2024. # Fabian Berg , 2024. # PE1PQX , 2025. +# Alexander , 2025. msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-23 16:03+0000\n" -"Last-Translator: PE1PQX \n" +"PO-Revision-Date: 2025-01-26 15:27+0000\n" +"Last-Translator: Alexander \n" "Language-Team: Dutch \n" "Language: nl_NL\n" @@ -138,7 +139,7 @@ msgstr "1. Welkom" #: install/index.php:38 msgid "2. Pre Checks" -msgstr "2. Eerste contrôle" +msgstr "2. Voorcontrole" #: install/index.php:41 msgid "3. Configuration" @@ -276,7 +277,7 @@ msgstr "" #: install/index.php:321 msgid "" "After that, you have to restart your webserver and start the installer again." -msgstr "" +msgstr "Daarna moet je je webserver herstarten en de installer opnieuw starten." #: install/index.php:322 #, php-format @@ -339,6 +340,12 @@ msgid "" "credentials for QRZ.com. To also get the Call Locator in QRZ.com you'll need " "an XML subscription. HamQTH does not always provide the locator information." msgstr "" +"Deze configuratie is optioneel. Het opzoeken van roepnamen zal beschikbaar " +"zijn voor alle gebruikers van deze installatie. Je kunt kiezen tussen " +"QRZ.com en HamQTH. Terwijl HamQTH ook zonder gebruikersnaam en wachtwoord " +"werkt, heb je inloggegevens nodig voor QRZ.com. Om ook de Call Locator in " +"QRZ.com te krijgen, heb je een XML-abonnement nodig. HamQTH biedt niet " +"altijd de locatorinformatie." #: install/index.php:368 install/index.php:449 install/index.php:901 msgid "Username" @@ -390,6 +397,8 @@ msgid "" "Optional: Enable Error Logging by setting the log threshold bigger then 0. " "Only enable this if you really need it." msgstr "" +"Optioneel: Schakel foutlogboekregistratie in door de logdrempel groter dan 0 " +"in te stellen. Schakel dit alleen in als je het echt nodig hebt." #: install/index.php:407 msgid "0 - No logs" @@ -507,7 +516,7 @@ msgstr "Achternaam" #: install/index.php:895 msgid "Callsign" -msgstr "Callsign" +msgstr "Roepnaam" #: install/index.php:905 msgid "Gridsquare/Locator" @@ -606,12 +615,16 @@ msgid "" "The callsign should not contain any pre- or suffixes as it is used as " "personal operator callsign." msgstr "" +"De roepnaam mag geen voor- of achtervoegsels bevatten, omdat deze wordt " +"gebruikt als persoonlijke operatorroepnaam." #: install/index.php:1345 msgid "" "The callsign can not contain any special characters. It's your personal " "callsign without any pre- or suffixes." msgstr "" +"De roepnaam mag geen speciale tekens bevatten. Het is je persoonlijke " +"roepnaam zonder voor- of achtervoegsels." #: install/index.php:1478 msgid "Error: At least Hostname/IP, Database Name and Username are required." From b6b2170f038677d859ad5370999a8b39d3fc7ad9 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 26 Jan 2025 15:29:12 +0000 Subject: [PATCH 04/17] po/mo updates --- .../locale/nl_NL/LC_MESSAGES/messages.mo | Bin 7963 -> 46883 bytes .../locale/nl_NL/LC_MESSAGES/messages.po | 55 ------------------ .../locale/nl_NL/LC_MESSAGES/installer.mo | Bin 14024 -> 15761 bytes 3 files changed, 55 deletions(-) diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index f92596f6a49496c9ecb7369dc327b5f07594eeff..aa352cd89b96213f2ce12eb0c6a43a861f3ca416 100644 GIT binary patch literal 46883 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 literal 7963 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 diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 1457f1959..3bfda6d2b 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -504,7 +504,6 @@ msgid "US Counties" msgstr "US Counties" #: application/controllers/Awards.php:899 -#, fuzzy msgid "Log View - Counties" msgstr "Logweergave - Counties" @@ -795,7 +794,6 @@ msgstr "" " * * *)." #: application/controllers/Cron.php:290 application/views/cron/index.php:29 -#, fuzzy msgctxt "Master Cron" msgid "Not running" msgstr "Draait niet" @@ -807,7 +805,6 @@ msgstr "SOTA CSV-export" #: application/controllers/Dashboard.php:123 #: application/controllers/Visitor.php:134 -#, fuzzy msgid "Dashboard" msgstr "Dashboard" @@ -856,14 +853,12 @@ msgstr "" "verwijderen." #: application/controllers/Debug.php:300 -#, fuzzy msgid "File Migration failed. Please check the Error Log." msgstr "Bestandsoverdracht mislukt. Controleer het foutlogboek." #: application/controllers/Distancerecords.php:67 #: application/controllers/Distancerecords.php:86 #: application/views/interface_assets/header.php:153 -#, fuzzy msgid "Satellite Distance Records" msgstr "Satellietafstandrecords" @@ -871,7 +866,6 @@ msgstr "Satellietafstandrecords" #: application/views/distances/index.php:5 #: application/views/distances/index.php:8 #: application/views/interface_assets/header.php:151 -#, fuzzy msgid "Distances Worked" msgstr "Afstanden gewerkt" @@ -881,7 +875,6 @@ msgid "QSOs with" msgstr "QSOs met" #: application/controllers/Distances.php:83 -#, fuzzy msgid "and band" msgstr "en band" @@ -891,7 +884,6 @@ msgstr "en propagatie" #: application/controllers/Dxatlas.php:19 #: application/views/interface_assets/header.php:434 -#, fuzzy msgid "DX Atlas Gridsquare Export" msgstr "DX Atlas Gridsquare Exporteren" @@ -916,7 +908,6 @@ msgid "eQSL Import Information" msgstr "eQSL importinformatie" #: application/controllers/Eqsl.php:154 -#, fuzzy msgid "eQSL Nicknames in Station Profiles aren't defined!" msgstr "eQSL-bijnamen in stationprofielen zijn niet gedefinieerd!" @@ -933,7 +924,6 @@ msgid "eQSL Tools" msgstr "eQSL-hulpmiddelen" #: application/controllers/Eqsl.php:480 -#, fuzzy msgid " / Errors: " msgstr " / Fouten: " @@ -942,19 +932,16 @@ msgid "Successfully downloaded: " msgstr "Succesvol gedownload: " #: application/controllers/Eqsl.php:489 -#, fuzzy msgid "eQSL Card Image Download" msgstr "eQSL-kaartafbeelding downloaden" #: application/controllers/Gridmap.php:10 #: application/views/interface_assets/header.php:145 -#, fuzzy msgid "Gridsquare Map" msgstr "Gridsquare-kaart" #: application/controllers/Gridmap.php:34 #: application/controllers/Visitor.php:388 -#, fuzzy msgid "Total gridsquares worked" msgstr "Totaal aantal vakken gewerkt" @@ -970,7 +957,6 @@ msgstr[0] "%d QSO is nu geüpload naar HRDlog" msgstr[1] "%d QSO's zijn nu geüpload naar HRDlog" #: application/controllers/Hrdlog.php:79 -#, fuzzy msgid "No QSOs found to upload." msgstr "Geen QSOs gevonden om te uploaden." @@ -981,110 +967,90 @@ msgid "KML Export" msgstr "KML-export" #: application/controllers/Labels.php:40 application/views/labels/index.php:30 -#, fuzzy msgid "QSL Card Labels" msgstr "QSL-kaartlabels" #: application/controllers/Labels.php:71 -#, fuzzy msgid "Create Label Type" msgstr "Labeltype maken" #: application/controllers/Labels.php:78 application/controllers/Labels.php:406 #: application/views/labels/create.php:22 application/views/labels/edit.php:22 -#, fuzzy msgid "Label Name" msgstr "Labelnaam" #: application/controllers/Labels.php:79 application/controllers/Labels.php:407 #: application/views/labels/create.php:28 application/views/labels/edit.php:28 #: application/views/labels/index.php:76 -#, fuzzy msgid "Paper Type" msgstr "Papier Type" #: application/controllers/Labels.php:80 application/controllers/Labels.php:408 #: application/views/labels/index.php:42 application/views/labels/index.php:77 -#, fuzzy msgid "Measurement" msgstr "Afmetingen" #: application/controllers/Labels.php:81 application/controllers/Labels.php:409 -#, fuzzy msgid "Top Margin" msgstr "Bovenmarge" #: application/controllers/Labels.php:82 application/controllers/Labels.php:410 -#, fuzzy msgid "Left Margin" msgstr "Linkermarge" #: application/controllers/Labels.php:83 application/controllers/Labels.php:411 -#, fuzzy msgid "QSLs Horizontally" msgstr "QSL's horizontaal" #: application/controllers/Labels.php:84 application/controllers/Labels.php:412 -#, fuzzy msgid "QSLs Vertically" msgstr "QSL's verticaal" #: application/controllers/Labels.php:85 application/controllers/Labels.php:413 -#, fuzzy msgid "Horizontal Space" msgstr "Horizontale ruimte" #: application/controllers/Labels.php:86 application/controllers/Labels.php:414 -#, fuzzy msgid "Vertical Space" msgstr "Verticale ruimte" #: application/controllers/Labels.php:87 application/controllers/Labels.php:415 -#, fuzzy msgid "Label width" msgstr "Labelbreedte" #: application/controllers/Labels.php:88 application/controllers/Labels.php:416 -#, fuzzy msgid "Label height" msgstr "Labelhoogte" #: application/controllers/Labels.php:89 application/controllers/Labels.php:417 -#, fuzzy msgid "Size of Font" msgstr "Lettergrootte" #: application/controllers/Labels.php:90 application/controllers/Labels.php:418 -#, fuzzy msgid "Number of QSOs on label" msgstr "Aantal QSOs op label" #: application/controllers/Labels.php:115 -#, fuzzy msgid "Create Paper Type" msgstr "Papier type maken" #: application/controllers/Labels.php:119 #: application/controllers/Labels.php:465 -#, fuzzy msgid "Paper Name" msgstr "Papiernaam" #: application/controllers/Labels.php:120 #: application/controllers/Labels.php:466 -#, fuzzy msgid "Paper Width" msgstr "Papierbreedte" #: application/controllers/Labels.php:121 #: application/controllers/Labels.php:467 -#, fuzzy msgid "Paper Height" msgstr "Papierhoogte" #: application/controllers/Labels.php:132 #: application/controllers/Labels.php:475 -#, fuzzy msgid "" "Your paper could not be saved. Remember that it can't have the same name as " "existing paper types." @@ -1099,13 +1065,11 @@ msgstr "Je moet een papiertype aan het label toewijzen voordat je gaat printen" #: application/controllers/Labels.php:215 #: application/controllers/Labels.php:218 -#, fuzzy 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:225 #: application/controllers/Labels.php:228 -#, fuzzy msgid "" "Something went wrong! The label could not be generated. Check label size and " "font size." @@ -1130,7 +1094,6 @@ msgid "Label was deleted." msgstr "Label is verwijderd." #: application/controllers/Labels.php:454 -#, fuzzy msgid "Edit Paper" msgstr "Papier bewerken" @@ -1343,7 +1306,6 @@ msgstr "Clublog" #: application/views/view_log/partial/log_ajax.php:4 #: application/views/view_log/qso.php:108 application/views/visitor/index.php:6 #: application/views/widgets/qsos.php:30 -#, fuzzy msgid "Mode" msgstr "Modus" @@ -1475,7 +1437,6 @@ msgstr "IOTA" #: application/views/user/edit.php:321 application/views/user/edit.php:345 #: application/views/view_log/partial/log_ajax.php:12 #: application/views/visitor/index.php:24 -#, fuzzy msgid "State" msgstr "Staat" @@ -1699,7 +1660,6 @@ msgid "Advanced logbook" msgstr "Geavanceerd logboek" #: application/controllers/Lookup.php:22 -#, fuzzy msgid "Quick Lookup" msgstr "Snel opzoeken" @@ -1748,7 +1708,6 @@ msgid "Username/password incorrect" msgstr "Gebruikersnaam/wachtwoord onjuist" #: application/controllers/Lotw.php:801 -#, fuzzy msgid "LoTW login OK!" msgstr "LoTW login oké!" @@ -1757,7 +1716,6 @@ msgid "LoTW currently not available. Try again later." msgstr "LoTW momenteel niet beschikbaar. Probeer het later opnieuw." #: application/controllers/Lotw.php:810 -#, fuzzy msgid "No LoTW credentials provided." msgstr "Geen LoTW-gegevens verstrekt." @@ -1766,7 +1724,6 @@ msgid "LoTW ADIF Import" msgstr "LoTW ADIF importeren" #: application/controllers/Lotw.php:854 application/controllers/Lotw.php:962 -#, fuzzy msgid "You have not defined your ARRL LoTW credentials!" msgstr "Je hebt je ARRL LoTW-gegevens niet gedefinieerd!" @@ -1789,7 +1746,6 @@ msgstr "LoTW .TQ8 niet verzonden" #: application/controllers/Mode.php:25 #: application/views/interface_assets/header.php:285 #: application/views/mode/index.php:27 -#, fuzzy msgid "Modes" msgstr "Modi" @@ -2269,12 +2225,10 @@ msgstr "Leeg logboek" #: application/controllers/Station.php:37 #: application/controllers/Stationsetup.php:226 -#, fuzzy msgid "Create Station Location" msgstr "Maak stationlocatie aan" #: application/controllers/Station.php:52 -#, fuzzy msgid "Edit Station Location: " msgstr "Bewerk stationlocatie: " @@ -2294,7 +2248,6 @@ msgid "Station Location" msgstr "Station Profiel" #: application/controllers/Station.php:80 -#, fuzzy msgid "Duplicate Station Location:" msgstr "Duplicaat stationlocatie:" @@ -2375,7 +2328,6 @@ msgstr "Actief logboek" #: application/controllers/Stationsetup.php:270 #: application/views/stationsetup/stationsetup.php:55 -#, fuzzy msgid "" "Are you sure you want to delete the following station logbook? You must re-" "link any locations linked here to another logbook.: " @@ -2386,7 +2338,6 @@ msgstr "" #: application/controllers/Stationsetup.php:280 #: application/views/stationsetup/stationsetup.php:65 -#, fuzzy msgid "View Public Page for Logbook: " msgstr "Bekijk openbare pagina voor logboek: " @@ -2888,12 +2839,10 @@ msgstr "Kaart exporteren" #: application/controllers/Webadif.php:95 #: application/controllers/Webadif.php:142 #: application/views/interface_assets/header.php:473 -#, fuzzy msgid "QO-100 Dx Club Upload" msgstr "QO-100 Dx Club Upload" #: application/controllers/Widgets.php:21 -#, fuzzy msgid "Unknown Public Page, please make sure the public slug is correct." msgstr "Onbekende openbare pagina, controleer of de openbare slug correct is." @@ -3582,7 +3531,6 @@ msgstr "Terrestrische of atmosferische repeater of transponder" #: application/views/qso/edit_ajax.php:206 application/views/qso/index.php:460 #: application/views/timeline/index.php:99 #: application/views/view_log/qso.php:275 -#, fuzzy msgctxt "Propagation Mode" msgid "Rain scatter" msgstr "Regen scatter" @@ -4055,7 +4003,6 @@ msgstr "QSO's toevoegen aan contest" #: application/views/adif/import.php:96 application/views/adif/import.php:345 #: application/views/simplefle/index.php:85 -#, fuzzy msgid "No Contest" msgstr "Geen contest" @@ -7732,7 +7679,6 @@ msgid "the distance was" msgstr "" #: application/views/distances/index.php:14 -#, fuzzy msgid "Callsign(s) worked (max 5 shown)" msgstr "Opgeroepen roepna(a)m(en) (maximaal 5 getoond)" @@ -8164,7 +8110,6 @@ msgstr "" #: application/views/hrdlog/export.php:35 #: application/views/oqrs/showrequests.php:86 #: application/views/qrz/export.php:40 application/views/webadif/export.php:42 -#, fuzzy msgid "Station callsign" msgstr "Station roepnaam" diff --git a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.mo index 28ea93809f05d4f5ab8530b9e7c69bfdf3a6dd21..5777f19a061f258fdf449f135c333be8d996c6ea 100644 GIT binary patch delta 5254 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 delta 3499 zcmYk;dra0<9LMp4J_rI{5D-w5N4bX*h!^sLC?J|?ke4L!4&n{ureZ)3scBvl2{lq{ zrPF0u?J-l!Ewwhxaw{?~8E$SZr_TPcmYcct{``JFH_!O~Ug!Lt-{qX|Ip=w3s%tCr zbo6qy7|K2(iuliEOgrA_%7K#D&6q$;!d^HG18}0#o`(FH#T7!{zKirFY;QOc!eB}5w>b^@j z4zHlDi|k=cD8`_R_nQnVzML3?yxU~s8Z1DKv(Sx|7=ycT0Pi;^sPw_BsF6QFJurxTt7BoP5%)!%ccVI*gh4n0mEs&6 zjrrIQx1;VqiVWU-j>_0Ks3~kiPcD^qDtd5ah%sGoAnL*-)P-q|qfs5qLtQuDu@u#z za?}g!kw=bZNv$bTm)hd7}T9Kp4C0^OL}+kQX+>H)>5 z8!Ipl8&Dni&}n~+ZrVSirr-e%#^7*csG6~ui8E0HZ1GT0Y7V1PdIHt+GmdSjl(u7E zyoMV2Kd9>;qaNfU&pO{5mGb@^8gT?_)t_|EpTn)Re?wjGDUCG7OJybML<}oYCgT81 z$Ei327E>2h*!8EXI3y2m^gs-RxCm<^XA^z{9BLM)bEc>c%LWeAk#?Q4hL@`aXDwdXXP_?uwD9j>cdBCOYkO z)QB>WEp4(;_ZOl%vIMOu#m=<1pcdy2T!WqusE|$5XOR8DcnqXH6P1aDs0UZ0Uc3!c zaSt-hrVUv><}c(?CX@xi4m4S)AEWuG5${K>siUZjeuWIoW6n}hk1wJ|aviluZlR{c zC&f;60CuAtj5;5UdQl>7!->xM%c$+vft&ClYN{Gpp*wIBs@|@%ZAt;nwPHOkaE-rZ=j_UYhnI*2gl_sNLS+K+x+bicisoOXCs9jOs_|6Oy3nGVL1>YxDAijCEh_DREJ6!cCBepw#SmhS z)86jLkEFHB=4$?*6xF8@S}dK3g~TKxjwmHI54cluLsSqm ziRXy72yNqmL<^Bkyhdn1))&oQ3{rzqL)2L{`&&!ZeZ*EGhS*80AQ}l3)~{9G;FwM{ zG&co=SR@#Z1%o4h^=K|cQ33s$VCURql24NJV~=UtbY=<;qK MHpR!gC?m!9e<}D;Z2$lO From feadfa07df4d451be4f8703235199ae53567343c Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 26 Jan 2025 15:27:22 +0000 Subject: [PATCH 05/17] Translated using Weblate (Dutch) Currently translated at 24.0% (577 of 2403 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/nl/ --- application/locale/nl_NL/LC_MESSAGES/messages.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 1457f1959..5fd4b106c 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-26 15:27+0000\n" +"PO-Revision-Date: 2025-01-26 15:29+0000\n" "Last-Translator: Alexander \n" "Language-Team: Dutch \n" @@ -4083,15 +4083,15 @@ msgstr "Markeer geïmporteerde QSOs als geüpload naar eQSL logboek" #: application/views/adif/import.php:138 msgid "Mark imported QSOs as uploaded to HRDLog.net Logbook" -msgstr "Markeer geïmporteerde QSOs als geüpload naar HRDLog.net Logboek" +msgstr "Markeer geïmporteerde QSOs als geüpload naar HRDLog.net logboek" #: application/views/adif/import.php:148 msgid "Mark imported QSOs as uploaded to QRZ Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar QRZ logbook" #: application/views/adif/import.php:158 msgid "Mark imported QSOs as uploaded to Clublog Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar Clublog logboek" #: application/views/adif/import.php:168 msgid "Mark imported QSOs as uploaded to DCL Logbook" From 6ece41eff47aafece2ecfdfe3f69400d3ad63638 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sun, 26 Jan 2025 16:54:08 +0000 Subject: [PATCH 06/17] Translated using Weblate (Dutch) Currently translated at 56.9% (1368 of 2403 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/nl/ --- .../locale/nl_NL/LC_MESSAGES/messages.po | 1799 ++++++++++------- 1 file changed, 1110 insertions(+), 689 deletions(-) diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index ea35b4982..dc498ad67 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-26 15:29+0000\n" +"PO-Revision-Date: 2025-01-27 07:12+0000\n" "Last-Translator: Alexander \n" "Language-Team: Dutch \n" @@ -308,7 +308,7 @@ msgstr "Awards" #: application/controllers/Awards.php:1785 #: application/controllers/Awards.php:1914 #: application/controllers/Awards.php:1992 -#, fuzzy, php-format +#, php-format msgid "Awards - %s" msgstr "Awards - %s" @@ -491,7 +491,7 @@ msgstr "RAC" #: application/controllers/Awards.php:779 application/views/bands/index.php:49 msgid "H26" -msgstr "" +msgstr "H26" #: application/controllers/Awards.php:859 msgid "IOTA (Island On The Air)" @@ -703,11 +703,11 @@ msgstr "Geen gebruiker heeft Clublog geconfigureerd." #: application/controllers/Contestcalendar.php:19 #: application/views/interface_assets/header.php:262 msgid "Contest Calendar" -msgstr "" +msgstr "Contestkalender" #: application/controllers/Contestcalendar.php:47 msgid "Contestcalendar not reachable. Try again later" -msgstr "" +msgstr "Contestkalender niet bereikbaar. Probeer het later opnieuw" #: application/controllers/Contesting.php:52 #: application/views/contesting/index.php:7 @@ -716,8 +716,9 @@ msgstr "" #: application/controllers/Contesting.php:123 #: application/views/interface_assets/header.php:287 +#, fuzzy msgid "Contests" -msgstr "" +msgstr "Contests" #: application/controllers/Contesting.php:137 msgid "Update Contest" @@ -1670,7 +1671,7 @@ msgstr "Snel opzoeken" #: application/views/lotw_views/upload_cert.php:3 #: application/views/user/edit.php:725 application/views/visitor/index.php:328 msgid "Logbook of the World" -msgstr "Logbook of the World" +msgstr "Logbook of The World" #: application/controllers/Lotw.php:150 msgid "Certificate Imported." @@ -2410,8 +2411,9 @@ msgid "Please select one" msgstr "Kies er één" #: application/controllers/Stationsetup.php:462 +#, fuzzy msgid "Edit Export Map options" -msgstr "" +msgstr "Opties voor Exportkaart bewerken" #: application/controllers/Statistics.php:26 #: application/views/interface_assets/header.php:139 @@ -2889,7 +2891,7 @@ msgstr "Deelstaat" #: application/libraries/Subdivisions.php:94 msgctxt "Division Name (States in various countries)." msgid "County" -msgstr "" +msgstr "County" #: application/libraries/Subdivisions.php:60 #: application/libraries/Subdivisions.php:85 @@ -3038,7 +3040,7 @@ msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" #: application/models/Logbook_model.php:4653 msgid "confirmed by award manager" -msgstr "" +msgstr "Bevestigd door award manager" #: application/models/Logbook_model.php:4656 msgid "confirmed by cross-check of DCL data" @@ -3280,7 +3282,7 @@ msgstr "Alles" #: application/views/accumulate/index.php:50 #: application/views/timeline/index.php:41 msgid "Award" -msgstr "" +msgstr "Award" #: application/views/accumulate/index.php:53 #: application/views/timeline/index.php:44 @@ -4042,17 +4044,19 @@ msgstr "Markeer geïmporteerde QSOs als geüpload naar Clublog logboek" #: application/views/adif/import.php:168 msgid "Mark imported QSOs as uploaded to DCL Logbook" -msgstr "" +msgstr "Markeer geïmporteerde QSOs als geüpload naar DCL logbook" #: application/views/adif/import.php:178 msgid "Use DXCC information from ADIF" -msgstr "" +msgstr "Gebruik DXCC-informatie van ADIF" #: application/views/adif/import.php:180 msgid "" "If not selected, Wavelog will attempt to determine DXCC information " "automatically." msgstr "" +"Als het niet geselecteerd is, zal Wavelog proberen om automatisch DXCC-" +"informatie te bepalen." #: application/views/adif/import.php:189 msgid "" @@ -4066,7 +4070,7 @@ msgstr "" #: application/views/interface_assets/footer.php:551 #: application/views/interface_assets/footer.php:2265 msgid "DANGER" -msgstr "" +msgstr "GEVAAR" #: application/views/adif/import.php:199 msgid "Ignore Stationcallsign on import" @@ -4078,22 +4082,27 @@ msgid "" "If selected, Wavelog will try to import %sall%s QSO's of the ADIF, " "regardless if they match to the chosen station-location." msgstr "" +"Als je het selecteert, zal Wavelog proberen om %salle%s QSO's van de ADIF te " +"importeren, ongeacht of ze overeenkomen met de gekozen station-locatie." #: application/views/adif/import.php:205 application/views/adif/import.php:322 #: application/views/adif/import.php:360 application/views/hrdlog/export.php:50 #: application/views/qrz/export.php:55 application/views/webadif/export.php:55 msgid "Upload" -msgstr "" +msgstr "Uploaden" #: application/views/adif/import.php:212 msgid "Take your logbook file anywhere!" -msgstr "" +msgstr "Neem je logboekbestand overal mee naartoe!" #: application/views/adif/import.php:213 msgid "" "Exporting ADIFs allows you to import contacts into third party applications " "like LoTW, Awards or just for keeping a backup." msgstr "" +"Het exporteren van ADIF's stelt je in staat om contacten te importeren in " +"applicaties van derden zoals LoTW, Awards of gewoon voor het maken van een " +"back-up." #: application/views/adif/import.php:214 #, php-format @@ -4102,6 +4111,8 @@ msgid "" "If you need more filtering, you can use %sthe Advanced Logbook%s to filter " "and export!" msgstr "" +"Als je meer filtering nodig hebt, kun je %shet Geavanceerde Logboek%s " +"gebruiken om te filteren en exporteren!" #: application/views/adif/import.php:225 application/views/adif/import.php:270 #: application/views/cfd/index.php:15 application/views/csv/index.php:118 @@ -4110,7 +4121,7 @@ msgstr "" #: application/views/lotw/import.php:39 application/views/qrz/export.php:78 #: application/views/qrz/export.php:99 application/views/webadif/export.php:97 msgid "From date" -msgstr "" +msgstr "Vanaf datum" #: application/views/adif/import.php:228 application/views/adif/import.php:273 #: application/views/cfd/index.php:20 application/views/csv/index.php:123 @@ -4119,40 +4130,40 @@ msgstr "" #: application/views/qrz/export.php:104 #: application/views/webadif/export.php:102 msgid "To date" -msgstr "" +msgstr "Tot datum" #: application/views/adif/import.php:236 msgid "Mark exported QSOs as uploaded to LoTW" -msgstr "" +msgstr "Markeer geëxporteerde QSOs als geüpload naar LoTW" #: application/views/adif/import.php:244 msgid "Export QSOs not uploaded to LoTW" -msgstr "" +msgstr "Exporteer QSO's die niet naar LoTW zijn geüpload" #: application/views/adif/import.php:249 msgid "Export QSO's" -msgstr "" +msgstr "Exporteer QSO's" #: application/views/adif/import.php:254 msgid "Export Satellite-Only QSOs" -msgstr "" +msgstr "Exporteer alleen satelliet-QSOs" #: application/views/adif/import.php:255 msgid "Export All Satellite QSOs" -msgstr "" +msgstr "Exporteer alle satelliet-QSOs" #: application/views/adif/import.php:257 msgid "Export All Satellite QSOs Confirmed on LoTW" -msgstr "" +msgstr "Exporteer alle satelliet-QSOs bevestigd op LoTW" #: application/views/adif/import.php:268 application/views/hrdlog/export.php:74 #: application/views/qrz/export.php:96 application/views/webadif/export.php:94 msgid "If a date range is not selected then all QSOs will be marked!" -msgstr "" +msgstr "Als er geen datumbereik is geselecteerd, worden alle QSOs gemarkeerd!" #: application/views/adif/import.php:276 msgid "Mark QSOs as exported to LoTW" -msgstr "" +msgstr "Markeer QSOs als geëxporteerd naar LoTW" #: application/views/adif/import.php:291 #, php-format @@ -4162,26 +4173,34 @@ msgid "" "List). The downloaded ADIF file can be uploaded here in order to update QSOs " "with DOK info." msgstr "" +"Ga naar %s en exporteer je logboek met bevestigde DOKs. Om het proces te " +"versnellen kun je ervoor kiezen om alleen DL QSOs te downloaden (d.w.z. 'DL' " +"in de Prefixlijst zetten). Het gedownloade ADIF-bestand kan hier worden " +"geüpload om QSOs bij te werken met DOK-informatie." #: application/views/adif/import.php:298 msgid "Only import DOK data from QSOs confirmed on DCL." -msgstr "" +msgstr "Importeer alleen DOK-gegevens van QSO's die op DCL zijn bevestigd." #: application/views/adif/import.php:300 msgid "" "Uncheck if you also want to update DOK with data from unconfirmed QSOs in " "DCL." msgstr "" +"Schakel uit als je DOK ook wilt bijwerken met gegevens van onbevestigde " +"QSO's in DCL." #: application/views/adif/import.php:307 msgid "Overwrites exisiting DOK in log by DCL (if different)." -msgstr "" +msgstr "Overschrijft bestaande DOK in log door DCL (indien anders)." #: application/views/adif/import.php:309 msgid "" "If checked Wavelog will forcibly overwrite existing DOK with DOK from DCL " "log." msgstr "" +"Als dit is aangevinkt, zal Wavelog bestaande DOK met DOK uit DCL-logboek " +"geforceerd overschrijven." #: application/views/adif/import.php:316 msgid "Ignore QSOs that cannot be matched." @@ -4192,6 +4211,8 @@ msgid "" "If unchecked, information about QSOs which could not be found in Wavelog " "will be displayed." msgstr "" +"Als dit niet is aangevinkt, wordt informatie over QSOs die niet in Wavelog " +"konden worden gevonden, weergegeven." #: application/views/adif/import.php:337 msgid "" @@ -4201,49 +4222,68 @@ msgid "" "can provide the Cabrillo file that this software also provides to rewrite " "that data in Wavelog." msgstr "" +"Als je een ADIF-bestand van een contest hebt geïmporteerd, geleverd door een " +"andere logsoftware, worden soms, afhankelijk van die software, je " +"uitwisselingen niet correct geïmporteerd vanuit het ADIF-bestand van die " +"software. Als je dat wilt corrigeren, kun je het Cabrillo-bestand dat deze " +"software ook levert gebruiken om die gegevens in Wavelog te herschrijven." #: application/views/adif/import.php:337 #: application/views/lotw_views/index.php:137 msgid "Information" -msgstr "" +msgstr "Informatie" #: application/views/adif/import.php:338 +#, fuzzy msgid "" "Please use this function before changing anything about the QSOs in Wavelog, " "as this function uses the Contest ID, as well as date and time information " "from both your already imported ADIF file, as well as the CBR file you are " "about to upload to match the QSOs and only correct relevant data." msgstr "" +"Gebruik deze functie voordat je iets verandert aan de QSOs in Wavelog, " +"aangezien deze functie de Contest ID gebruikt, evenals datum- en " +"tijdsinformatie van zowel je al geïmporteerde ADIF-bestand als het CBR-" +"bestand dat je gaat uploaden om de QSOs te matchen en alleen relevante " +"gegevens te corrigeren." #: application/views/adif/import.php:343 +#, fuzzy msgid "Contest Name, only if Contest ID in CBR is different" -msgstr "" +msgstr "Contest-naam, alleen als Contest-ID in CBR anders is" #: application/views/adif/import.php:343 msgid "Optional" -msgstr "" +msgstr "Optioneel" #: application/views/adif/import.php:353 msgid "" "A serial number is ALWAYS part of the exchange for both parties in this " "contest." msgstr "" +"Een serienummer maakt ALTIJD deel uit van de uitwisseling voor beide " +"partijen in deze contest." #: application/views/adif/import.php:355 msgid "" "If you or your partner only sometimes exchange serial numbers, please leave " "this unchecked." msgstr "" +"Als jij of je partner slechts af en toe serienummers uitwisselen, laat dit " +"dan uitgevinkt." #: application/views/adif/import.php:356 msgid "" "If unchecked, this will erase the default serial number that (for example) " "N1MM+ produces. If checked, it will correct the serial number if necessary." msgstr "" +"Als dit niet is aangevinkt, wordt het standaard serienummer dat " +"(bijvoorbeeld) N1MM+ produceert, gewist. Als het is aangevinkt, wordt het " +"serienummer indien nodig gecorrigeerd." #: application/views/adif/import_failed.php:15 msgid "The ADIF file could not be parsed correctly." -msgstr "" +msgstr "Het ADIF-bestand kon niet correct worden verwerkt." #: application/views/adif/import_failed.php:16 msgid "" @@ -4251,26 +4291,29 @@ msgid "" "database. Please check the imported ADIF file. You can use an online ADIF " "file checker. For example:" msgstr "" +"Ten minste één van de ADIF-velden kon niet worden verwerkt en/of in de " +"database worden ingevoerd. Controleer het geïmporteerde ADIF-bestand. Je " +"kunt een online ADIF-bestandscontrole gebruiken. Bijvoorbeeld:" #: application/views/adif/import_success.php:17 msgid "Yay, its imported!" -msgstr "" +msgstr "Jippie, het is geïmporteerd!" #: application/views/adif/import_success.php:18 msgid "The ADIF File has been imported." -msgstr "" +msgstr "Het ADIF-bestand is geïmporteerd." #: application/views/adif/import_success.php:22 msgid "Dupes were inserted!" -msgstr "" +msgstr "Duplicaten zijn ingevoegd!" #: application/views/adif/import_success.php:24 msgid "Dupes were skipped." -msgstr "" +msgstr "Duplicaten werden overgeslagen." #: application/views/adif/import_success.php:30 msgid "You imported at least 1 QSO containing a contest ID." -msgstr "" +msgstr "Je hebt ten minste 1 QSO geïmporteerd met een contest-ID." #: application/views/adif/import_success.php:31 msgid "" @@ -4278,43 +4321,50 @@ msgid "" "not be imported properly from that softwares ADIF. If you like to correct " "that, switch to the CBR Import Tab of the ADIF Import page." msgstr "" +"Soms, afhankelijk van je contest logging software, worden je uitwisselingen " +"niet correct geïmporteerd vanuit de ADIF van die software. Als je dat wilt " +"corrigeren, schakel dan over naar het CBR Import Tabblad van de ADIF Import " +"pagina." #: application/views/adif/import_success.php:32 msgid "We found the following numbers of QSOs for the following contest IDs:" msgstr "" +"We hebben de volgende aantallen QSO's gevonden voor de volgende contest-ID's:" #: application/views/adif/import_success.php:44 msgid "Import details / possible problems" -msgstr "" +msgstr "Importdetails / mogelijke problemen" #: application/views/adif/import_success.php:45 msgid "" "You might have ADIF errors, the QSOs have still been added. Please check the " "following information:" msgstr "" +"Mogelijk heb je ADIF-fouten, de QSO's zijn nog steeds toegevoegd. Controleer " +"de volgende informatie:" #: application/views/adif/mark_lotw.php:12 #: application/views/hrdlog/mark_hrdlog.php:12 #: application/views/qrz/mark_qrz.php:12 #: application/views/webadif/mark_webadif.php:12 msgid "QSOs marked" -msgstr "" +msgstr "QSOs gemarkeerd" #: application/views/adif/mark_lotw.php:15 msgid "Yay, its done!" -msgstr "" +msgstr "Jippie, het is klaar!" #: application/views/adif/mark_lotw.php:16 msgid "The QSOs are marked as exported to LoTW." -msgstr "" +msgstr "De QSO's zijn gemarkeerd als geëxporteerd naar LoTW." #: application/views/api/description.php:15 msgid "Editing Description for API Key" -msgstr "" +msgstr "Bewerk beschrijving voor API-sleutel" #: application/views/api/description.php:28 msgid "Simple name to describe what you use this API for." -msgstr "" +msgstr "Eenvoudige naam om te beschrijven waarvoor je deze API gebruikt." #: application/views/api/description.php:33 #: application/views/bands/create.php:49 application/views/bands/edit.php:31 @@ -4334,12 +4384,12 @@ msgstr "" #: application/views/satellite/create.php:82 #: application/views/simplefle/index.php:22 msgid "Save" -msgstr "" +msgstr "Opslaan" #: application/views/api/index.php:8 #: application/views/interface_assets/header.php:480 msgid "API Keys" -msgstr "" +msgstr "API-sleutels" #: application/views/api/index.php:11 msgid "" @@ -4347,6 +4397,9 @@ msgid "" "access Wavelog in a controlled way. Access to the API is managed via API " "keys." msgstr "" +"De Wavelog API (Application Programming Interface) stelt externe systemen in " +"staat om op een gecontroleerde manier toegang te krijgen tot Wavelog. " +"Toegang tot de API wordt beheerd via API-sleutels." #: application/views/api/index.php:12 msgid "" @@ -4355,19 +4408,23 @@ msgid "" "Wavelog. Generate a read-only key if the application only needs to obtain " "data from Wavelog." msgstr "" +"Je moet een API-sleutel genereren voor elk hulpmiddel dat je wilt gebruiken (" +"bijv. WLgate). Genereer een lees-schrijf sleutel als de applicatie gegevens " +"naar Wavelog moet verzenden. Genereer een alleen-lezen sleutel als de " +"applicatie alleen gegevens van Wavelog hoeft te verkrijgen." #: application/views/api/index.php:13 msgid "API URL" -msgstr "" +msgstr "API URL" #: application/views/api/index.php:13 application/views/api/index.php:48 #: application/views/cron/index.php:22 application/views/debug/index.php:46 msgid "Copy to clipboard" -msgstr "" +msgstr "Kopiëren naar klembord" #: application/views/api/index.php:13 msgid "The API URL for this Wavelog instance is" -msgstr "" +msgstr "De API-URL voor dit Wavelog-exemplaar is" #: application/views/api/index.php:14 application/views/dxcalendar/index.php:15 #: application/views/eqsl/export.php:33 application/views/radio/index.php:26 @@ -4379,41 +4436,45 @@ msgstr "" #: application/views/sattimers/index.php:77 #: application/views/search/filter.php:72 msgid "Info" -msgstr "" +msgstr "Informatie" #: application/views/api/index.php:14 msgid "" "It's good practice to delete a key if you are no longer using the associated " "application." msgstr "" +"Het is een goede gewoonte om een sleutel te verwijderen als je de " +"bijbehorende applicatie niet meer gebruikt." #: application/views/api/index.php:16 msgid "" "On Clubstations the API Keys are personal and not shared. Clubstation users " "can only see their own keys." msgstr "" +"Op clubstations zijn de API-sleutels persoonlijk en worden niet gedeeld. " +"Gebruikers van clubstations kunnen alleen hun eigen sleutels zien." #: application/views/api/index.php:24 msgid "API Key" -msgstr "" +msgstr "API-sleutel" #: application/views/api/index.php:25 application/views/cron/edit.php:30 #: application/views/cron/index.php:53 #: application/views/search/stored_queries.php:8 msgid "Description" -msgstr "" +msgstr "Beschrijving" #: application/views/api/index.php:26 msgid "Last Used" -msgstr "" +msgstr "Laatst gebruikt" #: application/views/api/index.php:28 msgid "Created By" -msgstr "" +msgstr "Gemaakt door" #: application/views/api/index.php:30 msgid "Permissions" -msgstr "" +msgstr "Machtigingen" #: application/views/api/index.php:31 application/views/cron/index.php:54 #: application/views/lotw/satupdate.php:7 @@ -4424,7 +4485,7 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:31 #: application/views/timeline/index.php:201 msgid "Status" -msgstr "" +msgstr "Status" #: application/views/api/index.php:32 #: application/views/club/permissions.php:226 @@ -4433,36 +4494,36 @@ msgstr "" #: application/views/qrz/export.php:44 application/views/user/index.php:33 #: application/views/user/index.php:156 application/views/webadif/export.php:45 msgid "Actions" -msgstr "" +msgstr "Acties" #: application/views/api/index.php:58 msgid "Read & Write" -msgstr "" +msgstr "Lezen & Schrijven" #: application/views/api/index.php:60 msgid "Read-Only" -msgstr "" +msgstr "Alleen-lezen" #: application/views/api/index.php:70 msgid "Test" -msgstr "" +msgstr "Test" #: application/views/api/index.php:73 #, php-format msgid "Are you sure you want delete the API Key %s?" -msgstr "" +msgstr "Weet je zeker dat je de API-sleutel %s wilt verwijderen?" #: application/views/api/index.php:86 msgid "You have no API Keys." -msgstr "" +msgstr "Je hebt geen API-sleutels." #: application/views/api/index.php:90 msgid "Create a read & write key" -msgstr "" +msgstr "Maak een lees- en schrijfsleutel" #: application/views/api/index.php:91 msgid "Create a read-only key" -msgstr "" +msgstr "Maak een alleen-lezen sleutel aan" #: application/views/awards/counties/details.php:4 #: application/views/awards/details.php:1 @@ -4470,11 +4531,11 @@ msgstr "" #: application/views/distancerecords/details.php:1 #: application/views/timeline/details.php:2 msgid "Filtering on" -msgstr "" +msgstr "Filteren op" #: application/views/awards/counties/details.php:13 msgid "County" -msgstr "" +msgstr "County" #: application/views/awards/counties/index.php:6 #: application/views/awards/counties/index.php:13 @@ -4517,11 +4578,11 @@ msgstr "" #: application/views/awards/wwff/index.php:6 #: application/views/awards/wwff/index.php:13 msgid "Award Info" -msgstr "" +msgstr "Award informatie" #: application/views/awards/counties/index.php:7 msgid "US County Award" -msgstr "" +msgstr "US County Award" #: application/views/awards/counties/index.php:8 #, php-format @@ -4530,6 +4591,10 @@ msgid "" "magazine, is issued for confirmed two-way radio contacts with specified " "numbers of U.S. counties under rules and conditions you can find %s." msgstr "" +"De United States of America Counties Award (USA-CA), gesponsord door CQ " +"Magazine, wordt uitgereikt voor bevestigde tweerichtingsradioverbindingen " +"met een bepaald aantal Amerikaanse county's volgens de regels en voorwaarden " +"die je kunt vinden %s." #: application/views/awards/counties/index.php:9 msgid "" @@ -4542,16 +4607,18 @@ msgstr "" "roepnamen, operationele locaties of data." #: application/views/awards/counties/index.php:10 +#, fuzzy msgid "Special USA-CA awards are also available to SWLs on a heard basis." msgstr "" +"Speciale USA-CA-awards zijn ook beschikbaar voor SWLs op basis van gehoord." #: application/views/awards/counties/index.php:21 msgid "Counties Worked" -msgstr "" +msgstr "Counties gewerkt" #: application/views/awards/counties/index.php:22 msgid "Counties Confirmed" -msgstr "" +msgstr "Counties bevestigd" #: application/views/awards/counties/index.php:39 #: application/views/awards/cq/index.php:176 @@ -4580,7 +4647,7 @@ msgstr "" #: application/views/statistics/uniquetable.php:23 #: application/views/visitor/index.php:245 msgid "Total" -msgstr "" +msgstr "Totaal" #: application/views/awards/cq/index.php:3 #: application/views/awards/cq/index.php:150 application/views/csv/index.php:80 @@ -4600,16 +4667,16 @@ msgstr "" #: application/views/timeplotter/index.php:44 #: application/views/user/modals/first_login_wizard.php:74 msgid "CQ Zone" -msgstr "" +msgstr "CQ Zone" #: application/views/awards/cq/index.php:4 #: application/views/awards/itu/index.php:4 msgid "Hover over a zone" -msgstr "" +msgstr "Zweef over een zone" #: application/views/awards/cq/index.php:20 msgid "CQ Magazine WAZ Award" -msgstr "" +msgstr "CQ Magazine WAZ Award" #: application/views/awards/cq/index.php:21 msgid "" @@ -4617,22 +4684,28 @@ msgid "" "radio magazines in the world. The magazine first appeared in January 1945 " "and focuses on awards and the practical aspects of amateur radio." msgstr "" +"Het CQ Magazine is gevestigd in de VS en is een van de populairste " +"amateurradiotijdschriften ter wereld. Het tijdschrift verscheen voor het " +"eerst in januari 1945 en richt zich op onderscheidingen en de praktische " +"aspecten van amateurradio." #: application/views/awards/cq/index.php:22 msgid "" "The WAZ Award stands for 'Worked All Zones' and requires radio contacts to " "all 40 CQ Zones along with the corresponding confirmation." msgstr "" +"De WAZ Award staat voor 'Worked All Zones' en vereist radiocontacten met " +"alle 40 CQ Zones samen met de bijbehorende bevestiging." #: application/views/awards/cq/index.php:23 #, php-format msgctxt "uses 'CQ Magazine'" msgid "You can find all the information and rules on the Website of the %s." -msgstr "" +msgstr "Je kunt alle informatie en regels vinden op de website van de %s." #: application/views/awards/cq/index.php:25 msgid "Awards - CQ Magazine WAZ" -msgstr "" +msgstr "Awards - CQ Magazine WAZ" #: application/views/awards/cq/index.php:34 #: application/views/awards/itu/index.php:34 @@ -4671,7 +4744,7 @@ msgstr "Gewerkt" #: application/views/awards/waja/index.php:37 #: application/views/awards/was/index.php:37 msgid "Show worked" -msgstr "" +msgstr "Toon gewerkt" #: application/views/awards/cq/index.php:42 #: application/views/awards/dok/index.php:45 @@ -4686,7 +4759,7 @@ msgstr "" #: application/views/awards/waja/index.php:41 #: application/views/awards/was/index.php:41 msgid "Show confirmed" -msgstr "" +msgstr "Toon bevestigd" #: application/views/awards/cq/index.php:46 #: application/views/awards/dxcc/index.php:51 @@ -4700,7 +4773,7 @@ msgstr "" #: application/views/awards/waja/index.php:45 #: application/views/awards/was/index.php:45 msgid "Show not worked" -msgstr "" +msgstr "Toon niet gewerkt" #: application/views/awards/cq/index.php:52 #: application/views/awards/dok/index.php:51 @@ -4714,7 +4787,7 @@ msgstr "" #: application/views/awards/waja/index.php:51 #: application/views/awards/was/index.php:51 msgid "Show QSO with QSL Type" -msgstr "" +msgstr "Toon QSO met QSL-type" #: application/views/awards/cq/index.php:56 #: application/views/awards/itu/index.php:56 @@ -4723,7 +4796,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:419 #: application/views/view_log/qso.php:25 msgid "QSL Card" -msgstr "" +msgstr "QSL-kaart" #: application/views/awards/cq/index.php:112 #: application/views/awards/dok/index.php:126 @@ -4747,7 +4820,7 @@ msgstr "Herstel" #: application/views/awards/cq/index.php:115 msgid "Show CQ Zone Map" -msgstr "" +msgstr "Toon CQ Zone-kaart" #: application/views/awards/cq/index.php:124 #: application/views/awards/dxcc/index.php:199 @@ -4758,7 +4831,7 @@ msgstr "" #: application/views/awards/waja/index.php:128 #: application/views/awards/was/index.php:124 msgid "Table" -msgstr "" +msgstr "Tabel" #: application/views/awards/cq/index.php:127 #: application/views/awards/dok/index.php:128 @@ -4774,7 +4847,7 @@ msgstr "" #: application/views/logbookadvanced/index.php:617 #: application/views/logbookadvanced/useroptions.php:7 msgid "Map" -msgstr "" +msgstr "Kaart" #: application/views/awards/cq/index.php:167 #: application/views/awards/dok/index.php:165 @@ -4789,7 +4862,7 @@ msgstr "" #: application/views/awards/waja/index.php:170 #: application/views/awards/was/index.php:170 msgid "Summary" -msgstr "" +msgstr "Samenvatting" #: application/views/awards/cq/index.php:180 #: application/views/awards/dok/index.php:178 @@ -4804,7 +4877,7 @@ msgstr "" #: application/views/awards/waja/index.php:184 #: application/views/awards/was/index.php:183 msgid "Total worked" -msgstr "" +msgstr "Totaal gewerkt" #: application/views/awards/cq/index.php:187 #: application/views/awards/dok/index.php:185 @@ -4819,11 +4892,11 @@ msgstr "" #: application/views/awards/waja/index.php:191 #: application/views/awards/was/index.php:190 msgid "Total confirmed" -msgstr "" +msgstr "Totaal bevestigd" #: application/views/awards/dok/index.php:7 msgid "DOK Award" -msgstr "" +msgstr "DOK Award" #: application/views/awards/dok/index.php:8 msgid "" @@ -4834,6 +4907,12 @@ msgid "" "'Deutscher Ortsverband Kenner' (English: 'German Local Association " "Identifier')." msgstr "" +"Duitsland strekt zich uit over 630 km van oost naar west en bijna 900 km van " +"noord naar zuid. Ongeveer 70.000 van de 82 miljoen inwoners van Duitsland " +"zijn gelicenseerde zendamateurs, waarvan meer dan 40.000 lid zijn van de " +"DARC. DOK is een systeem dat individuele lokale afdelingen een identificatie " +"geeft en staat voor 'Deutscher Ortsverband Kenner' (Nederlands: 'Duitse " +"Lokale Vereniging Identificatie')." #: application/views/awards/dok/index.php:9 msgid "" @@ -4842,10 +4921,15 @@ msgid "" "or F41 Baunatal (location of the DARC headquarters). Note: A zero in a DOK " "is a common mistake, often being logged as the letter O." msgstr "" +"De DOK bestaat uit een letter voor het district en een tweecijferig nummer " +"voor de lokale afdeling, zoals P03 Friedrichshafen (stad van de 'Hamradio " +"tentoonstelling') of F41 Baunatal (locatie van het DARC-hoofdkantoor). Let " +"op: Een nul in een DOK is een veelgemaakte fout, vaak geregistreerd als de " +"letter O." #: application/views/awards/dok/index.php:10 msgid "DARC website" -msgstr "" +msgstr "DARC-website" #: application/views/awards/dok/index.php:10 #, php-format @@ -4854,14 +4938,16 @@ msgid "" "This information is provided by the %s. Information about the DOK Awards and " "its rules can be found %s." msgstr "" +"Deze informatie wordt verstrekt door de %s. Informatie over de DOK Awards en " +"de regels ervan is te vinden %s." #: application/views/awards/dok/index.php:20 msgid "DOK / SDOK" -msgstr "" +msgstr "DOK / SDOK" #: application/views/awards/dok/index.php:23 msgid "DOK + SDOK" -msgstr "" +msgstr "DOK + SDOK" #: application/views/awards/dok/index.php:37 #: application/views/awards/dxcc/index.php:39 @@ -4873,7 +4959,7 @@ msgstr "" #: application/views/awards/waja/index.php:33 #: application/views/awards/was/index.php:33 msgid "Worked / Confirmed" -msgstr "" +msgstr "Gewerkt / Bevestigd" #: application/views/awards/dok/index.php:80 #: application/views/awards/dxcc/index.php:120 @@ -4886,15 +4972,15 @@ msgstr "" #: application/views/awards/waja/index.php:80 #: application/views/awards/was/index.php:76 msgid "Every band" -msgstr "" +msgstr "Elke band" #: application/views/awards/dxcc/index.php:14 msgid "DXCC Award" -msgstr "" +msgstr "DXCC Award" #: application/views/awards/dxcc/index.php:15 msgid "'How to Count Countries Worked, A New DX Scoring System'" -msgstr "" +msgstr "'How to Count Countries Worked, A New DX Scoring System'" #: application/views/awards/dxcc/index.php:15 #, php-format @@ -4903,17 +4989,20 @@ msgid "" "DXCC List is based on an article created in 1935 by Clinton B. DeSoto, " "W1CBD, titled %s." msgstr "" +"DXCC staat voor 'DX Century Club,' een award gebaseerd op gewerkte landen. " +"De DXCC-lijst is gebaseerd op een artikel uit 1935 door Clinton B. DeSoto, " +"W1CBD, getiteld %s." #: application/views/awards/dxcc/index.php:16 #: application/views/awards/wac/index.php:11 msgid "ARRL website" -msgstr "" +msgstr "ARRL-website" #: application/views/awards/dxcc/index.php:16 #: application/views/awards/wac/index.php:11 #, php-format msgid "You can find all information about the DXCC Award on the %s." -msgstr "" +msgstr "Je kunt alle informatie over de DXCC Award vinden op de %s." #: application/views/awards/dxcc/index.php:17 msgid "" @@ -4923,11 +5012,17 @@ msgid "" "will find Deleted DXCC entities also in the lists on Wavelog. Be aware that " "these DXCC entities are outdated and no longer valid." msgstr "" +"Belangrijke opmerking: In de loop der tijd zijn de criteria voor de DXCC-" +"lijst veranderd. De lijst blijft ongewijzigd totdat een entiteit niet langer " +"voldoet aan de criteria waaronder deze is toegevoegd, waarna deze naar de " +"verwijderde lijst wordt verplaatst. Je vindt verwijderde DXCC-entiteiten ook " +"in de lijsten op Wavelog. Wees je ervan bewust dat deze DXCC-entiteiten " +"verouderd en niet langer geldig zijn." #: application/views/awards/dxcc/index.php:32 #: application/views/awards/iota/index.php:33 msgid "Include deleted" -msgstr "" +msgstr "Inclusief verwijderd" #: application/views/awards/dxcc/index.php:87 #: application/views/awards/iota/index.php:61 @@ -4938,7 +5033,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:266 application/views/qso/index.php:394 #: application/views/view_log/qso.php:350 msgid "Antarctica" -msgstr "" +msgstr "Antarctica" #: application/views/awards/dxcc/index.php:91 #: application/views/awards/iota/index.php:65 @@ -4949,7 +5044,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:265 application/views/qso/index.php:393 #: application/views/view_log/qso.php:347 msgid "Africa" -msgstr "" +msgstr "Afrika" #: application/views/awards/dxcc/index.php:95 #: application/views/awards/iota/index.php:69 @@ -4960,7 +5055,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:267 application/views/qso/index.php:395 #: application/views/view_log/qso.php:353 msgid "Asia" -msgstr "" +msgstr "Azië" #: application/views/awards/dxcc/index.php:99 #: application/views/awards/iota/index.php:73 @@ -4971,7 +5066,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:268 application/views/qso/index.php:396 #: application/views/view_log/qso.php:356 msgid "Europe" -msgstr "" +msgstr "Europa" #: application/views/awards/dxcc/index.php:103 #: application/views/awards/iota/index.php:77 @@ -4982,7 +5077,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:269 application/views/qso/index.php:397 #: application/views/view_log/qso.php:359 msgid "North America" -msgstr "" +msgstr "Noord-Amerika" #: application/views/awards/dxcc/index.php:107 #: application/views/awards/iota/index.php:81 @@ -4993,7 +5088,7 @@ msgstr "" #: application/views/qso/edit_ajax.php:271 application/views/qso/index.php:399 #: application/views/view_log/qso.php:365 msgid "South America" -msgstr "" +msgstr "Zuid-Amerika" #: application/views/awards/dxcc/index.php:111 #: application/views/awards/iota/index.php:85 @@ -5004,15 +5099,15 @@ msgstr "" #: application/views/qso/edit_ajax.php:270 application/views/qso/index.php:398 #: application/views/view_log/qso.php:362 msgid "Oceania" -msgstr "" +msgstr "Oceanië" #: application/views/awards/dxcc/index.php:189 msgid "Show DXCC Map" -msgstr "" +msgstr "Toon DXCC-kaart" #: application/views/awards/dxcc/index.php:225 msgid "DXCC Name" -msgstr "" +msgstr "DXCC-naam" #: application/views/awards/dxcc/index.php:226 #: application/views/awards/iota/index.php:170 @@ -5020,12 +5115,12 @@ msgstr "" #: application/views/timeline/index.php:199 #: application/views/timeline/index.php:297 msgid "Prefix" -msgstr "" +msgstr "Voorvoegsel" #: application/views/awards/ffma/index.php:8 #: application/views/interface_assets/header.php:251 msgid "Fred Fish Memorial Award" -msgstr "" +msgstr "Fred Fish Memorial Award" #: application/views/awards/ffma/index.php:9 msgid "" @@ -5033,21 +5128,27 @@ msgid "" "who was the first amateur to have worked and confirmed all 488 Maidenhead " "grid squares in the 48 contiguous United States on 6 Meters." msgstr "" +"De Fred Fish Memorial Award is opgericht ter ere van Fred Fish, W5FF (SK), " +"die de eerste amateur was die alle 488 Maidenhead grid vierkanten in de 48 " +"aaneengesloten Verenigde Staten op 6 meter heeft gewerkt en bevestigd." #: application/views/awards/ffma/index.php:10 +#, fuzzy msgid "" "The award will be given to any amateur who can duplicate W5FF's " "accomplishment." msgstr "" +"De award wordt toegekend aan elke amateur die de prestatie van W5FF kan " +"evenaren." #: application/views/awards/ffma/index.php:11 #, php-format msgid "For more information, you can visit this link: %s." -msgstr "" +msgstr "Voor meer informatie kun je deze link bezoeken: %s." #: application/views/awards/gridmaster/index.php:8 msgid "US Gridmaster Award" -msgstr "" +msgstr "US Gridmaster Award" #: application/views/awards/gridmaster/index.php:9 msgid "" @@ -5056,6 +5157,10 @@ msgid "" "operators worldwide who manage to work all 488 grid squares in the USA via " "satellite and can provide QSL confirmations for each contact." msgstr "" +"De GridMaster Award is de meest prestigieuze AMSAT-prijs, voor het eerst " +"geïntroduceerd in 2014 door de Star Comm Group. Het is beschikbaar voor alle " +"radioamateurs wereldwijd die erin slagen om alle 488 grid squares in de VS " +"via satelliet te werken en QSL-bevestigingen voor elk contact kunnen leveren." #: application/views/awards/gridmaster/index.php:10 #, php-format @@ -5069,25 +5174,37 @@ msgid "" "when achieved from another location, which is in a different 200-kilometer " "circle." msgstr "" +"Officiële informatie van de %s: Er moet tweerichtingscommunicatie worden " +"opgezet via een amateur-satelliet met elk grid. Er is geen minimaal " +"signaalrapport vereist. Contacten moeten worden gemaakt vanaf dezelfde " +"locatie of vanaf locaties die niet meer dan 200 kilometer van elkaar " +"verwijderd zijn. De verklaring van de aanvrager in de prijsaanvraag dient " +"als bevestiging van naleving van de afstandsregel. Individuen kunnen " +"meerdere GridMaster-prijzen aanvragen en ontvangen wanneer deze worden " +"behaald vanaf een andere locatie, die zich in een andere cirkel van 200 " +"kilometer bevindt." #: application/views/awards/gridmaster/index.php:10 msgid "website" -msgstr "" +msgstr "website" #: application/views/awards/gridmaster/index.php:11 #: application/views/awards/gridmaster/index.php:16 msgid "This map shows only QSOs worked on SAT." -msgstr "" +msgstr "Deze kaart toont alleen QSOs die via SAT zijn gemaakt." #: application/views/awards/gridmaster/index.php:13 msgid "Gridmaster Award" -msgstr "" +msgstr "Gridmaster Award" #: application/views/awards/gridmaster/index.php:14 +#, fuzzy msgid "" "The Gridmaster Award was originally designed for the 488 gridsquares to be " "worked in the USA." msgstr "" +"De Gridmaster Award was oorspronkelijk ontworpen voor de 488 gridsquares die " +"in de VS moesten worden gewerkt." #: application/views/awards/gridmaster/index.php:15 msgid "" @@ -5095,19 +5212,23 @@ msgid "" "award but just showing the grids which were worked according to the US " "Gridmaster Award rules for this DXCC." msgstr "" +"Op deze kaart worden de grids voor de specifieke DXCC getoond. Dit is geen " +"officiële onderscheiding, maar toont gewoon de grids die zijn gewerkt " +"volgens de regels van de US Gridmaster Award voor deze DXCC." #: application/views/awards/helvetia/index.php:3 msgctxt "Switzerland Canton" msgid "Canton" -msgstr "" +msgstr "Kanton" #: application/views/awards/helvetia/index.php:4 +#, fuzzy msgid "Hover over a canton" -msgstr "" +msgstr "Zweef over een kanton" #: application/views/awards/helvetia/index.php:20 msgid "HELVETIA 26 | SWITZERLAND AWARD" -msgstr "" +msgstr "HELVETIA 26 | SWITZERLAND AWARD" #: application/views/awards/helvetia/index.php:21 msgid "" @@ -5116,6 +5237,10 @@ msgid "" "activities on the bands by encouraging contacts across as many Swiss cantons " "as possible on multiple bands." msgstr "" +"De USKA (Union of Swiss Shortwave Amateurs) sponsort twee onderscheidingen, " +"de HELVETIA 26 (H26) Award en de SWITZERLAND Award, gericht op het " +"bevorderen van activiteiten op de banden door contacten aan te moedigen over " +"zoveel mogelijk Zwitserse kantons op meerdere banden." #: application/views/awards/helvetia/index.php:22 msgid "" @@ -5123,6 +5248,9 @@ msgid "" "(including SHF and UHF) bands. Valid connections for these awards date back " "to January 1, 1980" msgstr "" +"Deze onderscheidingen zijn er in twee versies: één voor HF-banden en de " +"andere voor VHF-banden (inclusief SHF en UHF). Geldige verbindingen voor " +"deze onderscheidingen dateren vanaf 1 januari 1980" #: application/views/awards/helvetia/index.php:23 #: application/views/awards/jcc/index.php:19 @@ -5132,24 +5260,25 @@ msgstr "" #: application/views/awards/wwff/index.php:10 #, php-format msgid "For more information, please visit: %s." -msgstr "" +msgstr "Voor meer informatie, bezoek: %s." #: application/views/awards/helvetia/index.php:114 +#, fuzzy msgid "Show Helvetia Map" -msgstr "" +msgstr "Toon Helvetia/Zwitserland kaart" #: application/views/awards/helvetia/index.php:151 msgid "Canton" -msgstr "" +msgstr "Kanton" #: application/views/awards/index.php:9 application/views/bands/index.php:46 #: application/views/interface_assets/header.php:173 msgid "CQ" -msgstr "" +msgstr "CQ" #: application/views/awards/iota/index.php:16 msgid "IOTA Awards" -msgstr "" +msgstr "IOTA Awards" #: application/views/awards/iota/index.php:17 msgid "" @@ -5159,8 +5288,15 @@ msgid "" "enhance the experience of all those active on the amateur bands. To achieve " "this, it draws on the widespread mystique surrounding islands." msgstr "" +"IOTA is een spannend en innovatief activiteitenprogramma dat de interesse " +"van duizenden radioamateurs wereldwijd heeft gewekt. Opgericht in 1964, " +"bevordert het radiocontacten met stations die zich op eilanden over de hele " +"wereld bevinden om de ervaring van alle actieve amateurs op de banden te " +"verbeteren. Om dit te bereiken, maakt het gebruik van de wijdverspreide " +"mystiek rondom eilanden." #: application/views/awards/iota/index.php:18 +#, fuzzy msgid "" "It is administered by Islands On The Air (IOTA) Ltd (referred to as IOTA " "Management) in partnership with the Radio Society of Great Britain (RSGB). " @@ -5174,19 +5310,30 @@ msgid "" "an Honor Roll and annual listings, as well as recognizing it with " "certificates and prestigious awards." msgstr "" +"Het wordt beheerd door Islands On The Air (IOTA) Ltd (verwezen naar als IOTA " +"Management) in samenwerking met de Radio Society of Great Britain (RSGB). " +"IOTA Management heeft de eilanden van de wereld gegroepeerd in ongeveer 1200 " +"'IOTA-groepen', elk met een verschillend aantal 'counters', die " +"kwalificerende eilanden zijn. Deze lijsten worden gepubliceerd in de IOTA " +"Directory en op de IOTA-website. Het doel voor de IOTA Island Chaser is om " +"radiocontact te maken met ten minste één counter in zoveel mogelijk van deze " +"groepen. Het programma heeft een goed gedefinieerde set regels en moedigt " +"vriendelijke competitie aan onder chasers door de prestaties van deelnemers " +"te publiceren in een Honor Roll en jaarlijkse lijsten, evenals het erkennen " +"ervan met certificaten en prestigieuze onderscheidingen." #: application/views/awards/iota/index.php:19 -#, php-format +#, fuzzy, php-format msgid "You can also find this information on %s." -msgstr "" +msgstr "Je kunt deze informatie ook vinden op %s." #: application/views/awards/iota/index.php:29 msgid "Deleted IOTA" -msgstr "" +msgstr "Verwijderde IOTA" #: application/views/awards/iota/index.php:132 msgid "Show IOTA Map" -msgstr "" +msgstr "Toon IOTA-kaart" #: application/views/awards/iota/index.php:171 #: application/views/contesting/add.php:25 @@ -5212,11 +5359,11 @@ msgstr "" #: application/views/view_log/qso.php:214 #: application/views/view_log/qso.php:660 msgid "Name" -msgstr "" +msgstr "Naam" #: application/views/awards/iota/index.php:173 msgid "Deleted" -msgstr "" +msgstr "Verwijderd" #: application/views/awards/itu/index.php:3 #: application/views/awards/itu/index.php:150 @@ -5232,7 +5379,7 @@ msgstr "" #: application/views/station_profile/edit.php:170 #: application/views/user/modals/first_login_wizard.php:84 msgid "ITU Zone" -msgstr "" +msgstr "ITU-zone" #: application/views/awards/itu/index.php:21 msgid "" @@ -5241,30 +5388,38 @@ msgid "" "broadcasting zones as defined by the International Telecommunications Union " "(ITU)." msgstr "" +"De Classic Worked ITU Zones award kan worden aangevraagd door bewijs te " +"leveren van contact met landgebaseerde amateurradiostations in ten minste 70 " +"van de 75 uitzendzones zoals gedefinieerd door de Internationale " +"Telecommunicatie Unie (ITU)." #: application/views/awards/itu/index.php:22 #, php-format msgctxt "uses 'RSGB'" msgid "You can find more information on the website of %s." -msgstr "" +msgstr "Je kunt meer informatie vinden op de website van %s." #: application/views/awards/itu/index.php:25 msgid "Awards - ITU Zones" -msgstr "" +msgstr "Awards - ITU-zones" #: application/views/awards/itu/index.php:115 msgid "Show ITU Zone Map" -msgstr "" +msgstr "Toon ITU Zone Kaart" #: application/views/awards/jcc/index.php:16 msgid "JCC - Japan Century Cities Award" -msgstr "" +msgstr "JCC - Japan Century Cities Award" #: application/views/awards/jcc/index.php:17 +#, fuzzy msgid "" "May be claimed for having contacted (heard) and received a QSL card from an " "amateur station located in each of at least 100 different cities of Japan." msgstr "" +"Kan worden geclaimd voor het hebben gecontacteerd (gehoord) en een QSL-kaart " +"ontvangen van een amateurstation in ten minste 100 verschillende steden van " +"Japan." #: application/views/awards/jcc/index.php:18 msgid "" @@ -5273,29 +5428,34 @@ 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 en 800 zullen als afzonderlijke " +"onderscheidingen worden uitgegeven. Een lijst van QSL-kaarten moet worden " +"gerangschikt op volgorde van JCC-referentienummer, maar de namen van de " +"steden mogen worden weggelaten. Een extra sticker wordt uitgegeven bij elke " +"50 contacten zoals 150, 250, 350, 450, 550, 650, 750 steden." #: application/views/awards/jcc/index.php:115 msgid "Show JCC Map" -msgstr "" +msgstr "Toon JCC-kaart" #: application/views/awards/jcc/index.php:116 #: application/views/cabrillo/index.php:209 application/views/cfd/index.php:25 #: application/views/csv/index.php:128 application/views/dxatlas/index.php:128 #: application/views/kml/index.php:113 application/views/reg1test/index.php:145 msgid "Export" -msgstr "" +msgstr "Exporteren" #: application/views/awards/jcc/index.php:126 #: application/views/public_search/empty.php:2 #: application/views/public_search/result.php:2 msgid "Results" -msgstr "" +msgstr "Resultaten" #: application/views/awards/jcc/index.php:151 #: application/views/awards/waja/index.php:153 #: application/views/distancerecords/index.php:13 msgid "Number" -msgstr "" +msgstr "Nummer" #: application/views/awards/jcc/index.php:152 #: application/views/search/result.php:21 @@ -5307,11 +5467,11 @@ msgstr "Woonplaats" #: application/views/dashboard/index.php:426 #: application/views/distances/index.php:23 msgid "SAT" -msgstr "" +msgstr "SAT" #: application/views/awards/pota/index.php:7 msgid "POTA Awards" -msgstr "" +msgstr "POTA Awards" #: application/views/awards/pota/index.php:8 msgid "" @@ -5319,6 +5479,10 @@ msgid "" "Parks on the Air special event ended. A group of volunteers wanted to " "continue the fun beyond the one-year event, and thus, POTA was born." msgstr "" +"Parks on the Air® (POTA) begon begin 2017 toen het speciale evenement " +"National Parks on the Air van de ARRL eindigde. Een groep vrijwilligers " +"wilde het plezier na het eenjarige evenement voortzetten, en zo werd POTA " +"geboren." #: application/views/awards/pota/index.php:9 msgid "" @@ -5326,6 +5490,9 @@ msgid "" "there are several categories based on the number of parks, geographic areas, " "and more." msgstr "" +"POTA werkt vergelijkbaar met SOTA, met Activators en Hunters. Voor de awards " +"zijn er verschillende categorieën gebaseerd op het aantal parken, " +"geografische gebieden en meer." #: application/views/awards/pota/index.php:10 #, php-format @@ -5334,6 +5501,8 @@ msgid "" "For more information about the available awards and categories, please visit " "the %s." msgstr "" +"Voor meer informatie over de beschikbare prijzen en categorieën, bezoek de " +"%s." #: application/views/awards/pota/index.php:31 #: application/views/qso/index.php:243 application/views/qso/index.php:536 @@ -5347,25 +5516,27 @@ msgstr "POTA Referentie" #: application/views/awards/rac/index.php:3 msgctxt "Canada Province" msgid "Province" -msgstr "" +msgstr "Provincie" #: application/views/awards/rac/index.php:4 msgid "Hover over a province" -msgstr "" +msgstr "Zweef over een provincie" #: application/views/awards/rac/index.php:106 msgid "Show RAC Map" -msgstr "" +msgstr "Toon RAC-kaart" #: application/views/awards/sig/index.php:7 msgid "SIG Information" -msgstr "" +msgstr "SIG Informatie" #: application/views/awards/sig/index.php:8 msgid "" "The SIG or Signature Category provides the possibility to use any kind of " "'Award Signature' for awards that are not implemented in Wavelog." msgstr "" +"De SIG of Signature Categorie biedt de mogelijkheid om elke soort 'Award " +"Signature' te gebruiken voor awards die niet in Wavelog zijn geïmplementeerd." #: application/views/awards/sig/index.php:9 msgid "" @@ -5373,6 +5544,10 @@ msgid "" "dedicated fields for certain awards. SIG still makes it possible to use and " "evaluate all other types of signature markers." msgstr "" +"De reden hiervoor is dat het gebruikelijke ADIF-formaat slechts een paar " +"specifieke velden biedt voor bepaalde onderscheidingen. SIG maakt het nog " +"steeds mogelijk om alle andere soorten signatuurmarkeringen te gebruiken en " +"te evalueren." #: application/views/awards/sig/index.php:10 msgid "" @@ -5380,26 +5555,30 @@ msgid "" "marker, which is also visible in the award evaluation, and 'SIG INFO,' which " "contains a description of the signature. Both fields are freely customizable." msgstr "" +"Bij de QSO-verwerking vind je twee velden: 'SIG' bevat de eigenlijke " +"markering, die ook zichtbaar is in de award-evaluatie, en 'SIG INFO,' dat " +"een beschrijving van de handtekening bevat. Beide velden zijn vrij " +"aanpasbaar." #: application/views/awards/sig/index.php:21 msgid "Award Type" -msgstr "" +msgstr "Award type" #: application/views/awards/sig/index.php:22 #: application/views/continents/index.php:17 #: application/views/distances/index.php:12 #: application/views/timeplotter/index.php:4 msgid "Number of QSOs" -msgstr "" +msgstr "Aantal QSOs" #: application/views/awards/sig/index.php:23 msgid "Number of Refs" -msgstr "" +msgstr "Aantal referenties" #: application/views/awards/sig/qso_list.php:9 #: application/views/awards/sota/index.php:23 msgid "Reference" -msgstr "" +msgstr "Referentie" #: application/views/awards/sig/qso_list.php:10 #: application/views/awards/sota/index.php:24 @@ -5411,31 +5590,33 @@ msgstr "" #: application/views/search/lotw_unconfirmed_result.php:7 #: application/views/view_log/qso.php:72 msgid "Date/Time" -msgstr "" +msgstr "Datum/Tijd" #: application/views/awards/sig/qso_list.php:14 #: application/views/awards/sota/index.php:27 msgid "RST Sent" -msgstr "" +msgstr "RST verzonden" #: application/views/awards/sig/qso_list.php:15 #: application/views/awards/sota/index.php:28 msgid "RST Received" -msgstr "" +msgstr "RST ontvangen" #: application/views/awards/sig/qso_list.php:34 msgid "Export QSOs to ADIF" -msgstr "" +msgstr "Exporteer QSO's naar ADIF" #: application/views/awards/sota/index.php:7 msgid "SOTA Awards" -msgstr "" +msgstr "SOTA Awards" #: application/views/awards/sota/index.php:8 msgid "" "SOTA (Summits On The Air) is an award scheme for radio amateurs that " "encourages portable operation in mountainous areas." msgstr "" +"SOTA (Summits On The Air) is een beloningssysteem voor radioamateurs dat " +"draagbare operaties in bergachtige gebieden aanmoedigt." #: application/views/awards/sota/index.php:9 msgid "" @@ -5447,57 +5628,72 @@ msgid "" "trophies. An Honor Roll for Activators and Chasers is maintained in the SOTA " "online database." msgstr "" +"Het is volledig operationeel in bijna honderd landen wereldwijd. Elk land " +"heeft zijn eigen vereniging die de erkende SOTA-toppen binnen die vereniging " +"definieert. Elke top levert de activators en jagers een score op die " +"gerelateerd is aan de hoogte van de top. Certificaten zijn beschikbaar voor " +"verschillende scores, wat leidt tot de prestigieuze 'Mountain Goat' en " +"'Shack Sloth' trofeeën. Een erelijst voor activators en jagers wordt " +"bijgehouden in de SOTA online database." #: application/views/awards/vucc/index.php:7 msgid "VUCC - VHF/UHF Century Club Award" -msgstr "" +msgstr "VUCC - VHF/UHF Century Club Award" #: application/views/awards/vucc/index.php:8 +#, fuzzy msgid "" "The VHF/UHF Century Club Award is given for a minimum number of worked and " "confirmed gridsquares on a desired band." msgstr "" +"De VHF/UHF Century Club Award wordt toegekend voor een minimum aantal " +"gewerkte en bevestigde gridsquares op een gewenste band." #: application/views/awards/vucc/index.php:9 #, php-format msgid "Official information and the rules can be found in this document: %s." -msgstr "" +msgstr "Officiële informatie en de regels zijn te vinden in dit document: %s." #: application/views/awards/vucc/index.php:10 msgid "Only VHF/UHF bands are relevant." -msgstr "" +msgstr "Alleen VHF/UHF-banden zijn relevant." #: application/views/awards/vucc/index.php:22 msgid "Grids Worked" -msgstr "" +msgstr "Vakken gewerkt" #: application/views/awards/vucc/index.php:23 msgid "Grids Confirmed" -msgstr "" +msgstr "Vakken bevestigd" #: application/views/awards/wab/index.php:12 msgid "WAB - Worked All Britain Award" -msgstr "" +msgstr "WAB - Worked All Britain Award" #: application/views/awards/wab/index.php:13 msgid "" "WAB, Worked All Britain squares in Amateur Radio, encourages licensed ham " "radio operators to work all the squares in Great Britain." msgstr "" +"WAB, Worked All Britain squares in Amateur Radio, moedigt gelicenseerde " +"radioamateurs aan om alle vierkanten in Groot-Brittannië te werken." #: application/views/awards/wab/index.php:14 msgid "" "May be claimed for having contacted an amateur station located in the " "required amount of squares, described on the page linked below." msgstr "" +"Kan worden geclaimd voor het hebben van contact met een amateurstation dat " +"zich in het vereiste aantal vierkanten bevindt, zoals beschreven op de " +"pagina die hieronder is gelinkt." #: application/views/awards/wab/index.php:109 msgid "List" -msgstr "" +msgstr "Lijst" #: application/views/awards/wab/list.php:5 msgid "WAB Square" -msgstr "" +msgstr "WAB-vierkant" #: application/views/awards/wac/index.php:9 msgid "" @@ -5505,10 +5701,14 @@ msgid "" "Continents award is issued for working and confirming all six continents. " "These are North America, South America, Oceania, Asia, Europe and Africa." msgstr "" +"Gesponsord door de International Amateur Radio Union (IARU), wordt de Worked " +"All Continents award uitgereikt voor het werken en bevestigen van alle zes " +"continenten. Dit zijn Noord-Amerika, Zuid-Amerika, Oceanië, Azië, Europa en " +"Afrika." #: application/views/awards/wac/index.php:13 msgid "Awards - Worked All Continents (WAC)" -msgstr "" +msgstr "Awards - Worked All Continents (WAC)" #: application/views/awards/wac/index.php:151 #: application/views/continents/index.php:62 @@ -5519,34 +5719,36 @@ msgstr "" #: application/views/qso/edit_ajax.php:262 application/views/qso/index.php:390 #: application/views/view_log/qso.php:342 msgid "Continent" -msgstr "" +msgstr "Continent" #: application/views/awards/wae/index.php:7 msgid "WAE Award" -msgstr "" +msgstr "WAE Award" #: application/views/awards/wae/index.php:161 msgid "WAE Name" -msgstr "" +msgstr "WAE Naam" #: application/views/awards/waja/index.php:3 msgctxt "Japan Prefecture" msgid "Prefecture" -msgstr "" +msgstr "Prefectuur" #: application/views/awards/waja/index.php:4 msgid "Hover over a prefecture" -msgstr "" +msgstr "Zweef over een prefectuur" #: application/views/awards/waja/index.php:19 msgid "WAJA - Worked All Japan prefectures Award" -msgstr "" +msgstr "WAJA - Worked All Japan prefecturen Award" #: application/views/awards/waja/index.php:20 msgid "" "WAJA, Worked All Japan prefectures in Amateur Radio, encourages licensed ham " "radio operators to work all the prefectures in Japan." msgstr "" +"WAJA, Worked All Japan prefecturen in Amateur Radio, moedigt gelicenseerde " +"radioamateurs aan om met alle prefecturen in Japan verbinding te maken." #: application/views/awards/waja/index.php:21 msgid "" @@ -5555,28 +5757,32 @@ msgid "" "QSL cards should be arranged in order of WAJA (HAJA) reference number, " "however names of prefectures may be omitted." msgstr "" +"Kan worden geclaimd voor het hebben gecontacteerd (gehoord) en een QSL-kaart " +"ontvangen van een amateurstation in elk van de 47 prefecturen van Japan. Een " +"lijst van QSL-kaarten moet worden gerangschikt in volgorde van WAJA (HAJA) " +"referentienummer, maar namen van prefecturen mogen worden weggelaten." #: application/views/awards/waja/index.php:118 msgid "Show WAJA Map" -msgstr "" +msgstr "Toon WAJA-kaart" #: application/views/awards/waja/index.php:154 #: application/views/timeline/index.php:237 msgid "Prefecture" -msgstr "" +msgstr "Prefectuur" #: application/views/awards/was/index.php:3 msgctxt "USA State" msgid "State" -msgstr "" +msgstr "Staat" #: application/views/awards/was/index.php:4 msgid "Hover over a state" -msgstr "" +msgstr "Zweef over een staat" #: application/views/awards/was/index.php:20 msgid "WAS Award" -msgstr "" +msgstr "WAS Award" #: application/views/awards/was/index.php:21 msgid "" @@ -5585,8 +5791,14 @@ msgid "" "101st year, they have redesigned the certificates and the program in hopes " "of streamlining and improving the award program." msgstr "" +"De meest populaire onderscheiding van de ARRL is de Worked All States Award. " +"Duizenden en nog eens duizenden onderscheidingen zijn uitgereikt aan " +"zendamateurs over de hele wereld. In het 101e jaar van de ARRL hebben ze de " +"certificaten en het programma opnieuw ontworpen in de hoop het " +"toekenningsprogramma te stroomlijnen en te verbeteren." #: application/views/awards/was/index.php:22 +#, fuzzy msgid "" "The WAS (Worked All States) Award is available to all amateurs worldwide who " "submit proof with written confirmation of contacts with each of the 50 " @@ -5594,20 +5806,26 @@ msgid "" "possessions must be members of ARRL to apply for a WAS. Applicants from " "outside the U.S. are exempt from this requirement." msgstr "" +"De WAS (Worked All States) Award is beschikbaar voor alle amateurs " +"wereldwijd die bewijs indienen met schriftelijke bevestiging van contacten " +"met elk van de 50 staten van de Verenigde Staten van Amerika. Amateurs in de " +"VS en hun bezittingen moeten lid zijn van ARRL om een WAS aan te vragen. " +"Aanvragers van buiten de VS zijn vrijgesteld van deze eis." #: application/views/awards/was/index.php:23 #, php-format msgctxt "uses 'here'" msgid "All information and rules for the ARRL WAS Award can be found %s." -msgstr "" +msgstr "Alle informatie en regels voor de ARRL WAS Award zijn te vinden %s." #: application/views/awards/was/index.php:114 msgid "Show WAS Map" -msgstr "" +msgstr "Toon WAS-kaart" #: application/views/awards/wwff/index.php:7 +#, fuzzy msgid "WWFF - World Wide Flora and Fauna Award" -msgstr "" +msgstr "WWFF - Wereldwijd Flora en Fauna Award" #: application/views/awards/wwff/index.php:8 msgid "" @@ -5615,13 +5833,20 @@ msgid "" "radio operators to leave their shacks and operate portable in Protected " "Flora & Fauna areas (PFF) worldwide." msgstr "" +"WWFF, World Wide Flora and Fauna in Amateur Radio, moedigt gelicenseerde " +"radioamateurs aan om hun shack te verlaten en draagbaar te opereren in " +"beschermde flora- en fauna-gebieden (PFF) wereldwijd." #: application/views/awards/wwff/index.php:9 +#, fuzzy msgid "" "More than 26,000 Protected Flora & Fauna (PFF) areas worldwide are already " "registered in the WWFF Directory. Hunters and Activators can apply for " "colorful awards, both globally and nationally." msgstr "" +"Wereldwijd zijn al meer dan 26.000 beschermde flora- en fauna-gebieden (PFF) " +"geregistreerd in het WWFF-register. Jagers en activators kunnen zowel " +"wereldwijd als nationaal kleurrijke onderscheidingen aanvragen." #: application/views/awards/wwff/index.php:31 #: application/views/qso/index.php:231 application/views/qso/index.php:523 @@ -5635,12 +5860,13 @@ msgstr "WWFF Referentie" #: application/views/backup/adif_view.php:7 msgid "" "The backup of your log completed successfully. The output can be found at" -msgstr "" +msgstr "De back-up van je log is succesvol voltooid. De uitvoer is te vinden op" #: application/views/backup/adif_view.php:9 #: application/views/backup/notes_view.php:9 msgid "You could automate this process by making it a cronjob." msgstr "" +"Je zou dit proces kunnen automatiseren door er een cronjob van te maken." #: application/views/backup/adif_view.php:13 #: application/views/backup/notes_view.php:13 @@ -5648,38 +5874,45 @@ msgid "" "Something went wrong during the backup process. Check that the backup folder " "exists and is writeable by your web server user / group." msgstr "" +"Er is iets misgegaan tijdens het back-upproces. Controleer of de back-upmap " +"bestaat en beschrijfbaar is door de gebruiker/groep van je webserver." #: application/views/backup/main.php:17 msgid "" "Some of the data stored in Wavelog can be exported so that you can keep a " "backup copy elsewhere." msgstr "" +"Een deel van de gegevens die in Wavelog zijn opgeslagen, kan worden " +"geëxporteerd zodat je ergens anders een back-up kunt bewaren." #: application/views/backup/main.php:18 msgid "" "It's recommended to create backups on a regular basis to protect your data." msgstr "" +"Het wordt aanbevolen om regelmatig back-ups te maken om je gegevens te " +"beschermen." #: application/views/backup/main.php:19 msgid "Backup ADIF data" -msgstr "" +msgstr "Back-up ADIF-gegevens" #: application/views/backup/main.php:20 msgid "Backup Notes" -msgstr "" +msgstr "Back-up notities" #: application/views/backup/notes_view.php:7 msgid "" "The backup of your notes completed successfully. The output can be found at" msgstr "" +"De back-up van je notities is succesvol voltooid. De uitvoer is te vinden op" #: application/views/bandmap/index.php:15 application/views/bandmap/list.php:53 msgid "BandMap" -msgstr "" +msgstr "Bandkaart" #: application/views/bandmap/index.php:18 application/views/bandmap/list.php:56 msgid "BandList" -msgstr "" +msgstr "Bandlijst" #: application/views/bandmap/index.php:27 application/views/bandmap/list.php:66 #: application/views/contesting/index.php:19 @@ -5687,140 +5920,145 @@ msgstr "" #: application/views/contesting/index.php:154 #: application/views/qso/index.php:321 msgid "None" -msgstr "" +msgstr "Geen" #: application/views/bandmap/index.php:33 application/views/bandmap/list.php:80 +#, fuzzy msgid "Spots de" -msgstr "" +msgstr "Spotters uit" #: application/views/bandmap/list.php:6 application/views/qso/log_qso.php:55 msgid "Pop-up was blocked! Please allow pop-ups for this site permanently." -msgstr "" +msgstr "Pop-up werd geblokkeerd! Sta pop-ups voor deze site permanent toe." #: application/views/bandmap/list.php:7 msgid "Click to prepare logging." -msgstr "" +msgstr "Klik om de logging voor te bereiden." #: application/views/bandmap/list.php:73 msgid "DXCC-Status" -msgstr "" +msgstr "DXCC-status" #: application/views/bandmap/list.php:78 msgid "Not Confirmed" -msgstr "" +msgstr "Niet bevestigd" #: application/views/bandmap/list.php:117 msgid "Spotter" -msgstr "" +msgstr "Spotter" #: application/views/bandmap/list.php:118 #: application/views/oqrs/notinlogform.php:28 #: application/views/oqrs/request.php:54 #: application/views/oqrs/request_grouped.php:58 msgid "Message" -msgstr "" +msgstr "Bericht" #: application/views/bandmap/list.php:119 msgid "Last Worked" -msgstr "" +msgstr "Laatst gewerkt" #: application/views/bands/create.php:26 application/views/bands/edit.php:8 msgid "Name of Band (E.g. 20m)" -msgstr "" +msgstr "Naam van de band (bijv. 20m)" #: application/views/bands/create.php:29 application/views/bands/edit.php:11 #: application/views/bands/index.php:61 msgid "Bandgroup" -msgstr "" +msgstr "Bandgroep" #: application/views/bands/create.php:31 application/views/bands/edit.php:13 msgid "Name of bandgroup (E.g. hf, vhf, uhf, shf)" -msgstr "" +msgstr "Naam van bandgroep (bijv. hf, vhf, uhf, shf)" #: application/views/bands/create.php:34 application/views/bands/edit.php:16 #: application/views/bands/index.php:62 msgid "SSB QRG" -msgstr "" +msgstr "SSB QRG" #: application/views/bands/create.php:36 application/views/bands/edit.php:18 msgid "Frequency for SSB QRG in band (must be in Hz)" -msgstr "" +msgstr "Frequentie voor SSB QRG in band (moet in Hz zijn)" #: application/views/bands/create.php:39 application/views/bands/edit.php:21 #: application/views/bands/index.php:63 msgid "DATA QRG" -msgstr "" +msgstr "DATA QRG" #: application/views/bands/create.php:41 application/views/bands/edit.php:23 msgid "Frequency for DATA QRG in band (must be in Hz)" -msgstr "" +msgstr "Frequentie voor DATA QRG in band (moet in Hz zijn)" #: application/views/bands/create.php:44 application/views/bands/edit.php:26 #: application/views/bands/index.php:64 msgid "CW QRG" -msgstr "" +msgstr "CW QRG" #: application/views/bands/create.php:46 application/views/bands/edit.php:28 msgid "Frequency for CW QRG in band (must be in Hz)" -msgstr "" +msgstr "Frequentie voor CW QRG in band (moet in Hz zijn)" #: application/views/bands/index.php:36 msgid "" "Using the band list you can control which bands are shown when creating a " "new QSO." msgstr "" +"Met de bandenlijst kun je bepalen welke banden worden weergegeven bij het " +"aanmaken van een nieuwe QSO." #: application/views/bands/index.php:37 msgid "" "Active bands will be shown in the QSO 'Band' drop-down, while inactive bands " "will be hidden and cannot be selected." msgstr "" +"Actieve banden worden weergegeven in de QSO 'Band' drop-down, terwijl niet-" +"actieve banden verborgen worden en niet geselecteerd kunnen worden." #: application/views/bands/index.php:54 application/views/qso/edit_ajax.php:392 #: application/views/qso/index.php:255 application/views/qso/index.php:548 #: application/views/user/edit.php:619 application/views/view_log/qso.php:425 #: application/views/view_log/qso.php:726 msgid "Sig" -msgstr "" +msgstr "Sig" #: application/views/bands/index.php:56 application/views/qso/edit_ajax.php:361 #: application/views/qso/index.php:487 msgid "USA County" -msgstr "" +msgstr "USA County" #: application/views/bands/index.php:58 #: application/views/interface_assets/header.php:223 msgid "WAJA" -msgstr "" +msgstr "WAJA" #: application/views/bands/index.php:59 #: application/views/interface_assets/header.php:247 msgid "WAS" -msgstr "" +msgstr "WAS" #: application/views/bands/index.php:65 msgid "QRG Unit" -msgstr "" +msgstr "QRG-eenheid" #: application/views/bands/index.php:98 msgid "Hz" -msgstr "" +msgstr "Hz" #: application/views/bands/index.php:99 msgid "kHz" -msgstr "" +msgstr "kHz" #: application/views/bands/index.php:100 msgid "MHz" -msgstr "" +msgstr "MHz" #: application/views/bands/index.php:101 msgid "GHz" -msgstr "" +msgstr "GHz" #: application/views/bands/index.php:151 application/views/bands/index.php:157 msgid "Create a band" -msgstr "" +msgstr "Maak een band" #: application/views/bands/index.php:152 #: application/views/club/permissions.php:142 @@ -5838,82 +6076,83 @@ msgstr "Sluiten" #: application/views/bands/index.php:153 msgid "Warning! Are you sure you want to delete the following band: " -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je de volgende band wilt verwijderen: " #: application/views/bands/index.php:154 msgid "Warning! Are you sure you want to activate all bands?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle banden wilt activeren?" #: application/views/bands/index.php:155 msgid "Warning! Are you sure you want to deactivate all bands?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle banden wilt deactiveren?" #: application/views/bands/index.php:158 #: application/views/contesting/add.php:77 application/views/mode/index.php:89 msgid "Activate All" -msgstr "" +msgstr "Alles activeren" #: application/views/bands/index.php:159 #: application/views/contesting/add.php:78 application/views/mode/index.php:90 msgid "Deactivate All" -msgstr "" +msgstr "Alles deactiveren" #: application/views/cabrillo/cbr_success.php:12 msgid "Results of CBR Contest Data Update" -msgstr "" +msgstr "Resultaten van de CBR Contest Data Update" #: application/views/cabrillo/cbr_success.php:17 msgid "" "Your contest QSOs have been updated using the values of your Cabrillo file." -msgstr "" +msgstr "Je contest-QSOs zijn bijgewerkt met de waarden van je Cabrillo-bestand." #: application/views/cabrillo/cbr_success.php:19 msgid "No QSOs were updated by your Cabrillo file." -msgstr "" +msgstr "Er zijn geen QSOs bijgewerkt door je Cabrillo-bestand." #: application/views/cabrillo/cbr_success.php:25 msgid "CBR errors" -msgstr "" +msgstr "CBR-fouten" #: application/views/cabrillo/index.php:2 #: application/views/cabrillo/index.php:34 application/views/oqrs/index.php:59 #: application/views/reg1test/index.php:2 #: application/views/reg1test/index.php:36 msgid "Proceed" -msgstr "" +msgstr "Ga verder" #: application/views/cabrillo/index.php:3 #: application/views/reg1test/index.php:3 msgid "Select Year" -msgstr "" +msgstr "Selecteer jaar" #: application/views/cabrillo/index.php:4 #: application/views/reg1test/index.php:4 msgid "Select Contest" -msgstr "" +msgstr "Selecteer Contest" #: application/views/cabrillo/index.php:5 #: application/views/reg1test/index.php:5 msgid "Select Date Range" -msgstr "" +msgstr "Selecteer datumbereik" #: application/views/cabrillo/index.php:6 #: application/views/reg1test/index.php:7 +#, fuzzy msgid "No contests were found for this station location!" -msgstr "" +msgstr "Er werden geen contesten gevonden voor deze stationlocatie!" #: application/views/cabrillo/index.php:16 msgid "Export a contest to a Cabrillo log" -msgstr "" +msgstr "Exporteer een contest naar een Cabrillo-log" #: application/views/cabrillo/index.php:28 msgid "Select Station Location:" -msgstr "" +msgstr "Selecteer stationlocatie:" #: application/views/cabrillo/index.php:44 #: application/views/reg1test/index.php:53 msgid "Club" -msgstr "" +msgstr "Club" #: application/views/cabrillo/index.php:48 msgid "" @@ -5921,16 +6160,21 @@ msgid "" "For foreign stations LOCATION must be 'DX'. This information is required for " "IARU-HF and for all ARRL and CQ contests." msgstr "" +"Voor stations in de VS en Canada moet de LOCATIE de ARRL-sectie afkorting " +"zijn. Voor buitenlandse stations moet de LOCATIE 'DX' zijn. Deze informatie " +"is vereist voor IARU-HF en voor alle ARRL- en CQ-wedstrijden." #: application/views/cabrillo/index.php:48 msgid "For the RDXC contest this contains the RDA number." -msgstr "" +msgstr "Voor de RDXC-contest bevat dit het RDA-nummer." #: application/views/cabrillo/index.php:48 msgid "" "For the RSGB-IOTA contest this information contains the IOTA name (not the " "IOTA reference code)." msgstr "" +"Voor de RSGB-IOTA contest bevat deze informatie de IOTA-naam (niet de IOTA-" +"referentiecode)." #: application/views/cabrillo/index.php:48 #: application/views/logbookadvanced/index.php:591 @@ -5942,43 +6186,44 @@ msgstr "Locatie" #: application/views/cabrillo/index.php:52 #: application/views/reg1test/index.php:58 msgid "Category Operator" -msgstr "" +msgstr "Categorie Operator" #: application/views/cabrillo/index.php:60 msgid "Category Assisted" -msgstr "" +msgstr "Categorie Geassisteerd" #: application/views/cabrillo/index.php:67 msgid "Category Band" -msgstr "" +msgstr "Categorie Band" #: application/views/cabrillo/index.php:93 msgid "Light/Laser" -msgstr "" +msgstr "Licht/Laser" #: application/views/cabrillo/index.php:94 msgid "VHF-3-BAND and VHF-FM-ONLY (ARRL VHF Contests only)" -msgstr "" +msgstr "VHF-3-BAND en VHF-FM-ONLY (alleen ARRL VHF Contests)" #: application/views/cabrillo/index.php:98 +#, fuzzy msgid "Category Mode" -msgstr "" +msgstr "Categorie Modus" #: application/views/cabrillo/index.php:109 msgid "Category Power" -msgstr "" +msgstr "Categorie Vermogen" #: application/views/cabrillo/index.php:117 msgid "Category Station" -msgstr "" +msgstr "Categorie Station" #: application/views/cabrillo/index.php:133 msgid "Category Transmitter" -msgstr "" +msgstr "Categorie Zender" #: application/views/cabrillo/index.php:143 msgid "Category Time" -msgstr "" +msgstr "Categorie Tijd" #: application/views/cabrillo/index.php:145 #: application/views/cabrillo/index.php:146 @@ -5986,45 +6231,45 @@ msgstr "" #: application/views/cabrillo/index.php:148 #, php-format msgid "%d Hours" -msgstr "" +msgstr "%d Uren" #: application/views/cabrillo/index.php:152 msgid "Category Overlay" -msgstr "" +msgstr "Categorie-overlay" #: application/views/cabrillo/index.php:164 #: application/views/reg1test/index.php:70 msgid "Operators" -msgstr "" +msgstr "Operators" #: application/views/cabrillo/index.php:169 #: application/views/reg1test/index.php:139 msgid "Soapbox" -msgstr "" +msgstr "Soapbox" #: application/views/cabrillo/index.php:173 msgid "Address" -msgstr "" +msgstr "Adres" #: application/views/cabrillo/index.php:177 msgid "Address City" -msgstr "" +msgstr "Stad" #: application/views/cabrillo/index.php:181 msgid "Address State/Province" -msgstr "" +msgstr "Staat/Provincie" #: application/views/cabrillo/index.php:185 msgid "Address Postalcode" -msgstr "" +msgstr "Postcode" #: application/views/cabrillo/index.php:189 msgid "Address Country" -msgstr "" +msgstr "Land" #: application/views/cabrillo/index.php:193 msgid "Certificate" -msgstr "" +msgstr "Certificaat" #: application/views/cabrillo/index.php:193 msgid "" @@ -6032,6 +6277,9 @@ msgid "" "postal mail by the contest sponsor. The contest sponsor may or may not honor " "this tag." msgstr "" +"Geef aan of je, indien in aanmerking komend, een papieren certificaat wilt " +"ontvangen dat per post door de wedstrijdsponsor wordt verzonden. De " +"wedstrijdsponsor kan deze tag wel of niet honoreren." #: application/views/cabrillo/index.php:196 #: application/views/cabrillo/index.php:204 @@ -6143,43 +6391,45 @@ msgstr "Nee" #: application/views/cabrillo/index.php:201 msgid "If the gridsquare was part of the exchange, you should select YES." msgstr "" +"Als het gridsquare deel uitmaakte van de uitwisseling, moet je JA selecteren." #: application/views/cabrillo/index.php:201 msgid "Include logged grids?" -msgstr "" +msgstr "Gelogde vakken opnemen?" #: application/views/cabrillo/index.php:215 #: application/views/reg1test/index.php:150 +#, fuzzy msgid "No contests were found in your log." -msgstr "" +msgstr "Er werden geen contesten in je logboek gevonden." #: application/views/callstats/index.php:70 #: application/views/gridmap/index.php:43 msgid "All except SAT" -msgstr "" +msgstr "Alles behalve SAT" #: application/views/callstats/index.php:149 msgid "#QSOs" -msgstr "" +msgstr "#QSOs" #: application/views/cfd/index.php:7 #, php-format msgid "Export of CFD-File for DARC-Toplist (See %s)" -msgstr "" +msgstr "Export van CFD-bestand voor DARC-Toplijst (Zie %s)" #: application/views/club/clubswitch_modal.php:5 msgid "Switch to a Clubstation" -msgstr "" +msgstr "Schakel over naar een clubstation" #: application/views/club/clubswitch_modal.php:9 #, php-format msgid "Are you sure you want to switch to %s?" -msgstr "" +msgstr "Weet je zeker dat je wilt overschakelen naar %s?" #: application/views/club/clubswitch_modal.php:14 #: application/views/user/modals/stop_impersonate_modal.php:13 msgid "Yes, switch over!" -msgstr "" +msgstr "Ja, overschakelen!" #: application/views/club/clubswitch_modal.php:15 #: application/views/club/permissions.php:205 @@ -6190,16 +6440,16 @@ msgstr "" #: application/views/user/modals/admin_impersonate_modal.php:45 #: application/views/user/modals/stop_impersonate_modal.php:14 msgid "Cancel" -msgstr "" +msgstr "Annuleren" #: application/views/club/permissions.php:3 #, php-format msgid "Club Permissions for %s" -msgstr "" +msgstr "Clubrechten voor %s" #: application/views/club/permissions.php:4 msgid "Go back" -msgstr "" +msgstr "Ga terug" #: application/views/club/permissions.php:13 msgid "" @@ -6213,82 +6463,82 @@ msgstr "" #: application/views/club/permissions.php:14 msgid "See available Permissions" -msgstr "" +msgstr "Bekijk beschikbare machtigingen" #: application/views/club/permissions.php:19 msgid "Available Permissions" -msgstr "" +msgstr "Beschikbare machtigingen" #: application/views/club/permissions.php:26 #: application/views/eqsl/download.php:45 msgid "Action" -msgstr "" +msgstr "Actie" #: application/views/club/permissions.php:33 msgid "Log QSOs via Web GUI (live and post)" -msgstr "" +msgstr "Log QSOs via Web GUI (live en post)" #: application/views/club/permissions.php:41 msgid "Log QSOs via API" -msgstr "" +msgstr "Log QSOs via API" #: application/views/club/permissions.php:49 msgid "Edit a QSO" -msgstr "" +msgstr "Een QSO bewerken" #: application/views/club/permissions.php:54 #: application/views/club/permissions.php:72 msgid "QSO was done by the operator" -msgstr "" +msgstr "QSO werd gedaan door de operator" #: application/views/club/permissions.php:59 #: application/views/club/permissions.php:77 msgid "QSO was done by another operator" -msgstr "" +msgstr "QSO werd gedaan door een andere operator" #: application/views/club/permissions.php:67 msgid "Delete a QSO" -msgstr "" +msgstr "Verwijder een QSO" #: application/views/club/permissions.php:85 msgid "Manage Stationsetup (edit/create logbooks and locations)" -msgstr "" +msgstr "Beheer Stationsetup (bewerk/maak logboeken en locaties aan)" #: application/views/club/permissions.php:93 msgid "Manage Third-Party services" -msgstr "" +msgstr "Beheer diensten van derden" #: application/views/club/permissions.php:101 msgid "Import QSO per ADIF" -msgstr "" +msgstr "Importeer QSO per ADIF" #: application/views/club/permissions.php:110 msgid "Export QSO per ADIF" -msgstr "" +msgstr "Exporteer QSO per ADIF" #: application/views/club/permissions.php:118 msgid "User Management" -msgstr "" +msgstr "Gebruikersbeheer" #: application/views/club/permissions.php:123 msgid "Can create new users in Wavelog" -msgstr "" +msgstr "Kan nieuwe gebruikers aanmaken in Wavelog" #: application/views/club/permissions.php:128 msgid "Can edit other users in Wavelog" -msgstr "" +msgstr "Kan andere gebruikers in Wavelog bewerken" #: application/views/club/permissions.php:133 msgid "Can edit Club permissions and add/remove users" -msgstr "" +msgstr "Kan clubrechten bewerken en gebruikers toevoegen/verwijderen" #: application/views/club/permissions.php:151 msgid "Users with Permissions" -msgstr "" +msgstr "Gebruikers met machtigingen" #: application/views/club/permissions.php:161 msgid "Add new User to Club" -msgstr "" +msgstr "Nieuwe gebruiker aan de club toevoegen" #: application/views/club/permissions.php:167 #, php-format @@ -6296,12 +6546,16 @@ msgid "" "You can only add users to the %s Clubstation if they already exist on this " "Wavelog Server." msgstr "" +"Je kunt alleen gebruikers toevoegen aan de %s Clubstation als ze al bestaan " +"op deze Wavelog Server." #: application/views/club/permissions.php:168 msgid "" "If they don't exist, please ask your Wavelog Administrator to create an " "account for them." msgstr "" +"Als ze niet bestaan, vraag dan je Wavelog-beheerder om een account voor hen " +"aan te maken." #: application/views/club/permissions.php:169 msgid "" @@ -6319,27 +6573,27 @@ msgstr "Gebruiker (roepnaam of naam)" #: application/views/club/permissions.php:225 #: application/views/club/permissions.php:269 msgid "Permission" -msgstr "" +msgstr "Toestemming" #: application/views/club/permissions.php:183 msgid "Type at least 2 characters." -msgstr "" +msgstr "Typ ten minste 2 tekens." #: application/views/club/permissions.php:194 msgid "Notify the user via email" -msgstr "" +msgstr "Breng de gebruiker op de hoogte via e-mail" #: application/views/club/permissions.php:213 msgid "No users currently have access to this club station." -msgstr "" +msgstr "Momenteel heeft geen enkele gebruiker toegang tot dit clubstation." #: application/views/club/permissions.php:220 msgid "Firstname" -msgstr "" +msgstr "Voornaam" #: application/views/club/permissions.php:221 msgid "Lastname" -msgstr "" +msgstr "Achternaam" #: application/views/club/permissions.php:223 #: application/views/user/edit.php:57 application/views/user/index.php:150 @@ -6350,15 +6604,17 @@ msgstr "Gebruikersnaam" #: application/views/club/permissions.php:224 msgid "E-Mail" -msgstr "" +msgstr "E-mail" #: application/views/club/permissions.php:244 msgid "Wavelog Administrator" -msgstr "" +msgstr "Wavelog Beheerder" #: application/views/club/permissions.php:261 msgid "You can modify the users permission level for this Clubstation." msgstr "" +"Je kunt het machtigingsniveau van de gebruiker voor dit clubstation " +"aanpassen." #: application/views/club/permissions.php:268 msgid "User Callsign" @@ -6366,15 +6622,15 @@ msgstr "Gebruikersroepnaam" #: application/views/club/permissions.php:286 msgid "Notify the user via email about the change" -msgstr "" +msgstr "Stuur de gebruiker een e-mail over de wijziging" #: application/views/club/permissions.php:309 msgid "Delete User" -msgstr "" +msgstr "Verwijder gebruiker" #: application/views/club/permissions.php:316 msgid "Are you sure you want to delete this user from the club?" -msgstr "" +msgstr "Weet je zeker dat je deze gebruiker uit de club wilt verwijderen?" #: application/views/club/permissions.php:320 #, php-format @@ -6384,31 +6640,33 @@ msgstr "Roepnaam: %s" #: application/views/club/permissions.php:321 #, php-format msgid "Role: %s" -msgstr "" +msgstr "Rol: %s" #: application/views/components/hamsat/table.php:3 #: application/views/hamsat/index.php:7 +#, fuzzy msgid "Hamsat - Satellite Rovers" -msgstr "" +msgstr "Hamsat - Satellietrovers" #: application/views/components/hamsat/table.php:4 #: application/views/contestcalendar/index.php:11 #: application/views/dxcalendar/index.php:4 #: application/views/hamsat/index.php:8 msgid "This data comes from" -msgstr "" +msgstr "Deze gegevens komen van" #: application/views/components/hamsat/table.php:11 +#, fuzzy msgid "Show All Passes" -msgstr "" +msgstr "Toon alle passages" #: application/views/components/hamsat/table.php:14 msgid "Private feed key empty. Please set the feed key in your profile." -msgstr "" +msgstr "Privé feed-sleutel is leeg. Stel de feed-sleutel in je profiel in." #: application/views/components/hamsat/table.php:19 msgid "No upcoming activations found. Please check back later." -msgstr "" +msgstr "Geen aankomende activaties gevonden. Kom later terug." #: application/views/components/hamsat/table.php:28 #: application/views/contesting/index.php:228 @@ -6424,29 +6682,29 @@ msgstr "Opmerking" #: application/views/components/hamsat/table.php:31 #: application/views/hamsat/index.php:34 msgid "Gridsquare(s)" -msgstr "" +msgstr "Gridsquare(s)" #: application/views/components/hamsat/table.php:32 #: application/views/hamsat/index.php:35 msgid "Workable" -msgstr "" +msgstr "Werkbaar" #: application/views/components/hamsat/table.php:134 msgctxt "Hamsat - Track Satellites" msgid "Track" -msgstr "" +msgstr "Volg" #: application/views/components/hamsat/table.php:146 msgid "Sked" -msgstr "" +msgstr "Sked" #: application/views/components/radio_display_table.php:5 msgid "Radio Status" -msgstr "" +msgstr "Radiostatus" #: application/views/contestcalendar/index.php:16 msgid "No Contests" -msgstr "" +msgstr "Geen Contests" #: application/views/contestcalendar/index.php:21 #: application/views/logbookadvanced/edit.php:24 @@ -6456,23 +6714,24 @@ msgstr "" #: application/views/qso/edit_ajax.php:41 #: application/views/simplefle/index.php:83 msgid "Contest" -msgstr "" +msgstr "Contest" #: application/views/contestcalendar/index.php:22 msgid "Start" -msgstr "" +msgstr "Begin" #: application/views/contestcalendar/index.php:23 msgid "End" -msgstr "" +msgstr "Einde" #: application/views/contestcalendar/index.php:24 +#, fuzzy msgid "Link" -msgstr "" +msgstr "Link" #: application/views/contestcalendar/index.php:33 msgid "Show Details" -msgstr "" +msgstr "Details weergeven" #: application/views/contestcalendar/index.php:45 #: application/views/dashboard/index.php:336 @@ -6480,32 +6739,38 @@ msgstr "" #: application/views/dashboard/index.php:384 #: application/views/dashboard/index.php:405 msgid "Today" -msgstr "" +msgstr "Vandaag" #: application/views/contestcalendar/index.php:55 msgid "Weekend" -msgstr "" +msgstr "Weekend" #: application/views/contestcalendar/index.php:66 msgid "Next Week" -msgstr "" +msgstr "Volgende week" #: application/views/contesting/add.php:16 +#, fuzzy msgid "" "Using the contest list, you can control which Contests are shown when " "logging QSOs in a contest." msgstr "" +"Met de contest-lijst kun je bepalen welke contesten worden getoond bij het " +"loggen van QSOs in een contest." #: application/views/contesting/add.php:19 +#, fuzzy msgid "" "Active contests will be shown in the Contest Name drop-down, while inactive " "contests will be hidden and cannot be selected." msgstr "" +"Actieve contesten worden weergegeven in de keuzelijst contest naam, terwijl " +"inactieve contesten verborgen zijn en niet kunnen worden geselecteerd." #: application/views/contesting/add.php:26 #: application/views/contesting/create.php:30 msgid "ADIF Name" -msgstr "" +msgstr "ADIF-naam" #: application/views/contesting/add.php:27 #: application/views/contesting/add.php:41 @@ -6517,62 +6782,65 @@ msgstr "" #: application/views/mode/edit.php:57 application/views/mode/edit.php:60 #: application/views/mode/index.php:8 application/views/mode/index.php:55 msgid "Active" -msgstr "" +msgstr "Actief" #: application/views/contesting/add.php:39 #: application/views/contesting/add.php:44 #: application/views/contesting/edit.php:49 msgid "Not Active" -msgstr "" +msgstr "Niet actief" #: application/views/contesting/add.php:40 #: application/views/contesting/add.php:49 application/views/mode/index.php:7 #: application/views/mode/index.php:60 msgid "Activate" -msgstr "" +msgstr "Activeren" #: application/views/contesting/add.php:42 #: application/views/contesting/add.php:47 application/views/mode/index.php:6 #: application/views/mode/index.php:58 msgid "Deactivate" -msgstr "" +msgstr "Deactiveren" #: application/views/contesting/add.php:54 msgid "DANGER!" -msgstr "" +msgstr "GEVAAR!" #: application/views/contesting/add.php:55 msgid "Warning! Are you sure you want to delete the following contest: " msgstr "" +"Waarschuwing! Weet je zeker dat je de volgende wedstrijd wilt verwijderen: " #: application/views/contesting/add.php:56 +#, fuzzy msgid "Warning! Are you sure you want to activate all contests?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle contesten wilt activeren?" #: application/views/contesting/add.php:57 +#, fuzzy msgid "Warning! Are you sure you want to deactivate all contests?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je alle contesten wilt deactiveren?" #: application/views/contesting/add.php:73 #: application/views/contesting/add.php:76 msgid "Add a Contest" -msgstr "" +msgstr "Voeg een contest toe" #: application/views/contesting/create.php:26 #: application/views/contesting/edit.php:33 msgid "Name of the Contest" -msgstr "" +msgstr "Naam van de contest" #: application/views/contesting/create.php:32 #: application/views/contesting/edit.php:39 msgid "Name of Contest in ADIF-specification" -msgstr "" +msgstr "Naam van de contest in ADIF-specificatie" #: application/views/contesting/create.php:35 #: application/views/station_profile/create.php:305 #: application/views/station_profile/edit.php:55 msgid "Create" -msgstr "" +msgstr "Creëren" #: application/views/contesting/edit.php:31 #: application/views/contesting/index.php:29 @@ -6583,15 +6851,17 @@ msgstr "Contest Naam" #: application/views/contesting/edit.php:37 msgid "Contest ADIF Name" -msgstr "" +msgstr "Contest ADIF Naam" #: application/views/contesting/edit.php:52 msgid "Set to active if to be listed in Contest-list" -msgstr "" +msgstr "Instellen op actief als het in de contest-lijst moet worden opgenomen" #: application/views/contesting/index.php:2 msgid "You need to start a new session before you can change the contest name!" msgstr "" +"Je moet een nieuwe sessie starten voordat je de naam van de contest kunt " +"wijzigen!" #: application/views/contesting/index.php:6 msgid "Start new Contest Session" @@ -6603,7 +6873,7 @@ msgstr "Soort uitwisseling" #: application/views/contesting/index.php:20 msgid "Exchange" -msgstr "" +msgstr "Uitwisseling" #: application/views/contesting/index.php:22 msgid "Serial" @@ -6611,15 +6881,15 @@ msgstr "Volgnummer" #: application/views/contesting/index.php:23 msgid "Serial + Exchange" -msgstr "" +msgstr "Serienummer + Uitwisseling" #: application/views/contesting/index.php:24 msgid "Serial + Gridsquare" -msgstr "" +msgstr "Serienummer + Gridsquare" #: application/views/contesting/index.php:25 msgid "Serial + Gridsquare + Exchange" -msgstr "" +msgstr "Serienummer + Gridsquare + Uitwisseling" #: application/views/contesting/index.php:40 #: application/views/operator/index.php:5 @@ -6630,36 +6900,38 @@ msgstr "Operator roepnaam" #: application/views/contesting/index.php:45 #: application/views/contesting/index.php:50 msgid "More Settings" -msgstr "" +msgstr "Meer instellingen" #: application/views/contesting/index.php:54 msgid "Copy received exchange to" -msgstr "" +msgstr "Kopieer ontvangen uitwisseling naar" #: application/views/contesting/index.php:56 msgid "Exchange is only copied if it is matching rules for the selected field!" msgstr "" +"Uitwisseling wordt alleen gekopieerd als het voldoet aan de regels voor het " +"geselecteerde veld!" #: application/views/contesting/index.php:60 msgid "Age" -msgstr "" +msgstr "Leeftijd" #: application/views/contesting/index.php:62 msgid "RX Power (W)" -msgstr "" +msgstr "RX Vermogen (W)" #: application/views/contesting/index.php:63 msgid "Locator" -msgstr "" +msgstr "Locator" #: application/views/contesting/index.php:64 #: application/views/qso/edit_ajax.php:177 msgid "QTH" -msgstr "" +msgstr "QTH" #: application/views/contesting/index.php:69 msgid "Sequence of Exchanges" -msgstr "" +msgstr "Reeks van Uitwisselingen" #: application/views/contesting/index.php:72 msgid "" @@ -6675,7 +6947,7 @@ msgstr "" #: application/views/contesting/index.php:82 msgctxt "Keep the translation short!" msgid "Exchange" -msgstr "" +msgstr "Uitwisseling" #: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 @@ -6683,9 +6955,10 @@ msgstr "" #: application/views/contesting/index.php:80 #: application/views/contesting/index.php:81 #: application/views/contesting/index.php:82 +#, fuzzy msgctxt "Keep the translation short!" msgid "Grid" -msgstr "" +msgstr "Vak" #: application/views/contesting/index.php:77 #: application/views/contesting/index.php:78 @@ -6695,17 +6968,18 @@ msgstr "" #: application/views/contesting/index.php:82 msgctxt "Keep the translation short!" msgid "Serial" -msgstr "" +msgstr "Serienummer" #: application/views/contesting/index.php:181 #: application/views/contesting/index.php:264 #: application/views/qso/edit_ajax.php:674 msgid "Serial (S)" -msgstr "" +msgstr "Serienummer (S)" #: application/views/contesting/index.php:186 +#, fuzzy msgid "Gridsquare (S)" -msgstr "" +msgstr "Gridsquare (S)" #: application/views/contesting/index.php:191 #: application/views/contesting/index.php:262 @@ -6716,11 +6990,12 @@ msgstr "Verz (S)" #: application/views/contesting/index.php:265 #: application/views/qso/edit_ajax.php:669 msgid "Serial (R)" -msgstr "" +msgstr "Serienummer (R)" #: application/views/contesting/index.php:210 +#, fuzzy msgid "Gridsquare (R)" -msgstr "" +msgstr "Gridsquare (R)" #: application/views/contesting/index.php:215 #: application/views/contesting/index.php:263 @@ -6746,17 +7021,20 @@ msgstr "Contest Logboek" #: application/views/contesting/index.php:267 #: application/views/qso/edit_ajax.php:165 +#, fuzzy msgid "VUCC Gridsquare" -msgstr "" +msgstr "VUCC Gridsquare" #: application/views/continents/index.php:63 #: application/views/statistics/index.php:19 +#, fuzzy msgid "# of QSO's worked" -msgstr "" +msgstr "Aantal QSO's gewerkt" #: application/views/cron/edit.php:11 +#, fuzzy msgid "Identifier" -msgstr "" +msgstr "Identificator" #: application/views/cron/edit.php:22 #: application/views/options/appearance.php:56 @@ -6771,117 +7049,128 @@ msgstr "" #: application/views/stationsetup/stationsetup.php:73 #: application/views/user/edit.php:472 application/views/user/edit.php:481 msgid "Enabled" -msgstr "" +msgstr "Ingeschakeld" #: application/views/cron/edit.php:36 application/views/cron/index.php:55 msgid "Intervall" -msgstr "" +msgstr "Interval" #: application/views/cron/edit.php:38 msgid "Choose a preset from the dropdown" -msgstr "" +msgstr "Kies een voorinstelling uit de keuzelijst" #: application/views/cron/edit.php:43 msgid "Every 5 Minutes" -msgstr "" +msgstr "Elke 5 minuten" #: application/views/cron/edit.php:44 msgid "Every 15 Minutes" -msgstr "" +msgstr "Elke 15 minuten" #: application/views/cron/edit.php:45 msgid "Every Hour" -msgstr "" +msgstr "Elk uur" #: application/views/cron/edit.php:46 msgid "Every 2 Hours" -msgstr "" +msgstr "Elke 2 uur" #: application/views/cron/edit.php:47 msgid "Every Day at Midnight" -msgstr "" +msgstr "Elke dag om middernacht" #: application/views/cron/edit.php:48 msgid "Every Monday at 03:00" -msgstr "" +msgstr "Elke maandag om 03:00" #: application/views/cron/edit.php:49 msgid "First Day of Every Month at midnight" -msgstr "" +msgstr "Eerste dag van elke maand om middernacht" #: application/views/cron/edit.php:50 msgid "Every 2 Months at 02:00" -msgstr "" +msgstr "Elke 2 maanden om 02:00" #: application/views/cron/edit.php:62 +#, fuzzy msgid "OR" -msgstr "" +msgstr "OF" #: application/views/cron/edit.php:63 msgid "Enter your own Cron Expression" -msgstr "" +msgstr "Voer je eigen Cron-expressie in" #: application/views/cron/index.php:9 msgid "How it works" -msgstr "" +msgstr "Hoe het werkt" #: application/views/cron/index.php:15 msgid "" "The Cron Manager assists the administrator in managing cron jobs without " "requiring CLI access." msgstr "" +"De Cron Manager helpt de beheerder bij het beheren van cron-jobs zonder dat " +"CLI-toegang nodig is." #: application/views/cron/index.php:19 msgid "" "To execute cron jobs based on the data below, remove all old cron jobs and " "create a new one:" msgstr "" +"Om cron-jobs uit te voeren op basis van de onderstaande gegevens, verwijder " +"alle oude cron-jobs en maak een nieuwe aan:" #: application/views/cron/index.php:29 application/views/cron/index.php:33 msgid "Status Master-Cron:" -msgstr "" +msgstr "Status Master-Cron:" #: application/views/cron/index.php:33 msgctxt "PHP Version" msgid "Min. Version is" -msgstr "" +msgstr "Min. versie is" #: application/views/cron/index.php:33 msgid "PHP Version not supported." -msgstr "" +msgstr "PHP-versie niet ondersteund." #: application/views/cron/index.php:43 msgid "Cron List" -msgstr "" +msgstr "Cronlijst" #: application/views/cron/index.php:52 #: application/views/stationsetup/stationsetup.php:121 msgid "ID" -msgstr "" +msgstr "ID" #: application/views/cron/index.php:56 +#, fuzzy msgid "Last Run" -msgstr "" +msgstr "Laatste run" #: application/views/cron/index.php:57 +#, fuzzy msgid "Next Run" -msgstr "" +msgstr "Volgende run" #: application/views/cron/index.php:102 msgid "Your Mastercron isn't running." -msgstr "" +msgstr "Je Mastercron draait niet." #: application/views/cron/index.php:103 msgid "" "Copy the cron above to a external cron service or into your server's cron to " "use this cron manager." msgstr "" +"Kopieer de cron hierboven naar een externe cron-service of naar de cron van " +"je server om deze cron-manager te gebruiken." #: application/views/cron/index.php:104 msgid "" "On a basic linux server with shell access use this command to edit your " "crons:" msgstr "" +"Gebruik dit commando op een basis Linux-server met shell-toegang om je crons " +"te bewerken:" #: application/views/cron/index.php:111 #, php-format @@ -6889,14 +7178,15 @@ msgid "" "You need to upgrade your PHP version. Minimum version is %s. Your Version is " "%s" msgstr "" +"Je moet je PHP-versie upgraden. De minimale versie is %s. Jouw versie is %s" #: application/views/csv/index.php:7 msgid "Export your logbook for SOTA uploads." -msgstr "" +msgstr "Exporteer je logboek voor SOTA-uploads." #: application/views/csv/index.php:11 msgid "Only QSOs with SOTA information will be exported!" -msgstr "" +msgstr "Alleen QSOs met SOTA-informatie worden geëxporteerd!" #: application/views/csv/index.php:92 application/views/dxatlas/index.php:92 #: application/views/eqsl/download.php:43 @@ -6907,61 +7197,65 @@ msgstr "Propagattie Mode" #: application/views/dashboard/index.php:5 msgid "RSTS" -msgstr "" +msgstr "RSTS" #: application/views/dashboard/index.php:6 msgid "RSTR" -msgstr "" +msgstr "RSTR" #: application/views/dashboard/index.php:111 msgid "" "You need to upgrade your PHP version. Minimum version is 7.4. Your version is" msgstr "" +"Je moet je PHP-versie upgraden. De minimale versie is 7.4. Jouw versie is" #: application/views/dashboard/index.php:117 #, php-format msgctxt "Dashboard Warning" msgid "A new version of Wavelog has been published. See: %s." -msgstr "" +msgstr "Een nieuwe versie van Wavelog is gepubliceerd. Zie: %s." #: application/views/dashboard/index.php:125 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You need to update country files! Click %shere%s to do it." -msgstr "" +msgstr "Je moet de landbestanden bijwerken! Klik %shier%s om het te doen." #: application/views/dashboard/index.php:133 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You have no station locations. Click %shere%s to do it." -msgstr "" +msgstr "Je hebt geen stationlocaties. Klik %shier%s om het te doen." #: application/views/dashboard/index.php:141 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You have no station logbook. Click %shere%s to do it." -msgstr "" +msgstr "Je hebt geen station logboek. Klik %shier%s om het te doen." #: application/views/dashboard/index.php:149 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "" "Your active Station Location isn't linked to your Logbook. Click %shere%s to " "do it." msgstr "" +"Je actieve stationlocatie is niet gekoppeld aan je logboek. Klik %shier%s om " +"het te doen." #: application/views/dashboard/index.php:157 -#, php-format +#, fuzzy, php-format msgctxt "Dashboard Warning" msgid "You have no station linked to your Logbook. Click %shere%s to do it." msgstr "" +"Je hebt geen station gekoppeld aan je logboek. Klik %shier%s om dit te doen." #: application/views/dashboard/index.php:166 #, php-format msgid "You have had %d QSO today" msgid_plural "You have had %d QSOs today" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Je hebt vandaag %d QSO gemaakt" +msgstr[1] "Je hebt vandaag %d QSO's gemaakt" #: application/views/dashboard/index.php:172 msgid "You have made no QSOs today; time to turn on the radio!" @@ -6976,18 +7270,21 @@ msgid "" "You have themes without defined theme mode. Please ask the admin to edit the " "themes." msgstr "" +"Je hebt thema's zonder gedefinieerde themamodus. Vraag de beheerder om de " +"thema's te bewerken." #: application/views/dashboard/index.php:193 #, php-format msgctxt "LoTW Warning" msgid "At least one of your %sLoTW certificates%s is expired!" -msgstr "" +msgstr "Ten minste één van je %sLoTW-certificaten%s is verlopen!" #: application/views/dashboard/index.php:197 #, php-format msgctxt "LoTW Warning" msgid "At least one of your %sLoTW certificates%s is about to expire!" msgstr "" +"Ten minste een van je %sLoTW-certificaten%s staat op het punt te verlopen!" #: application/views/dashboard/index.php:287 #: application/views/visitor/index.php:241 @@ -6997,7 +7294,7 @@ msgstr "QSOs overzicht" #: application/views/dashboard/index.php:310 #: application/views/visitor/index.php:262 msgid "DXCCs Breakdown" -msgstr "" +msgstr "DXCC's overzicht" #: application/views/dashboard/index.php:327 #: application/views/visitor/index.php:279 @@ -7036,7 +7333,7 @@ msgstr "Nodig" #: src/QSLManager/QSO.php:588 src/QSLManager/QSO.php:649 #: src/QSLManager/QSO.php:716 msgid "Sent" -msgstr "" +msgstr "Verzonden" #: application/views/dashboard/index.php:346 #: application/views/dashboard/index.php:373 @@ -7111,82 +7408,82 @@ msgstr "Aangevraagd" #: application/views/dashboard/index.php:362 msgctxt "Probably no translation needed as this is a name." msgid "Logbook of the World" -msgstr "" +msgstr "Logbook of The World" #: application/views/dashboard/index.php:425 msgid "VUCC-Grids" -msgstr "" +msgstr "VUCC-Grids" #: application/views/dayswithqso/index.php:3 msgid "Number of QSOs for this day of the week" -msgstr "" +msgstr "Aantal QSO's voor deze dag van de week" #: application/views/dayswithqso/index.php:17 msgid "Days of the week" -msgstr "" +msgstr "Dagen van de week" #: application/views/dayswithqso/index.php:20 msgid "Months of the year" -msgstr "" +msgstr "Maanden van het jaar" #: application/views/dayswithqso/index.php:23 msgid "Streaks" -msgstr "" +msgstr "Reeks" #: application/views/dayswithqso/index.php:26 msgid "QSOs of Year" -msgstr "" +msgstr "QSOs van het jaar" #: application/views/dayswithqso/index.php:34 msgid "Number of days with QSOs each year" -msgstr "" +msgstr "Aantal dagen met QSOs elk jaar" #: application/views/dayswithqso/index.php:50 msgid "Days" -msgstr "" +msgstr "Dagen" #: application/views/dayswithqso/index.php:66 msgid "QSOs breakdown by day of the week" -msgstr "" +msgstr "QSOs per dag van de week" #: application/views/dayswithqso/index.php:72 msgid "QSOs breakdown by month of the year" -msgstr "" +msgstr "QSOs per maand van het jaar" #: application/views/dayswithqso/index.php:86 msgid "QSOs per Year" -msgstr "" +msgstr "QSOs per jaar" #: application/views/dayswithqso/index.php:94 msgid "Less" -msgstr "" +msgstr "Minder" #: application/views/dayswithqso/index.php:99 msgid "More" -msgstr "" +msgstr "Meer" #: application/views/dayswithqso/index.php:101 msgid "Calendar with QSOs" -msgstr "" +msgstr "Kalender met QSO's" #: application/views/dayswithqso/index.php:110 msgid "Longest streak with QSOs in the log" -msgstr "" +msgstr "Langste reeks met QSOs in het logboek" #: application/views/dayswithqso/index.php:111 msgid "A maximum of the 10 longest streaks are shown!" -msgstr "" +msgstr "Er worden maximaal 10 van de langste reeksen getoond!" #: application/views/dayswithqso/index.php:129 msgid "Streak (continuous days with QSOs)" -msgstr "" +msgstr "Reeks (aaneengesloten dagen met QSOs)" #: application/views/dayswithqso/index.php:130 #: application/views/dayswithqso/index.php:158 #: application/views/dayswithqso/index.php:180 #: application/views/lotw/satupdate.php:7 msgid "Start Date" -msgstr "" +msgstr "Startdatum" #: application/views/dayswithqso/index.php:131 #: application/views/dayswithqso/index.php:159 @@ -7194,35 +7491,37 @@ msgstr "" #: application/views/lotw/satupdate.php:7 #: application/views/timeline/index.php:202 msgid "End Date" -msgstr "" +msgstr "Einddatum" #: application/views/dayswithqso/index.php:147 msgctxt "Days with QSOs" msgid "No streak found!" -msgstr "" +msgstr "Geen reeks gevonden!" #: application/views/dayswithqso/index.php:151 msgid "Current streak with QSOs in the log" -msgstr "" +msgstr "Huidige reeks met QSOs in het logboek" #: application/views/dayswithqso/index.php:157 #: application/views/dayswithqso/index.php:179 msgid "Current streak (continuous days with QSOs)" -msgstr "" +msgstr "Huidige reeks (aaneengesloten dagen met QSOs)" #: application/views/dayswithqso/index.php:174 msgid "" "If you make a QSO today, you can continue to extend your streak... or else " "your current streak will be broken!" msgstr "" +"Als je vandaag een QSO maakt, kun je je reeks blijven verlengen... anders " +"wordt je huidige reeks verbroken!" #: application/views/dayswithqso/index.php:195 msgid "No current streak found!" -msgstr "" +msgstr "Geen huidige reeks gevonden!" #: application/views/debug/index.php:23 msgid "Wavelog Information" -msgstr "" +msgstr "Wavelog Informatie" #: application/views/debug/index.php:27 msgid "Version" @@ -7230,11 +7529,11 @@ msgstr "Versie" #: application/views/debug/index.php:30 msgid "Latest Version" -msgstr "" +msgstr "Nieuwste versie" #: application/views/debug/index.php:36 msgid "Latest Release" -msgstr "" +msgstr "Laatste release" #: application/views/debug/index.php:41 msgid "Language" @@ -7242,19 +7541,19 @@ msgstr "Taal" #: application/views/debug/index.php:45 msgid "Base URL" -msgstr "" +msgstr "Basis-URL" #: application/views/debug/index.php:49 msgid "Migration" -msgstr "" +msgstr "Migratie" #: application/views/debug/index.php:50 msgid "There is something wrong with your Migration in Database!" -msgstr "" +msgstr "Er is iets mis met je migratie in de database!" #: application/views/debug/index.php:55 msgid "Migration is outdated and locked!" -msgstr "" +msgstr "Migratie is verouderd en vergrendeld!" #: application/views/debug/index.php:56 #, php-format @@ -7264,77 +7563,84 @@ msgid "" "locked due to a previously failed process. Delete the file %s to force the " "migration to run again." msgstr "" +"De huidige migratie is niet de versie die het zou moeten zijn. Herlaad deze " +"pagina na %s seconden. Als deze waarschuwing aanhoudt, is je migratie " +"waarschijnlijk vergrendeld door een eerder mislukt proces. Verwijder het " +"bestand %s om de migratie opnieuw te forceren." #: application/views/debug/index.php:57 #, php-format msgid "Check this wiki article %shere%s for more information." -msgstr "" +msgstr "Bekijk dit wiki-artikel %shier%s voor meer informatie." #: application/views/debug/index.php:58 #, php-format msgid "Current migration is %s" -msgstr "" +msgstr "Huidige migratie is %s" #: application/views/debug/index.php:59 #, php-format msgid "Migration should be %s" -msgstr "" +msgstr "Migratie zou %s moeten zijn" #: application/views/debug/index.php:64 msgid "Environment" -msgstr "" +msgstr "Omgeving" #: application/views/debug/index.php:68 msgid "System Time" -msgstr "" +msgstr "Systeemtijd" #: application/views/debug/index.php:76 +#, fuzzy msgid "Total QSO on this instance" -msgstr "" +msgstr "Totaal aantal QSO's in dit geval" #: application/views/debug/index.php:80 msgid "Total User" -msgstr "" +msgstr "Totaal aantal gebruikers" #: application/views/debug/index.php:81 application/views/user/index.php:27 msgid "User" msgid_plural "Users" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Gebruiker" +msgstr[1] "Gebruikers" #: application/views/debug/index.php:88 msgid "Server Information" -msgstr "" +msgstr "Serverinformatie" #: application/views/debug/index.php:92 msgid "Server Software" -msgstr "" +msgstr "Serversoftware" #: application/views/debug/index.php:97 msgid "PHP Version" -msgstr "" +msgstr "PHP-versie" #: application/views/debug/index.php:103 msgid "Deprecated" -msgstr "" +msgstr "Verouderd" #: application/views/debug/index.php:110 msgid "MySQL Version" -msgstr "" +msgstr "MySQL-versie" #: application/views/debug/index.php:114 msgid "Codeigniter Version" -msgstr "" +msgstr "Codeigniter-versie" #: application/views/debug/index.php:122 msgid "Folder Permissions" -msgstr "" +msgstr "Mapmachtigingen" #: application/views/debug/index.php:124 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" +"Dit verifieert dat de mappen die door Wavelog worden gebruikt lees- en " +"schrijfrechten hebben via PHP." #: application/views/debug/index.php:130 application/views/debug/index.php:141 #: application/views/debug/index.php:152 application/views/debug/index.php:163 @@ -7350,43 +7656,46 @@ msgstr "Mislukt" #: application/views/debug/index.php:187 msgid "Config Maintenance" -msgstr "" +msgstr "Configuratieonderhoud" #: application/views/debug/index.php:193 msgid "Your authentication mode is outdated and possibly unsafe" -msgstr "" +msgstr "Je authenticatiemodus is verouderd en mogelijk onveilig" #: application/views/debug/index.php:195 application/views/debug/index.php:212 #, php-format msgid "Please edit your %s File:" -msgstr "" +msgstr "Bewerk je %s bestand:" #: application/views/debug/index.php:196 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" +"Ga naar je application/config map en vergelijk config.sample.php met je " +"config.php" #: application/views/debug/index.php:197 #, php-format msgid "Change %s to the value %s (Strongly recommended)" -msgstr "" +msgstr "Wijzig %s naar de waarde %s (Sterk aanbevolen)" #: application/views/debug/index.php:203 msgid "Authentication Mode is set correctly" -msgstr "" +msgstr "De authenticatiemodus is correct ingesteld" #: application/views/debug/index.php:203 application/views/debug/index.php:220 msgid "Ok" -msgstr "" +msgstr "Oké" #: application/views/debug/index.php:210 msgid "You use the default encryption key. You should change it!" msgstr "" +"Je gebruikt de standaard encryptiesleutel. Je zou deze moeten veranderen!" #: application/views/debug/index.php:213 msgid "This will also enable the 'Keep me logged in' feature." -msgstr "" +msgstr "Hierdoor wordt ook de functie 'Houd me ingelogd' ingeschakeld." #: application/views/debug/index.php:214 #, php-format @@ -7394,24 +7703,28 @@ msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" +"Wijzig de waarde van %s naar een nieuwe encryptiesleutel anders dan " +"'flossie1234555541'. Kies een veilig en lang wachtwoord. (Sterk aanbevolen)" #: application/views/debug/index.php:220 msgid "You do not use the default encryption key" -msgstr "" +msgstr "Je gebruikt de standaard encryptiesleutel niet" #: application/views/debug/index.php:227 msgid "Migrate Userdata" -msgstr "" +msgstr "Gebruikersgegevens migreren" #: application/views/debug/index.php:229 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" +"Hier kun je bestaande QSL-kaarten en eQSL-kaarten migreren naar de nieuwe " +"gebruikersgegevensdirectory." #: application/views/debug/index.php:242 msgid "Modules" -msgstr "" +msgstr "Modules" #: application/views/debug/index.php:248 application/views/debug/index.php:259 #: application/views/debug/index.php:270 application/views/debug/index.php:281 @@ -7427,52 +7740,52 @@ msgstr "Niet geïnstalleerd" #: application/views/debug/index.php:441 msgid "Git Information" -msgstr "" +msgstr "Git Informatie" #: application/views/debug/index.php:445 msgid "Branch" -msgstr "" +msgstr "Branch" #: application/views/debug/index.php:456 application/views/debug/index.php:467 #: application/views/debug/index.php:477 msgid "n/a" -msgstr "" +msgstr "n.v.t." #: application/views/debug/index.php:462 msgid "Commit" -msgstr "" +msgstr "Commit" #: application/views/debug/index.php:472 msgid "Tag" -msgstr "" +msgstr "Tag" #: application/views/debug/index.php:482 msgid "Last Fetch" -msgstr "" +msgstr "Laatste Fetch" #: application/views/debug/index.php:494 msgid "Check for new version" -msgstr "" +msgstr "Controleer op nieuwe versie" #: application/views/debug/index.php:495 msgid "Update now" -msgstr "" +msgstr "Nu bijwerken" #: application/views/debug/index.php:513 msgid "File download date" -msgstr "" +msgstr "Downloaddatum bestand" #: application/views/debug/index.php:517 msgid "File" -msgstr "" +msgstr "Bestand" #: application/views/debug/index.php:518 msgid "Last update" -msgstr "" +msgstr "Laatste update" #: application/views/debug/index.php:522 msgid "DXCC update from Club Log" -msgstr "" +msgstr "DXCC-update van Club Log" #: application/views/debug/index.php:524 application/views/debug/index.php:530 #: application/views/debug/index.php:535 application/views/debug/index.php:540 @@ -7480,68 +7793,70 @@ msgstr "" #: application/views/debug/index.php:555 application/views/debug/index.php:560 #: application/views/station_profile/edit.php:49 msgid "Update" -msgstr "" +msgstr "Bijwerken" #: application/views/debug/index.php:528 msgid "DOK file download" -msgstr "" +msgstr "DOK-bestand downloaden" #: application/views/debug/index.php:533 msgid "LoTW users download" -msgstr "" +msgstr "LoTW-gebruikers downloaden" #: application/views/debug/index.php:538 msgid "POTA file download" -msgstr "" +msgstr "POTA-bestandsdownload" #: application/views/debug/index.php:543 msgid "SCP file download" -msgstr "" +msgstr "SCP-bestand downloaden" #: application/views/debug/index.php:548 msgid "SOTA file download" -msgstr "" +msgstr "SOTA-bestand downloaden" #: application/views/debug/index.php:553 msgid "WWFF file download" -msgstr "" +msgstr "WWFF-bestandsdownload" #: application/views/debug/index.php:558 msgid "TLE update" -msgstr "" +msgstr "TLE-update" #: application/views/debug/index.php:567 msgid "QSO-DB Maintenance" -msgstr "" +msgstr "QSO-DB Onderhoud" #: application/views/debug/index.php:571 #, 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] "" -msgstr[1] "" +msgstr[0] "De database bevat %d QSO zonder een station-profiel (locatie)" +msgstr[1] "De database bevat %d QSO's zonder een station-profiel (locatie)" #: application/views/debug/index.php:609 +#, fuzzy msgid "Please mark QSOs and reassign them to an existing station location:" -msgstr "" +msgstr "Markeer QSOs en wijs ze opnieuw toe aan een bestaande stationlocatie:" #: application/views/debug/index.php:617 msgctxt "Stationlocation" msgid "Target Location" -msgstr "" +msgstr "Doellocatie" #: application/views/debug/index.php:618 application/views/debug/index.php:629 msgid "Reassign" -msgstr "" +msgstr "Opnieuw toewijzen" #: application/views/debug/index.php:638 +#, fuzzy msgid "Every QSO in your Database is assigned to a station-profile (location)" -msgstr "" +msgstr "Elke QSO in je database is toegewezen aan een station-profiel (locatie)" #: application/views/debug/index.php:638 msgid "Everything ok" -msgstr "" +msgstr "Alles oké" #: application/views/debug/index.php:663 msgid "Albanian" @@ -7648,35 +7963,40 @@ msgid "Turkish" msgstr "Turks" #: application/views/distancerecords/index.php:4 +#, fuzzy msgid "This page lists distance records per satellite based on gridsquares." msgstr "" +"Deze pagina vermeldt afstandsrecords per satelliet op basis van gridsquares." #: application/views/distancerecords/index.php:20 +#, fuzzy msgid "My Gridsquare" -msgstr "" +msgstr "Mijn Gridsquare" #: application/views/distancerecords/index.php:21 +#, fuzzy msgid "DX Gridsquare" -msgstr "" +msgstr "DX Gridsquare" #: application/views/distances/index.php:7 #: application/views/interface_assets/footer.php:31 #: application/views/simplefle/index.php:71 msgid "QSO Data" -msgstr "" +msgstr "QSO-gegevens" #: application/views/distances/index.php:9 -#, php-format +#, fuzzy, php-format msgid "contacts were plotted.%s Your furthest contact was with" -msgstr "" +msgstr "contacten werden uitgezet. %s Je verste contact was met" #: application/views/distances/index.php:10 +#, fuzzy msgid "in gridsquare" -msgstr "" +msgstr "in gridsquare" #: application/views/distances/index.php:11 msgid "the distance was" -msgstr "" +msgstr "de afstand was" #: application/views/distances/index.php:14 msgid "Callsign(s) worked (max 5 shown)" @@ -7684,63 +8004,68 @@ msgstr "Opgeroepen roepna(a)m(en) (maximaal 5 getoond)" #: application/views/distances/index.php:19 msgid "Band selection" -msgstr "" +msgstr "Bandselectie" #: application/views/dxatlas/index.php:3 msgid "DX Atlas Export" -msgstr "" +msgstr "DX Atlas Exporteren" #: application/views/dxatlas/index.php:7 +#, fuzzy msgid "" "Export your logbook for use in DX Atlas to display worked / confirmed " "gridsquares." msgstr "" +"Exporteer je logboek voor gebruik in DX Atlas om bewerkte/bevestigde " +"gridsquares weer te geven." #: application/views/dxatlas/index.php:11 application/views/kml/index.php:11 +#, fuzzy msgid "Only QSOs with a gridsquare defined will be exported!" -msgstr "" +msgstr "Alleen QSO's met een gedefinieerd gridsquare worden geëxporteerd!" #: application/views/dxcalendar/index.php:9 msgid "Date from" -msgstr "" +msgstr "Datum van" #: application/views/dxcalendar/index.php:10 msgid "Date to" -msgstr "" +msgstr "Datum tot" #: application/views/dxcalendar/index.php:13 #: application/views/view_log/qso.php:489 msgid "QSL Info" -msgstr "" +msgstr "QSL-info" #: application/views/dxcalendar/index.php:14 msgid "Source" -msgstr "" +msgstr "Bron" #: application/views/email/admin_reset_password.php:3 #: application/views/email/forgot_password.php:3 msgid "Wavelog Account Password Reset" -msgstr "" +msgstr "Wachtwoord opnieuw instellen voor Wavelog-account" #: application/views/email/admin_reset_password.php:5 #, php-format msgid "Hello %s" -msgstr "" +msgstr "Hallo %s" #: application/views/email/admin_reset_password.php:7 msgid "An admin initiated a password reset for your Wavelog account." msgstr "" +"Een beheerder heeft een wachtwoordreset voor je Wavelog-account gestart." #: application/views/email/admin_reset_password.php:9 #, php-format msgid "Your username is: %s" -msgstr "" +msgstr "Je gebruikersnaam is: %s" #: application/views/email/admin_reset_password.php:11 #: application/views/email/forgot_password.php:11 #, php-format msgid "Click here to reset your password: %s" -msgstr "" +msgstr "Klik hier om je wachtwoord opnieuw in te stellen: %s" #: application/views/email/admin_reset_password.php:13 msgid "" @@ -7751,11 +8076,17 @@ msgid "" "\n" "Wavelog" msgstr "" +"Als je geen wachtwoordreset hebt aangevraagd, negeer deze e-mail dan en " +"praat met een beheerder van je Wavelog-instantie.\n" +"\n" +"Met vriendelijke groet,\n" +"\n" +"Wavelog" #: application/views/email/club/modified_member.php:3 #, php-format msgid "Your permission level for Clubstation %s has been changed" -msgstr "" +msgstr "Je machtigingsniveau voor Clubstation %s is gewijzigd" #: application/views/email/club/modified_member.php:5 #, php-format @@ -7773,7 +8104,7 @@ msgstr "" #: application/views/email/club/modified_member.php:9 #, php-format msgid "Your new permission level is: %s" -msgstr "" +msgstr "Je nieuwe toestemmingsniveau is: %s" #: application/views/email/club/modified_member.php:11 #: application/views/email/club/new_member.php:11 @@ -7784,11 +8115,16 @@ msgid "" "\n" "Wavelog" msgstr "" +"Log in en kijk maar! \n" +"\n" +"Groeten, \n" +"\n" +"Wavelog" #: application/views/email/club/new_member.php:3 #, php-format msgid "New %s Membership on Wavelog!" -msgstr "" +msgstr "Nieuw %s lidmaatschap op Wavelog!" #: application/views/email/club/new_member.php:5 #, php-format @@ -7806,7 +8142,7 @@ msgstr "" #: application/views/email/club/new_member.php:9 #, php-format msgid "Your permission level is: %s" -msgstr "" +msgstr "Je toestemmingsniveau is: %s" #: application/views/email/forgot_password.php:5 msgid "" @@ -7814,6 +8150,10 @@ msgid "" "\n" "You or someone else has requested a password reset on your Wavelog account." msgstr "" +"Hoi,\n" +"\n" +"Jij of iemand anders heeft een verzoek ingediend om het wachtwoord van je " +"Wavelog-account opnieuw in te stellen." #: application/views/email/forgot_password.php:13 msgid "" @@ -7823,19 +8163,24 @@ msgid "" "\n" "Wavelog" msgstr "" +"Als je dit niet hebt aangevraagd, negeer het dan gewoon.\n" +"\n" +"Met vriendelijke groet,\n" +"\n" +"Wavelog" #: application/views/email/oqrs_request.php:3 #, php-format msgid "Wavelog OQRS from %s" -msgstr "" +msgstr "Wavelog OQRS van %s" #: application/views/email/oqrs_request.php:6 msgid "The user entered the following message: " -msgstr "" +msgstr "De gebruiker heeft het volgende bericht ingevoerd: " #: application/views/email/oqrs_request.php:11 msgid "The user did not enter any additional message." -msgstr "" +msgstr "De gebruiker heeft geen extra bericht ingevoerd." #: application/views/email/oqrs_request.php:14 #, php-format @@ -7844,6 +8189,9 @@ msgid "" "\n" "You got an OQRS request from %s." msgstr "" +"Hoi,\n" +"\n" +"Je hebt een OQRS-verzoek van %s ontvangen." #: application/views/email/oqrs_request.php:20 msgid "" @@ -7853,10 +8201,15 @@ msgid "" "\n" "Wavelog" msgstr "" +"Log alstublieft in op uw Wavelog en verwerk het.\n" +"\n" +"Met vriendelijke groet,\n" +"\n" +"Wavelog" #: application/views/email/testmail.php:3 msgid "Wavelog Test-Mail" -msgstr "" +msgstr "Wavelog Testmail" #: application/views/email/testmail.php:5 msgid "" @@ -7870,82 +8223,97 @@ msgid "" "\n" "Wavelog" msgstr "" +"Hoi,\n" +"\n" +"Dit is een testmail van je Wavelog-instantie.\n" +"\n" +"Als je deze e-mail hebt ontvangen, zijn je mailinstellingen correct.\n" +"\n" +"Groeten,\n" +"\n" +"Wavelog" #: application/views/eqsl/analysis.php:11 application/views/eqsl/download.php:9 #: application/views/eqsl/export.php:8 application/views/eqsl/import.php:7 #: application/views/eqsl/result.php:11 application/views/eqsl/tools.php:7 #: application/views/qrz/export.php:14 msgid "Download QSOs" -msgstr "" +msgstr "QSOs downloaden" #: application/views/eqsl/analysis.php:14 #: application/views/eqsl/download.php:13 application/views/eqsl/export.php:12 #: application/views/eqsl/import.php:11 application/views/eqsl/result.php:14 #: application/views/eqsl/tools.php:11 msgid "Upload QSOs" -msgstr "" +msgstr "Upload QSOs" #: application/views/eqsl/analysis.php:17 #: application/views/eqsl/download.php:17 application/views/eqsl/export.php:16 #: application/views/eqsl/import.php:15 application/views/eqsl/result.php:17 #: application/views/eqsl/tools.php:15 #: application/views/interface_assets/header.php:258 +#, fuzzy msgid "Tools" -msgstr "" +msgstr "Gereedschap" #: application/views/eqsl/analysis.php:20 #: application/views/eqsl/download.php:20 application/views/eqsl/export.php:19 #: application/views/eqsl/import.php:18 application/views/eqsl/result.php:20 #: application/views/eqsl/tools.php:19 msgid "Download eQSL cards" -msgstr "" +msgstr "eQSL-kaarten downloaden" #: application/views/eqsl/analysis.php:40 #: application/views/eqsl/download.php:40 application/views/eqsl/result.php:37 +#, fuzzy msgid "Submode" -msgstr "" +msgstr "Submodus" #: application/views/eqsl/analysis.php:41 msgid "eQSL Received Date" -msgstr "" +msgstr "eQSL Ontvangstdatum" #: application/views/eqsl/analysis.php:42 msgid "Log Status" -msgstr "" +msgstr "Logstatus" #: application/views/eqsl/analysis.php:43 application/views/eqsl/result.php:38 msgid "eQSL Status" -msgstr "" +msgstr "eQSL-status" #: application/views/eqsl/analysis.php:64 msgid "There are no QSO confirmations waiting for you at eQSL.cc" -msgstr "" +msgstr "Er zijn geen QSO-bevestigingen die op je wachten bij eQSL.cc" #: application/views/eqsl/download.php:31 msgid "" "Below is a table of QSOs that have been confirmed on eQSL but QSL images " "have not been downloaded yet." msgstr "" +"Hieronder staat een tabel van QSO's die zijn bevestigd op eQSL maar waarvan " +"de QSL-afbeeldingen nog niet zijn gedownload." #: application/views/eqsl/download.php:42 #: application/views/eqslcard/index.php:34 #: application/views/view_log/qso.php:544 msgid "QSL Message" -msgstr "" +msgstr "QSL-bericht" #: application/views/eqsl/download.php:44 msgid "eQSL Receive Date" -msgstr "" +msgstr "eQSL Ontvangstdatum" #: application/views/eqsl/download.php:72 msgid "View/Download" -msgstr "" +msgstr "Bekijken/Downloaden" #: application/views/eqsl/download.php:83 application/views/eqsl/import.php:54 msgid "" "Wavelog will use the eQSL credentials from your Wavelog user profile to " "connect to eQSL and download confirmations." msgstr "" +"Wavelog zal de eQSL-gegevens van je Wavelog-gebruikersprofiel gebruiken om " +"verbinding te maken met eQSL en bevestigingen te downloaden." #: application/views/eqsl/download.php:85 msgid "" @@ -7954,48 +8322,64 @@ msgid "" "to call this function several times depending on the amount of outstanding " "cards. This may run into a script timeout depending on the PHP configuration." msgstr "" +"Vanwege een snelheidslimiet van ongeveer 10 seconden per eQSL-afbeelding " +"download zal het aanroepen van deze functie lang duren om te voltooien! " +"Daarom moet je deze functie mogelijk meerdere keren aanroepen, afhankelijk " +"van het aantal openstaande kaarten. Dit kan leiden tot een script-timeout, " +"afhankelijk van de PHP-configuratie." #: application/views/eqsl/download.php:93 msgid "" "There are no QSOs whose eQSL card images have not yet been downloaded. Go " "log some more QSOs!" msgstr "" +"Er zijn geen QSO's waarvan de eQSL-kaartafbeeldingen nog niet zijn " +"gedownload. Ga wat meer QSO's loggen!" #: application/views/eqsl/export.php:31 msgid "Below is a table of QSOs that have not yet been sent to eQSL." msgstr "" +"Hieronder staat een tabel met QSO's die nog niet naar eQSL zijn verzonden." #: application/views/eqsl/export.php:33 +#, fuzzy msgid "" "Please make sure the 'eQSL QTH Nickname' field is set in your station " "profile and that the value matches the QTH Nickname you set within eQSL." msgstr "" +"Zorg ervoor dat het veld 'eQSL QTH Nickname' is ingesteld in je " +"stationprofiel en dat de waarde overeenkomt met de QTH Nickname die je " +"binnen eQSL hebt ingesteld." #: application/views/eqsl/export.php:37 msgid "Clicking 'Upload QSOs' will send QSO information to eQSL.cc." msgstr "" +"Door op 'QSOs uploaden' te klikken, wordt QSO-informatie naar eQSL.cc " +"verzonden." #: application/views/eqsl/export.php:46 msgid "The following QSOs were sent to eQSL." -msgstr "" +msgstr "De volgende QSOs zijn naar eQSL gestuurd." #: application/views/eqsl/export.php:51 msgid "" "There are no QSOs that need to be sent to eQSL at this time. Go log some " "more QSOs!" msgstr "" +"Er zijn op dit moment geen QSO's die naar eQSL moeten worden verzonden. Ga " +"wat meer QSO's loggen!" #: application/views/eqsl/import.php:28 msgid "The next automatic sync with eQSL will happen at: " -msgstr "" +msgstr "De volgende automatische synchronisatie met eQSL zal plaatsvinden om: " #: application/views/eqsl/import.php:31 msgid "Import from file..." -msgstr "" +msgstr "Importeren uit bestand..." #: application/views/eqsl/import.php:34 msgid "Download Inbox" -msgstr "" +msgstr "Download Inbox" #: application/views/eqsl/import.php:34 #, php-format @@ -8003,28 +8387,32 @@ msgid "" "Upload the Exported ADIF file from eQSL from the %s page, to mark QSOs as " "confirmed on eQSL." msgstr "" +"Upload het geëxporteerde ADIF-bestand van eQSL van de %s pagina, om QSO's " +"als bevestigd te markeren op eQSL." #: application/views/eqsl/import.php:35 msgid "Choose Station(location) eQSL File belongs to:" -msgstr "" +msgstr "Kies station(locatie) waar het eQSL-bestand bij hoort:" #: application/views/eqsl/import.php:46 application/views/lotw/import.php:25 msgid "Log files must have the file type .adi" -msgstr "" +msgstr "Logbestanden moeten het bestandstype *.adi hebben" #: application/views/eqsl/import.php:53 msgid "Import directly from eQSL" -msgstr "" +msgstr "Direct importeren van eQSL" #: application/views/eqsl/tools.php:27 msgid "" "This does NOT upload any QSOs. It only marks QSOs as sent. If you use this " "button you need to upload them manually on the eQSL.cc website." msgstr "" +"Dit uploadt GEEN QSOs. Het markeert alleen QSOs als verzonden. Als je deze " +"knop gebruikt, moet je ze handmatig uploaden op de eQSL.cc-website." #: application/views/eqsl/tools.php:29 msgid "Mark All QSOs as Sent to eQSL" -msgstr "" +msgstr "Markeer alle QSO's als verzonden naar eQSL" #: application/views/eqsl/tools.php:29 msgid "" @@ -8037,12 +8425,12 @@ msgstr "" #: application/views/eqslcard/index.php:10 #, php-format msgid "You are using %s of disk space to store eQSL Card assets" -msgstr "" +msgstr "Je gebruikt %s schijfruimte om eQSL-kaartassets op te slaan" #: application/views/eqslcard/index.php:35 #: application/views/qslcard/index.php:33 msgid "QSL Date" -msgstr "" +msgstr "QSL Datum" #: application/views/eqslcard/index.php:64 #: application/views/interface_assets/footer.php:2470 @@ -8052,7 +8440,7 @@ msgstr "" #: application/views/qslcard/index.php:66 #: application/views/view_log/qso.php:763 msgid "View" -msgstr "" +msgstr "Bekijken" #: application/views/hamsat/index.php:22 #, php-format @@ -8060,42 +8448,48 @@ msgid "" "Cannot filter workable passes only without private feed key. Please set the " "feed key in %s." msgstr "" +"Kan werkbare doorgangen alleen niet filteren zonder privésleutel voor de " +"feed. Stel de feed-sleutel in %s in." #: application/views/hamsat/index.php:22 msgid "your profile" -msgstr "" +msgstr "je profiel" #: application/views/hrdlog/export.php:10 application/views/qrz/export.php:10 #: application/views/webadif/export.php:10 msgid "Upload Logbook" -msgstr "" +msgstr "Logboek uploaden" #: application/views/hrdlog/export.php:13 application/views/qrz/export.php:18 #: application/views/webadif/export.php:13 msgid "Mark QSOs" -msgstr "" +msgstr "Markeer QSOs" #: application/views/hrdlog/export.php:22 msgid "" "Here you can see all QSOs which have not been previously uploaded to a " "HRDLog logbook." msgstr "" +"Hier kun je alle QSO's zien die niet eerder naar een HRDLog logboek zijn " +"geüpload." #: application/views/hrdlog/export.php:23 msgid "" "You need to set a HRDLog Logbook API Code in your station profile. Only " "station profiles with an API Key set are displayed." msgstr "" +"Je moet een HRDLog Logboek API-code instellen in je stationprofiel. Alleen " +"stationprofielen met een ingestelde API-sleutel worden weergegeven." #: application/views/hrdlog/export.php:24 #, php-format msgid "The Code can be requested at %s" -msgstr "" +msgstr "De code kan worden opgevraagd bij %s" #: application/views/hrdlog/export.php:25 #: application/views/webadif/export.php:34 msgid "This might take a while as QSO uploads are processed sequentially." -msgstr "" +msgstr "Dit kan even duren omdat QSO-uploads achtereenvolgens worden verwerkt." #: application/views/hrdlog/export.php:34 #: application/views/logbookadvanced/index.php:757 @@ -8105,7 +8499,7 @@ msgstr "" #: application/views/qslprint/qsolist.php:14 #: application/views/webadif/export.php:41 msgid "Profile name" -msgstr "" +msgstr "Profielnaam" #: application/views/hrdlog/export.php:35 #: application/views/oqrs/showrequests.php:86 @@ -8115,37 +8509,39 @@ msgstr "Station roepnaam" #: application/views/hrdlog/export.php:36 application/views/qrz/export.php:41 msgid "Edited QSOs not uploaded" -msgstr "" +msgstr "Bewerkte QSOs niet geüpload" #: application/views/hrdlog/export.php:37 application/views/qrz/export.php:42 #: application/views/webadif/export.php:43 msgid "Total QSOs not uploaded" -msgstr "" +msgstr "Totaal aantal QSO's niet geüpload" #: application/views/hrdlog/export.php:38 application/views/qrz/export.php:43 #: application/views/webadif/export.php:44 msgid "Total QSOs uploaded" -msgstr "" +msgstr "Totaal aantal QSO's geüpload" #: application/views/hrdlog/export.php:60 msgid "" "No Station Locations with valid HRDlog-Settings found. Check the HRDlog " "Credentials in the Station Location Settings!" msgstr "" +"Geen stationlocaties met geldige HRDlog-instellingen gevonden. Controleer de " +"HRDlog-gegevens in de stationlocatie-instellingen!" #: application/views/hrdlog/export.php:87 msgid "Mark QSOs as exported to HRDLog Logbook" -msgstr "" +msgstr "Markeer QSOs als geëxporteerd naar HRDLog Logboek" #: application/views/hrdlog/mark_hrdlog.php:15 #: application/views/qrz/mark_qrz.php:15 #: application/views/webadif/mark_webadif.php:15 msgid "Yay, it's done!" -msgstr "" +msgstr "Jippie, het is klaar!" #: application/views/hrdlog/mark_hrdlog.php:16 msgid "The QSOs are marked as exported to HRDLog Logbook." -msgstr "" +msgstr "De QSO's zijn gemarkeerd als geëxporteerd naar het HRDLog Logboek." #: application/views/interface_assets/footer.php:32 #: application/views/search/search_result_ajax.php:417 @@ -8157,77 +8553,80 @@ msgstr "Wijzig QSO" #: application/views/interface_assets/footer.php:33 msgid "Share QSO" -msgstr "" +msgstr "Deel QSO" #: application/views/interface_assets/footer.php:35 msgid "ERROR" -msgstr "" +msgstr "FOUT" #: application/views/interface_assets/footer.php:36 msgid "Attention" -msgstr "" +msgstr "Attentie" #: application/views/interface_assets/footer.php:41 msgid "Warning! Are you sure you want delete QSO with " -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je het QSO wilt verwijderen met " #: application/views/interface_assets/footer.php:42 #: application/views/user/edit.php:513 msgid "Colors" -msgstr "" +msgstr "Kleuren" #: application/views/interface_assets/footer.php:44 msgid "Worked not confirmed" -msgstr "" +msgstr "Gewerkt maar niet bevestigd" #: application/views/interface_assets/footer.php:45 msgid "Not worked" -msgstr "" +msgstr "Niet gewerkt" #: application/views/interface_assets/footer.php:49 #: application/views/qso/index.php:670 #: application/views/visitor/layout/footer.php:247 +#, fuzzy msgid "Clear" -msgstr "" +msgstr "Wissen" #: application/views/interface_assets/footer.php:50 #: application/views/qso/edit_ajax.php:213 #: application/views/qso/edit_ajax.php:565 msgid "Propagation mode is not supported by LoTW. LoTW QSL fields disabled." msgstr "" +"Propagatiemodus wordt niet ondersteund door LoTW. LoTW QSL-velden " +"uitgeschakeld." #: application/views/interface_assets/footer.php:51 msgid "No states for this DXCC available" -msgstr "" +msgstr "Geen staten beschikbaar voor deze DXCC" #: application/views/interface_assets/footer.php:52 msgid "Compute QRB and QTF" -msgstr "" +msgstr "Bereken QRB en QTF" #: application/views/interface_assets/footer.php:53 msgid "Error in locators. Please check." -msgstr "" +msgstr "Fout in locators. Controleer alsjeblieft." #: application/views/interface_assets/footer.php:54 #: application/views/user/index.php:20 application/views/user/index.php:142 msgid "Refresh List" -msgstr "" +msgstr "Lijst vernieuwen" #: application/views/interface_assets/footer.php:55 msgid "Please Wait ..." -msgstr "" +msgstr "Even geduld ..." #: application/views/interface_assets/footer.php:56 msgctxt "" "Word for country states that are deprecated but kept for legacy reasons." msgid "deprecated" -msgstr "" +msgstr "verouderd" #: application/views/interface_assets/footer.php:138 #: application/views/interface_assets/header.php:483 #: application/views/options/sidebar.php:12 msgid "Version Info" -msgstr "" +msgstr "Versie-informatie" #: application/views/interface_assets/footer.php:192 #: application/views/interface_assets/footer.php:207 @@ -8236,66 +8635,69 @@ msgstr "" #: application/views/interface_assets/footer.php:448 msgid "Description:" -msgstr "" +msgstr "Beschrijving:" #: application/views/interface_assets/footer.php:451 msgid "Query description" -msgstr "" +msgstr "Beschrijving zoekopdracht" #: application/views/interface_assets/footer.php:467 msgid "Your query has been saved!" -msgstr "" +msgstr "Je zoekopdracht is opgeslagen!" #: application/views/interface_assets/footer.php:469 #: application/views/search/filter.php:49 msgid "Edit queries" -msgstr "" +msgstr "Bewerk zoekopdrachten" #: application/views/interface_assets/footer.php:471 msgid "Stored queries:" -msgstr "" +msgstr "Opgeslagen zoekopdrachten:" #: application/views/interface_assets/footer.php:476 #: application/views/search/filter.php:63 msgid "Run Query" -msgstr "" +msgstr "Zoekopdracht uitvoeren" #: application/views/interface_assets/footer.php:488 #: application/views/interface_assets/footer.php:617 #: application/views/interface_assets/footer.php:680 msgid "Stored Queries" -msgstr "" +msgstr "Opgeslagen zoekopdrachten" #: application/views/interface_assets/footer.php:493 #: application/views/interface_assets/footer.php:685 msgid "You need to make a query before you search!" -msgstr "" +msgstr "Je moet een zoekopdracht maken voordat je zoekt!" #: application/views/interface_assets/footer.php:514 #: application/views/interface_assets/footer.php:644 #: application/views/search/filter.php:82 msgid "Export to ADIF" -msgstr "" +msgstr "Exporteren naar ADIF" #: application/views/interface_assets/footer.php:552 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:566 msgid "The stored query has been deleted!" -msgstr "" +msgstr "De opgeslagen zoekopdracht is verwijderd!" #: application/views/interface_assets/footer.php:575 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:601 msgid "The query description has been updated!" -msgstr "" +msgstr "De beschrijving van de zoekopdracht is bijgewerkt!" #: application/views/interface_assets/footer.php:605 msgid "Something went wrong with the save. Please try again!" -msgstr "" +msgstr "Er is iets misgegaan met het opslaan. Probeer het opnieuw!" #: application/views/interface_assets/footer.php:727 msgid "" @@ -8313,16 +8715,17 @@ msgstr "Roepnaam: " #: application/views/interface_assets/footer.php:780 msgid "Count: " -msgstr "" +msgstr "Aantal: " #: application/views/interface_assets/footer.php:781 +#, fuzzy msgid "Grids: " -msgstr "" +msgstr "Grids: " #: application/views/interface_assets/footer.php:1262 #, php-format msgid "You're not logged in. Please %slogin%s" -msgstr "" +msgstr "Je bent niet ingelogd. Gelieve %sinloggen%s" #: application/views/interface_assets/footer.php:1476 #: application/views/interface_assets/footer.php:1480 @@ -8330,199 +8733,205 @@ msgstr "" #: application/views/interface_assets/footer.php:1620 #: application/views/interface_assets/footer.php:1624 #: application/views/interface_assets/footer.php:1627 +#, fuzzy msgid "grid square" -msgstr "" +msgstr "grid square" #: application/views/interface_assets/footer.php:1483 #: application/views/interface_assets/footer.php:1627 msgid "Total count" -msgstr "" +msgstr "Totaal aantal" #: application/views/interface_assets/footer.php:2246 msgid "QSL Card for " -msgstr "" +msgstr "QSL-kaart voor " #: application/views/interface_assets/footer.php:2266 msgid "Warning! Are you sure you want to delete this QSL card?" -msgstr "" +msgstr "Waarschuwing! Weet je zeker dat je deze QSL-kaart wilt verwijderen?" #: application/views/interface_assets/footer.php:2306 #: application/views/view_log/qso.php:43 msgid "eQSL Card" -msgstr "" +msgstr "eQSL-kaart" #: application/views/interface_assets/footer.php:2308 msgid "eQSL Card for " -msgstr "" +msgstr "eQSL-kaart voor " #: application/views/interface_assets/footer.php:2481 #: application/views/interface_assets/footer.php:2520 #: application/views/view_log/qso.php:753 msgid "QSL image file" -msgstr "" +msgstr "QSL-afbeeldingsbestand" #: application/views/interface_assets/footer.php:2500 msgid "Front QSL Card:" -msgstr "" +msgstr "Voorkant QSL-kaart:" #: application/views/interface_assets/footer.php:2538 msgid "Back QSL Card:" -msgstr "" +msgstr "Achterkant QSL-kaart:" #: application/views/interface_assets/footer.php:2549 #: application/views/interface_assets/footer.php:2574 msgid "Add additional QSOs to a QSL Card" -msgstr "" +msgstr "Voeg extra QSOs toe aan een QSL-kaart" #: application/views/interface_assets/footer.php:2585 msgid "Something went wrong. Please try again!" -msgstr "" +msgstr "Er is iets misgegaan. Probeer het opnieuw!" #: application/views/interface_assets/header.php:86 msgid "Developer Mode" -msgstr "" +msgstr "Ontwikkelaarsmodus" #: application/views/interface_assets/header.php:89 msgid "Maintenance Mode" -msgstr "" +msgstr "Onderhoudsmodus" #: application/views/interface_assets/header.php:92 #: application/views/user/edit.php:90 msgid "Clubstation" -msgstr "" +msgstr "Clubstation" #: application/views/interface_assets/header.php:102 msgid "Overview" -msgstr "" +msgstr "Overzicht" #: application/views/interface_assets/header.php:104 msgid "Advanced" -msgstr "" +msgstr "Geavanceerd" #: application/views/interface_assets/header.php:107 msgid "View QSL Cards" -msgstr "" +msgstr "Bekijk QSL-kaarten" #: application/views/interface_assets/header.php:110 msgid "View eQSL Cards" -msgstr "" +msgstr "Bekijk eQSL-kaarten" #: application/views/interface_assets/header.php:118 msgid "Live QSO" -msgstr "" +msgstr "Live QSO" #: application/views/interface_assets/header.php:120 msgid "Post QSO" -msgstr "" +msgstr "Na QSO" #: application/views/interface_assets/header.php:122 +#, fuzzy msgid "Simple Fast Log Entry" -msgstr "" +msgstr "Simple Fast Log Entry" #: application/views/interface_assets/header.php:125 +#, fuzzy msgid "Live Contest Logging" -msgstr "" +msgstr "Live Contest Logging" #: application/views/interface_assets/header.php:127 msgid "Post Contest Logging" -msgstr "" +msgstr "Loggen na de contest" #: application/views/interface_assets/header.php:137 msgid "Analytics" -msgstr "" +msgstr "Analyse" #: application/views/interface_assets/header.php:147 +#, fuzzy msgid "Activated Gridsquares" -msgstr "" +msgstr "Geactiveerde gridsquares" #: application/views/interface_assets/header.php:165 msgid "Callsign Statistics" -msgstr "" +msgstr "Roepnaamstatistieken" #: application/views/interface_assets/header.php:171 msgid "International" -msgstr "" +msgstr "Internationaal" #: application/views/interface_assets/header.php:177 msgid "ITU" -msgstr "" +msgstr "ITU" #: application/views/interface_assets/header.php:183 msgid "Worked All Europe (WAE)" -msgstr "" +msgstr "Worked All Europe (WAE)" #: application/views/interface_assets/header.php:201 msgid "Canada" -msgstr "" +msgstr "Canada" #: application/views/interface_assets/header.php:207 msgid "Germany" -msgstr "" +msgstr "Duitsland" #: application/views/interface_assets/header.php:211 msgid "DL Gridmaster" -msgstr "" +msgstr "DL Gridmaster" #: application/views/interface_assets/header.php:215 msgid "Great Britain" -msgstr "" +msgstr "Groot-Brittannië" #: application/views/interface_assets/header.php:217 msgid "WAB" -msgstr "" +msgstr "WAB" #: application/views/interface_assets/header.php:221 msgid "Japan" -msgstr "" +msgstr "Japan" #: application/views/interface_assets/header.php:227 msgid "JA Gridmaster" -msgstr "" +msgstr "JA Gridmaster" #: application/views/interface_assets/header.php:231 msgid "Luxemburg" -msgstr "" +msgstr "Luxemburg" #: application/views/interface_assets/header.php:233 msgid "LX Gridmaster" -msgstr "" +msgstr "LX Gridmaster" #: application/views/interface_assets/header.php:237 msgid "Switzerland" -msgstr "" +msgstr "Zwitserland" #: application/views/interface_assets/header.php:243 msgid "USA" -msgstr "" +msgstr "VS" #: application/views/interface_assets/header.php:249 msgid "US Gridmaster" -msgstr "" +msgstr "US Gridmaster" #: application/views/interface_assets/header.php:266 +#, fuzzy msgid "Bandmap" -msgstr "" +msgstr "Bandkaart" #: application/views/interface_assets/header.php:268 msgid "SAT Timers" -msgstr "" +msgstr "SAT-timers" #: application/views/interface_assets/header.php:270 +#, fuzzy msgid "Satellite Flightpath" -msgstr "" +msgstr "Satellietbaan" #: application/views/interface_assets/header.php:272 msgid "Satellite Pass" -msgstr "" +msgstr "Satellietovergang" #: application/views/interface_assets/header.php:278 #: application/views/stationsetup/stationsetup.php:113 msgid "Admin" -msgstr "" +msgstr "Beheerder" #: application/views/interface_assets/header.php:283 msgid "Global Options" -msgstr "" +msgstr "Globale opties" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 @@ -8530,11 +8939,11 @@ msgstr "" #: application/views/statistics/index.php:48 #: application/views/statistics/index.php:102 msgid "Satellites" -msgstr "" +msgstr "Satellieten" #: application/views/interface_assets/header.php:295 msgid "Update Country Files" -msgstr "" +msgstr "Update landbestanden" #: application/views/interface_assets/header.php:299 msgid "Debug Information" @@ -8542,399 +8951,411 @@ msgstr "" #: application/views/interface_assets/header.php:346 msgid "Add/Search Callsign" -msgstr "" +msgstr "Toevoegen/Zoeken Roepnaam" #: application/views/interface_assets/header.php:348 +#, fuzzy msgid "Log" -msgstr "" +msgstr "Logboek" #: application/views/interface_assets/header.php:355 #: application/views/logbookadvanced/index.php:528 #: application/views/oqrs/index.php:27 application/views/user/edit.php:461 #: application/views/visitor/layout/header.php:95 +#, fuzzy msgid "Search Callsign" -msgstr "" +msgstr "Zoek roepnaam" #: application/views/interface_assets/header.php:382 #, php-format msgctxt "Operator: Callsign" msgid "Op: %s" -msgstr "" +msgstr "Op: %s" #: application/views/interface_assets/header.php:393 #: application/views/user/edit.php:54 msgid "Account" -msgstr "" +msgstr "Account" #: application/views/interface_assets/header.php:405 msgid "Switch to Clubstation:" -msgstr "" +msgstr "Schakel over naar clubstation:" #: application/views/interface_assets/header.php:409 #, php-format msgid "Switch to %s" -msgstr "" +msgstr "Schakel over naar %s" #: application/views/interface_assets/header.php:413 #, php-format msgctxt "Managing a Club Callsign" msgid "Manage %s" -msgstr "" +msgstr "Beheer %s" #: application/views/interface_assets/header.php:422 msgid "No Clubstations available" -msgstr "" +msgstr "Geen clubstations beschikbaar" #: application/views/interface_assets/header.php:430 msgid "Other Export Options" -msgstr "" +msgstr "Andere exportopties" #: application/views/interface_assets/header.php:438 msgid "Cabrillo Export" -msgstr "" +msgstr "Cabrillo-export" #: application/views/interface_assets/header.php:440 msgid "EDI Export" -msgstr "" +msgstr "EDI-export" #: application/views/interface_assets/header.php:464 +#, fuzzy msgid "QSL Queue" -msgstr "" +msgstr "QSL Wachtrij" #: application/views/interface_assets/header.php:465 msgid "Labels" -msgstr "" +msgstr "Labels" #: application/views/interface_assets/header.php:467 msgid "Third-Party Services" -msgstr "" +msgstr "Diensten van derden" #: application/views/interface_assets/header.php:470 msgid "eQSL Import / Export" -msgstr "" +msgstr "eQSL importeren / exporteren" #: application/views/interface_assets/header.php:471 msgid "HRDLog Logbook" -msgstr "" +msgstr "HRDLog Logboek" #: application/views/interface_assets/header.php:484 msgid "Help" -msgstr "" +msgstr "Help" #: application/views/interface_assets/header.php:485 msgid "Forum" -msgstr "" +msgstr "Forum" #: application/views/interface_assets/header.php:489 #, php-format msgid "Stop impersonate and switch back to %s" -msgstr "" +msgstr "Stop met imiteren en schakel terug naar %s" #: application/views/interface_assets/header.php:490 #, php-format msgid "Switch back to %s" -msgstr "" +msgstr "Schakel terug naar %s" #: application/views/interface_assets/header.php:494 msgid "Logout" -msgstr "" +msgstr "Uitloggen" #: application/views/interface_assets/header.php:502 msgid "Select a Location" -msgstr "" +msgstr "Selecteer een locatie" #: application/views/interface_assets/header.php:581 msgid "Extras" -msgstr "" +msgstr "Extra's" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." -msgstr "" +msgstr "Exporteer je logboek naar een KML-bestand voor gebruik in Google Earth." #: application/views/labels/create.php:24 msgid "" "Label name used for display purposes, so pick something meaningful, perhaps " "the label style." msgstr "" +"Labelnaam gebruikt voor weergavedoeleinden, dus kies iets betekenisvols, " +"misschien de labelstijl." #: application/views/labels/create.php:39 #: application/views/labels/createpaper.php:41 #: application/views/labels/edit.php:41 #: application/views/labels/editpaper.php:41 msgid "Measurement used" -msgstr "" +msgstr "Gebruikte eenheid" #: application/views/labels/create.php:42 #: application/views/labels/createpaper.php:44 #: application/views/labels/edit.php:44 #: application/views/labels/editpaper.php:44 msgid "Millimeters" -msgstr "" +msgstr "Millimeters" #: application/views/labels/create.php:43 #: application/views/labels/createpaper.php:45 #: application/views/labels/edit.php:45 #: application/views/labels/editpaper.php:45 msgid "Inches" -msgstr "" +msgstr "Inches" #: application/views/labels/create.php:49 application/views/labels/edit.php:51 msgid "Margin Top" -msgstr "" +msgstr "Marge bovenkant" #: application/views/labels/create.php:52 application/views/labels/edit.php:54 msgid "Top margin of labels" -msgstr "" +msgstr "Bovenmarge van etiketten" #: application/views/labels/create.php:55 application/views/labels/edit.php:57 msgid "Margin Left" -msgstr "" +msgstr "Marge links" #: application/views/labels/create.php:58 application/views/labels/edit.php:60 msgid "Left margin of labels." -msgstr "" +msgstr "Linkermarge van etiketten." #: application/views/labels/create.php:63 application/views/labels/edit.php:65 msgid "Labels horizontally" -msgstr "" +msgstr "Labels horizontaal" #: application/views/labels/create.php:66 application/views/labels/edit.php:68 msgid "Number of labels horizontally across the page." -msgstr "" +msgstr "Aantal labels horizontaal over de pagina." #: application/views/labels/create.php:69 application/views/labels/edit.php:71 msgid "Labels vertically" -msgstr "" +msgstr "Labels verticaal" #: application/views/labels/create.php:72 application/views/labels/edit.php:74 msgid "Number of labels vertically across the page." -msgstr "" +msgstr "Aantal labels verticaal over de pagina." #: application/views/labels/create.php:77 application/views/labels/edit.php:79 msgid "Horizontal space" -msgstr "" +msgstr "Horizontale ruimte" #: application/views/labels/create.php:80 application/views/labels/edit.php:82 msgid "Horizontal space between 2 labels." -msgstr "" +msgstr "Horizontale ruimte tussen 2 labels." #: application/views/labels/create.php:83 application/views/labels/edit.php:85 msgid "Vertical space" -msgstr "" +msgstr "Verticale ruimte" #: application/views/labels/create.php:86 application/views/labels/edit.php:88 msgid "Vertical space between 2 labels." -msgstr "" +msgstr "Verticale ruimte tussen 2 labels." #: application/views/labels/create.php:91 application/views/labels/edit.php:93 msgid "Width of label" -msgstr "" +msgstr "Breedte van etiket" #: application/views/labels/create.php:94 application/views/labels/edit.php:96 msgid "Total width of one label." -msgstr "" +msgstr "Totale breedte van één etiket." #: application/views/labels/create.php:97 application/views/labels/edit.php:99 msgid "Height of label" -msgstr "" +msgstr "Hoogte van het etiket" #: application/views/labels/create.php:100 #: application/views/labels/edit.php:102 msgid "Total height of one label" -msgstr "" +msgstr "Totale hoogte van één etiket" #: application/views/labels/create.php:105 #: application/views/labels/edit.php:107 application/views/labels/index.php:80 msgid "Font Size" -msgstr "" +msgstr "Lettergrootte" #: application/views/labels/create.php:108 #: application/views/labels/edit.php:110 msgid "Font size used on the label don't go too big." -msgstr "" +msgstr "Het lettertype op het etiket moet niet te groot zijn." #: application/views/labels/create.php:111 #: application/views/labels/edit.php:113 msgid "QSOs on label" -msgstr "" +msgstr "Aantal QSOs op label" #: application/views/labels/create.php:117 #: application/views/labels/edit.php:118 msgid "Save Label Type" -msgstr "" +msgstr "Labeltype opslaan" #: application/views/labels/createpaper.php:36 #: application/views/labels/editpaper.php:36 msgid "Paper Type Name" -msgstr "" +msgstr "Papiernaam" #: application/views/labels/createpaper.php:39 #: application/views/labels/editpaper.php:39 msgid "Paper name used for display purposes, so pick something meaningful." -msgstr "" +msgstr "Papieren naam wordt gebruikt voor weergave, dus kies iets zinvols." #: application/views/labels/createpaper.php:51 #: application/views/labels/editpaper.php:51 msgid "Width of paper" -msgstr "" +msgstr "Breedte van papier" #: application/views/labels/createpaper.php:54 #: application/views/labels/editpaper.php:54 #: application/views/labels/editpaper.php:60 msgid "Total width of paper." -msgstr "" +msgstr "Totale breedte van het papier." #: application/views/labels/createpaper.php:57 #: application/views/labels/editpaper.php:57 msgid "Height of paper" -msgstr "" +msgstr "Hoogte van papier" #: application/views/labels/createpaper.php:60 msgid "Total height of paper" -msgstr "" +msgstr "Totale hoogte van papier" #: application/views/labels/createpaper.php:65 #: application/views/labels/createpaper.php:71 #: application/views/labels/editpaper.php:65 #: application/views/labels/editpaper.php:71 msgid "Orientation of paper" -msgstr "" +msgstr "Oriëntatie van papier" #: application/views/labels/createpaper.php:68 #: application/views/labels/editpaper.php:68 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Landscape" -msgstr "" +msgstr "Landschap" #: application/views/labels/createpaper.php:69 #: application/views/labels/editpaper.php:69 #: application/views/labels/index.php:60 msgctxt "Orientation" msgid "Portrait" -msgstr "" +msgstr "Portret" #: application/views/labels/createpaper.php:75 #: application/views/labels/editpaper.php:75 msgid "Save Paper Type" -msgstr "" +msgstr "Papier type opslaan" #: application/views/labels/edit.php:24 +#, fuzzy msgid "" "Label name used for display purposes so pick something meaningful perhaps " "the label style." msgstr "" +"Labelnaam gebruikt voor weergavedoeleinden, dus kies iets zinvols, misschien " +"de labelstijl." #: application/views/labels/index.php:2 #: application/views/logbookadvanced/startatform.php:27 msgid "Mark QSL as printed" -msgstr "" +msgstr "Markeer QSL als gedrukt" #: application/views/labels/index.php:3 application/views/labels/index.php:128 msgid "Print" -msgstr "" +msgstr "Afdrukken" #: application/views/labels/index.php:33 msgid "Create New Label Type" -msgstr "" +msgstr "Nieuw labeltype maken" #: application/views/labels/index.php:34 msgid "Create New Paper Type" -msgstr "" +msgstr "Nieuw papiersoort maken" #: application/views/labels/index.php:37 msgid "Paper types" -msgstr "" +msgstr "Papiersoorten" #: application/views/labels/index.php:43 application/views/labels/index.php:78 msgid "Width" -msgstr "" +msgstr "Breedte" #: application/views/labels/index.php:44 application/views/labels/index.php:79 msgid "Height" -msgstr "" +msgstr "Hoogte" #: application/views/labels/index.php:45 msgid "Used by labels" -msgstr "" +msgstr "Gebruikt door labels" #: application/views/labels/index.php:46 msgid "Orientation" -msgstr "" +msgstr "Oriëntatie" #: application/views/labels/index.php:71 msgid "Label types" -msgstr "" +msgstr "Labeltypen" #: application/views/labels/index.php:81 #: application/views/statistics/index.php:68 #: application/views/statistics/index.php:105 #: application/views/widgets/qsos.php:3 msgid "QSOs" -msgstr "" +msgstr "QSOs" #: application/views/labels/index.php:82 msgid "Use For Print" -msgstr "" +msgstr "Gebruik voor print" #: application/views/labels/index.php:92 msgid "No paper assigned" -msgstr "" +msgstr "Geen papier toegewezen" #: application/views/labels/index.php:117 msgid "QSL Card Labels Pending" -msgstr "" +msgstr "QSL-kaartlabels in behandeling" #: application/views/labels/index.php:126 msgid "QSOs Waiting" -msgstr "" +msgstr "QSOs wachten" #: application/views/labels/index.php:127 msgid "View QSOs" -msgstr "" +msgstr "Bekijk QSOs" #: application/views/labels/startatform.php:4 #: application/views/logbookadvanced/startatform.php:3 +#, fuzzy msgid "Include Grid?" -msgstr "" +msgstr "Grid opnemen?" #: application/views/labels/startatform.php:10 #: application/views/logbookadvanced/startatform.php:9 +#, fuzzy 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 msgid "Include Via (if filled)?" -msgstr "" +msgstr "Via opnemen (indien ingevuld)?" #: application/views/labels/startatform.php:22 #: application/views/logbookadvanced/startatform.php:21 msgid "Start printing at?" -msgstr "" +msgstr "Begin met afdrukken om?" #: application/views/logbookadvanced/edit.php:1 msgid "Please choose the column to be edited:" -msgstr "" +msgstr "Kies de kolom die bewerkt moet worden:" #: application/views/logbookadvanced/edit.php:17 #: application/views/logbookadvanced/index.php:482 #: application/views/logbookadvanced/index.php:673 #: application/views/logbookadvanced/useroptions.php:58 msgid "QSL via" -msgstr "" +msgstr "QSL via" #: application/views/logbookadvanced/edit.php:18 msgid "QSLMSG" -msgstr "" +msgstr "QSLMSG" #: application/views/logbookadvanced/edit.php:25 msgid "LoTW Sent" -msgstr "" +msgstr "LoTW Verzonden" #: application/views/logbookadvanced/edit.php:26 msgid "LoTW Received" -msgstr "" +msgstr "LoTW Ontvangen" #: application/views/logbookadvanced/edit.php:28 msgid "QRZ Sent" @@ -11396,7 +11817,7 @@ msgstr "" #: application/views/search/lotw_unconfirmed.php:15 #: application/views/search/main.php:15 msgid "Advanced Search" -msgstr "" +msgstr "Geavanceerd zoeken" #: application/views/search/cqzones.php:18 #: application/views/search/filter.php:26 From 9f45520eb797b3fce89903b3a43346d1a3a7d90a Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 27 Jan 2025 10:05:20 +0100 Subject: [PATCH 07/17] Make migration more failsafe --- application/migrations/216_tag_1_8_3.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/application/migrations/216_tag_1_8_3.php b/application/migrations/216_tag_1_8_3.php index e6a36302e..169eac9f7 100644 --- a/application/migrations/216_tag_1_8_3.php +++ b/application/migrations/216_tag_1_8_3.php @@ -25,8 +25,10 @@ class Migration_tag_1_8_3 extends CI_Migration { $this->db->where('option_value', 'custom_text'); $this->db->update('options', array('option_value' => 'both')); - $this->db->query("INSERT INTO satellite (name, exportname, orbit) SELECT distinct 'MESAT1','', 'LEO' FROM satellite WHERE NOT EXISTS (SELECT 1 FROM satellite WHERE name = 'MESAT1');"); - $this->db->query("INSERT INTO satellitemode (name, satelliteid, uplink_mode, uplink_freq, downlink_mode, downlink_freq) SELECT 'V/U', id, 'LSB', '145925000', 'USB', '435825000' FROM satellite WHERE name = 'MESAT1' and NOT EXISTS (SELECT 1 FROM satellitemode WHERE satelliteid = satellite.id) ;"); + if ($this->db->field_exists('exportname', 'satellite')) { + $this->db->query("INSERT INTO satellite (name, exportname, orbit) SELECT distinct 'MESAT1','', 'LEO' FROM satellite WHERE NOT EXISTS (SELECT 1 FROM satellite WHERE name = 'MESAT1');"); + $this->db->query("INSERT INTO satellitemode (name, satelliteid, uplink_mode, uplink_freq, downlink_mode, downlink_freq) SELECT 'V/U', id, 'LSB', '145925000', 'USB', '435825000' FROM satellite WHERE name = 'MESAT1' and NOT EXISTS (SELECT 1 FROM satellitemode WHERE satelliteid = satellite.id) ;"); + } $this->db->query("UPDATE cron SET description = 'Up- and Download QSOs to LoTW' WHERE id = 'lotw_lotw_upload';"); //Mark MESAT1 QSOs LoTW sent state as invalid/ignore until it is recognized by LoTW From 754beb961f6cac8dfe232360dfc73584be43499f Mon Sep 17 00:00:00 2001 From: PE1PQX Date: Mon, 27 Jan 2025 07:13:24 +0000 Subject: [PATCH 08/17] Translated using Weblate (Dutch) Currently translated at 57.0% (1372 of 2403 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/nl/ --- application/locale/nl_NL/LC_MESSAGES/messages.po | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index dc498ad67..eaafcac08 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: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-27 07:12+0000\n" -"Last-Translator: Alexander \n" +"PO-Revision-Date: 2025-01-27 09:19+0000\n" +"Last-Translator: PE1PQX \n" "Language-Team: Dutch \n" "Language: nl_NL\n" @@ -712,17 +712,16 @@ msgstr "Contestkalender niet bereikbaar. Probeer het later opnieuw" #: application/controllers/Contesting.php:52 #: application/views/contesting/index.php:7 msgid "Contest Logging" -msgstr "" +msgstr "Wedstrijd loggen" #: application/controllers/Contesting.php:123 #: application/views/interface_assets/header.php:287 -#, fuzzy msgid "Contests" -msgstr "Contests" +msgstr "Wedstrijden" #: application/controllers/Contesting.php:137 msgid "Update Contest" -msgstr "" +msgstr "Bijwerken inhoud" #: application/controllers/Continents.php:25 #: application/views/awards/dxcc/index.php:83 @@ -817,7 +816,7 @@ msgstr "Dagen met QSOs" #: application/controllers/Debug.php:115 msgid "Debug" -msgstr "" +msgstr "Debug" #: application/controllers/Debug.php:154 msgid "Migrate data now" From c1298ebe7548977aefe5cc4ed4396ae4bb59962e Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 27 Jan 2025 09:33:09 +0000 Subject: [PATCH 09/17] po/mo updates --- .../locale/nl_NL/LC_MESSAGES/messages.mo | Bin 46883 -> 132412 bytes .../locale/nl_NL/LC_MESSAGES/messages.po | 60 ------------------ 2 files changed, 60 deletions(-) diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.mo b/application/locale/nl_NL/LC_MESSAGES/messages.mo index aa352cd89b96213f2ce12eb0c6a43a861f3ca416..e9c6912ff1d3fdd4315caf8d542e06e441f2d393 100644 GIT binary patch literal 132412 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

isPfhstjscm^B_yTcVw@jMR|eizidbp)#3n|^Kk zSv-{gaH#$;18N^R3+BTW@Lc#CR6XVGv%h0l2-P1Sh6=wGs(p4t#q%9hfBFq-ee>mIc8=}4G~yc~{zJDk4#_qII?pz3iYRK45{RUc16 zwdZ!Idi@M~@CSGaJn@kI-f$yS|J~{9$Kg3J@fSN^Ujns`JOl^9`iJdztr@nvLd(cs^C;sJ7`MVcRgfGLsu+86g-JAqvw-&aC??BD_hhc9RK4RyO z+o8tGvrzNHXHf0@JJh^djsI!7F2%;L!GY{JO8Jk`r(_7d!Xip!%*YmxN6l* zdp3b8&jcv{v!UjpAXI)zpz>D+HQpCNg}(&KZY9+EaWmAox&wBHTb%qAOhEp{vGsA) zeC?1kq3S&dmF^W#<7g$+c)tY}!@aN<%&K0^+}B(J#~{B3m9G{xZ2mhz)mwK+x9~L~ z^L5DB8iaH*UXJbp6^JJbHkA?2cHWoq|AV(3_E8vnKE1LsO+2!FK+zGhr!RFYEB;IRb9J+iNS9zYmW-agU z=+@z{wn&3Du>ThK4K9yQqq`M5Jso+^L@vR`gKrc6YN#iI&Gl8vp|SEFay@L{gtudN zGo0vbI-_UlsCXLT?&su9#PurgbJ*6#?sxL?hs)1Ym`11sI1u|<_`i+q-MB~LK8$`B z?n}_=38Q=1I?eZCx^2a?l=#oXu7o#}_XfgUgl{=E9eBsNye`16FMhj_)yHGcm&h}n z@H95b&b~JsLHPE(CzAfXFo^DIsHeNLyMj1h$KB4VeNVyJ*iYrv^9O#H5vC({nxk@g z7o%SZH^JZJ#=onJw;B4_a~?WBdD6pHz;_FA-H*Ei^dq;0hk4UnTJK`7|GvkQ*wn|L z<-@5CFst;?+fHDxZlS1B3Obh_H@DF=MC{*kKM!g>-m^>9`5U$JRd);fu}+}*xH!q4W~FC`8M2_l1_sv>B{>E;j&!VuVB=L5f&nc zoZlyoO$o1c)I7L{qQ8ZBS%!QgkjtvXzs=?2YIK)k_nV938Orh#?wQVCaV6}{F9 zt%s|SZ$rL+&fU%NRl@v){uJcX z33m$#`~@#Veu#Gx?u{;gIPNmuXLw(8x`V{?I_|0HV$UKRI=iG1zAl_ZnI6TzI=spm1#my^%6290(Yzyh zpCvDPY7urEVb(dD47i?mGX9;>zlHw?*3|s1i{E#=C*pq}ez9i+w(EI+#!pWt7$lw8 z)6=CV`EC3n&Tn>=IP&m23qQ7qzJu5oxxkB@jUSfbcLMq_?=IX6iAVdrTXE|-8@U_# zD8OAr98VIaHFApcmra37`v&~toqH?(W3ao+*?j;%C;U_e;92DKgV82%;68P+ z-7m6}?_azx5#}arGN7KHaO*h}yDM>bap~M()xI{!4e>hw@8vy86mJ~i=410Bx_ewcJGeN$ z#y|Fy;dt2z9}AA+`TkgTmt|hw1kk?DelZ^Zwe1S9{fkmWQ z9o_lJ*}NOjW$|9)!e`=cQc4eiwF%(@k-56YTY@v@m~%VRHel)m3!2J9idw{ou-V z9Xg%c1H{#vFdcc{b9O(XYalnaLrJ48Wzm`VYu>upHO2oomxq4%--0go)JNYG;YGrx z;LgKu9emi?S3`aa|1){Bs??pr=MiQD{!h9*`Uo?S_*)@AD+8Xo=;EFKIruGhaXgRy zCEkv_dTKa*Ha63czcgC=C&}3~#BVw80OZ{+&f$)-Y>fU8@uc$3siKcX)gRr+m;l4r zrSmo;&ad!`!rsWw63@Nx58iXpErYS=E$osga~?Jy@*d&!cD%LY2-_df>uHWV7k3fy;Pe&XK7p{qh^IR4O(^f?eOksmL(msj z$zwa`{>`N;nc8o$XEW~Z z@Hpg0cw4x%rlY$I+fC@^yK>%*?fv+ty0GVBqvuiVqP&B!3-O+h?iCl$7U_AuG`fH}807v)cKu!9Re19oQB=Cu5$|cwfL~JMSIjskYHF?-PEK3;QSfXPtW} z;cvn3bSJ-opB}CdeRtwc<9*4hd~cu|i2Enr(dgfId6f4G{B9(UQr;(Uk8$x`=jvyn zjCgwSE_dM`z)sK47QWtunT&m3;+_WYa{g0rzlYygXV)EnJfU!_%-km$;w9{W3hBSI-FE8R%LOW;ZqydGADbAJnrA zyVK$A@EZ6Uwqx;Iik$7@=!|?8Z%xv=5&q2k0q*rMfX&~y|0e84!oCX6K>s}Y#=O7q zKFV8;-y`Vf^S;S@4tA%Z+X?mDjg6jp#MKG5=6!(I@AQwL*TYq=ZysgQGa229&i_id z%(<(>H+kFe)^s}Af1^L{nMod&5YJpEcOkB;TpChch5t>2J(u*}=Dpt8o$Xi++fld| zR0$)m%ak|lA0T`)-jTdxl@4)nyJ2h8wvLUe#g18F2bFHK9_eh zwr{v{?MA*3xr2-64D_!%ze3`82KVLIJcZ5U$a>lkXA$r5=yvliMt>^$S-2OVUjegS ze0$N~!8-u?8vJJAuKFYr|LxcxLYWJjVD}R7-G)90C!-&VyDnk%{DuE4+=b}s-iX# z5Jt}+-lq6(aq)hGUv1>i@&65-?$hINf9&iPCI$V~yg#5zMsAM%Fyw3D3c_EBdmg-p z_aOyvPZRtvMi+a+xW}Q3J(uCwgWSp~5@H_kOKi`hJc+JM-(vT*%TosK9@yMOx}DIC z#I_c?OOR8MZ^iE$XL|(qQsVdwzpJs)(*^shcrW6ehTR>!OVBUJrUczw?CW6L!KEF> z|8oA_ddEN@Ei0!2{R3M z9~efCJv)%U!v13NG8q3B&aXPU!?+J(c!A4jEKE!E1JHdz*fX(ff%`!`Kf-+ozj{#5 ztFWGRR{Sj>OdprVJ!rd=W&>V5?eRPI8Smnf{s~@>cc0U>b@BA8VpEMcW)fdb>@GoH z3-@=}twZh)$0OeW8)EkmZxDGhTnP1if?Ln)utk-4&mqj4=#GPf@vnj3CvZ9ML%8!? zxI1xQjZV+Iyh-Q}pgWEDzkm_sF1#o3Zo~g2^q1oP6!*=%YlwdY@3rWkLf;$Ri*Nw) zOzQc1-rBfNLBF2(UgYJoov%5%(dhakFGbcf1D&2<;U;wD_`TwElaNp19Yk7suEy^J z7vSFxT?pM?+_|Jb+lA?Y{x05k@H+tpVIRUhhkr-Hc0;$vr8fe1vU5*{ z_hGlj$>$U2$AqoNTlG1wihLz;uEl;Ky6brx;m$!f8u$0Om%BXG$9)pvdHbRF(EUz6&&PcpEP#9Aqxf$it}etogICX1^rxfy47TRI z2=@nszYyLGPv-p#yN&p*g-;RJo%q#2znWK1S7bepA|HqQS>Cg-*HiA&>4olEbiI%- zz`YdPkMQ4#?o;9%i*5<-_uxbq=05a#+M|y;_lL-TW3w1}4t6K=evkib=l?B!k0G}w z{x#Sxb8&r$JPp5BvHKDInaJ-W$DYr(YXSA7pa@|1KK^&WTsR5+L$D`#)YH;2755iL!+3Y`N$la=C%}`i?S`(WE7Ne& zdfbJ10hW@+DqcM`v6+tjyVwk|D!zkK-@Kn=GY?%U{x|ZD!?ur$v$+c&!7lckgZn@g z`5tUCoxB5n&U+We6NpRCaCp$UOOU6MhqH_ibw=28ou5(Rr)L6O>D+I*JX}Jat|RVK zuy5>itB~j5{+)L=@7IKBiY~|bZ*_4f&R)uwlPBViJwFrQBhLO}+}&K+YhrsF`cs|X zXUOpc+KgOG_{))ZAYVk7YJ?ex?pzmtvWsIeJRAREyxF{Z77+eUY!AYS(>-Ioe2Ih~ zR3&fCq^~|a-zyK7d7(fc&npf`0$zTws5B4>h6=hGk6eGqD~kra_-JWiz)Q`Wz+V~+hnz{&U+VeVd*OUQNC1GhU^Ui!l(JEp5<%tz-=>#YCSm{c3iQPRCd8~#!09 z1G7jFOj)J}QJZGi`&ojbQ3g;RlWa6lYL+JU1rcu&vl_|85=!=^Qv2n0f(VsTuQ(|S zZ4?Umy(*q1CDgh$3%*naj`kSQGUu4>XLYs<0#lY<=1U@Bb{+vQAwHTgi0PII*>p{3 zrc#(DpB-ejcgy54VaeNnOG(vIxiSsr_|3#Ajdn`&dKU`E4o~>CpmSfiy26>aI zm*O&(fJh*Td3y%qww&f=s@K%yNyV&O7@%O}%+GMft@hXME1AvJe=c%mDU^OmSx!+f z*NYaF75rZ^Ox4rTB3^zZTx>d1E(7Vm1T6N?u-)>X+Znu3+Az~L3dZ&|!h~MLG&PGI zoj-?>Gd2(@X6Ip-H0@e^X79pgBR}k%Yqz_$ zg4I+pgyR56&X`<+9ZS4z(Fgr0KAwyHu>i6gq zR3m#FyS5Z^5+LfzZcM&qp4a97W+95SW~;)vixeHE(-heurCj=k^es= zqp;Z8Eo78R(m+s3gbqi|NEo6Cwa_;t5}rXCX+yGX|4U*stW0~VEYI}#+^{-fX@IGN zOfZ(U1tp@gq5{gzf}_CcGOsuUNMi-#88F8;Us`5*>>QCc&Ub9DI7aqNr;?TSh`zK* z-nguxzBGSMgk46sBA%EWOU+*t2<5RA*W7L@pCGJ<73+1(QFV7(sVieGWXGzVT!qq1 zHg+2u(T%pCJzVx+*yio2A-lt!R}aHQNz zWj5h_oL8waW3R$rGg77B7`Nr9qL~$l6#2_56=TD*+1FKs&$erSrDA-LBWQ*9czS!Z zILPEln93tiRX68UbF3uql?D}E`e^Nh*zq*Yp1$MF{!#TX%U@Kc8xAiqyEMY-o;qZ9 z4HvWiFo5YHHbA8*bA%1;H(etT%8itpv$Cq$vkk1d+e^qV3R8)J?mc?;>dn)udqT38 zRu~R53;DgMKOfLpbfr+S155s&v!O+bgmpo|CWu+opQDDhLshL1b6lC3q6q}8RB4ger(}~$EkVPCuZM~R+xMoa@ zZCg6o`B9e>OlB&ZYI*>1xN?`cJ!Wiwp`(o^OrP0^r?Di{;QGrF#5E5WJ8A4+W>jp0 zY;dzZjcr@)h&5Ksnk2v$!0wZoRxUVTSssfG&5edrUs(@|aL{1vZvd6sFNMt7x()HZdGEXH>2<71t;-Wv6F?xZRU4 zjUmSohRckIH!;?v;UbQmc&Wpd8U_tY${79QvWA#GHg0?-UMyk-)GD1P5Hg!{qly%J zW8MDW+PHR)37P_EMotvbwiPFW*&H>ZWx2VWpz_O#7&Gj%I4NHgTm4bSl;z?Hq0IHP=uv4HL3i8e*muC+V2MNKQgp#$)nPp(S*+b7GL23wNj; zp01Ii)s9s^FPNWCzcaN`K*cq@~v9&Xqu$##$-I1*}r@o3d z%cUc_4p_A!{Q2sII=HBXm7;Ew%wMggl60v_1=*cbrOIvztsGHBVG7J*>)?&_Gk17q z$7(&y1~}%cd)$9oNITZgI&@UHe`>O6!lEMG2)d}<6h`;TH51-H_2$48Q;#nUXrZ#3 z1HZYzsg%&>c^$pk5#rZ+aI{a7S)wb|dEO9Ngh^JrGW7?uku|PSwlRHaWo-A^5EchD z2ARgybv2ndy}gR|5_3&oEaR$@tswUW6&otnu%k^Yd^8r+3Cu)uUVzQ8BCC4KqCSaLCt1x2>0?Gzxh1Zc`_f06 zYqw%fd<-^>^m<*q?3lA#rPFRYIK$k2#rgaE{LK@f{(xw1`>I-LqH7<~q_|7*={!Ol6p*(U@gSC}uH8)MaTW z#a0;(DJ{+Xaa(H1o|)W?i_xgNXjNdsG4XXxFo#NWtF1GxIk4EPQ5}*)rTQYmFs98- zRO)T&P8GH~lDbVnuIb@AID6gu_w4QED9buUhrA(N!UwX$rQxpLr0!`$(z(74mNNI# zEt74=ZClz~1XEB`ag-w|)*Wz1y&s;fr--W%wRgb`V; zw9w9J6)u*gh_1b>r&itW=rk9*!K(NaVXi~i?yyc}2LjqTkYi>9^T*`Zx=O=_-OR2u zo$-Xopdv~QnAw5A46CRZOUH=SM{~wEABkuvj$e!=))RNvTgNQ|3?*0$YxV#wru|@C4#xc z+~pWolR4ozzVw*LXl9O$Nm&8&wW2~cmu|VbwDhHOTsQk=eKh8hoJ#^t%l?v*NSM#{ zC^?SssXodnUhAZWwFzEAPt#WjtvBWz$abFvO`k_u0`tp4OwSBs^W~vb*V=x2HrIJY zDaN)FZCO7V)@;c6fq?sHD{o>uCaNg&ih8PI(0B6^&NE7oR5Yjii&c@zJO}xxR&{xr zQfiGRQ;I)QrjIqI#P+kiiB3oVe?&NT*jRF@V_uovDzdhf>GLo*FZyQ4^vOKPQdFso z&It0chTB1OOvI{EwUa6$wjXAGtng#gfy70Uh@jQZAPZqSjCQ=X1k3R@hR4`{`P7v0_%=#uS-7;I9IXGCS78>JQd33Pi zu@&W6GqzWp5R8dgv5d>ESH`KGI)_R6Wk^4}Fgo|KCw7hE@;I}MpOgfgpk+p1^~|ps z6o}n{MveJ31TDnX1`Cxu)QzfCnAs}2uV20lHGuuAuL-8s%+FYYA@^Y+`B-0_hGX4I zT_vNqgcV6Ux(b)RNcl2CcCF0dj-J;u`>G7C)Pm7M6gn`PQ!L}pGe;bnhU*-2HI)&X z6{OY78e(?xKJ!;ssVa@xL)yC+x{7Y6)p1O1as5$oxoJMekU<$FbC%+p8l&hRT`kHc zRwu5EGA^HJ07fZOMsIIaFvP71)om0#+z*Rl(kPm(kl0GSlpX_8Qk>PXq1YzMWK=LO z6f7vD2b;L`6D8*)8qQ}Xnx2)>(2y#TsUKaIrkRFT;qJjp%xP+@dkLwdgnVF3k z_=+`BR>Y(dyVZ&PzJTu${0fKWvA;ZWV=}$D}d3VV6lPKEK8V zJ;r>l;pYmmj~hBryCj+2`HYfeE=0|lmm_u3_%M?#p%OWRFd3>zwB9Kj_UxxhQax9n%9Z?#K%hkF=<-FsjZ@mC5r5Q|$<)RaXran1 zW1;8nnEXcC`ZCo$F*2yEfS96UmQ$^u> zN4*4n04j}kn;9+A?m?FTd0vA3HrXwJcAC`FtRlf>vSJ&Q$D*%%Ge4UtBZLqNY0l0x z_qCeQ=*4y-Gn1euuj1GQXN}DDgmIcREz{)esL#@wj1(_BcphoV6~(27F;^5SOp&?s z%L|7RO1%O;)rZ4gPEa*Ui%-Z-HD%)XW|%@ z*~IvBaw36Q{LqDdWxvtWgLI4jUn1dFg)cQ`16K9MiWxBWBSg~;ho@#uNE()DGNx{+ z{hvu&wa;fzH#IP-RD{@11HAOqZlfn9_3YjE81=}^%%qf*KK+j|A3Cbr=xjW?|3ja8 zbOd8llTy0(PD%DgajXu~$LyyqHxRXMAC--9DLswi*v~y(J=ZUCbC#;~F=DxJQ#Ipq#rKj7+Q5-7l+;%f)RDl4WE^t)d^qF4E)rKZn(eZtaJ3qw+I zN;aufB%Z)cuDQ}puqC5|@H=KU(fT05(op5Aq&kk434XoDYOKo?W!3z0mbF~hHw*-B z*fi(a9}Q&kJ5Vo^QRuPl;RnkcBkW!0|K#B%W@e5`?c~E>zY_o?8OklMbg>IK)A(Bt z(~0e8dX-mO2fmJLl4T&F7`5+Z?D38&6Ez$9g&nFSDPtO!@MzOta%;21^xqp)CTV)Dy+eL%)PpPyS z&01uBYn077sxaA0wZGEso6Y{

^$)KECP;Bj0B@ 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 delta 17607 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

+ @@ -88,6 +93,10 @@
+
+
+
+
diff --git a/assets/js/sections/statistics.js b/assets/js/sections/statistics.js index cf1a0c5e2..2f0e22461 100644 --- a/assets/js/sections/statistics.js +++ b/assets/js/sections/statistics.js @@ -46,6 +46,12 @@ $("a[href='#qsotab']").on('shown.bs.tab', function(e) { $("#yr").show(); }); +$("a[href='#operatorstab']").on('shown.bs.tab', function(e) { + totalOperatorQsos(); + activeTab='totalOperatorQsos()' + $("#yr").show(); +}); + $("a[href='#satqsostab']").on('shown.bs.tab', function(e) { totalSatQsosC(); activeTab='totalSatQsosC()' @@ -515,6 +521,149 @@ function totalBandQsos() { }); } +function totalOperatorQsos() { + // using this to change color of legend and label according to background color + var color = ifDarkModeThemeReturn('white', 'grey'); + + $.ajax({ + url: base_url+'index.php/statistics/get_operators', + type: 'post', + data: { yr: $("#yr option:selected").val() }, + success: function (data) { + if (data.length > 0) { + $(".operators").html(''); + $(".operators").append('

' + lang_statistics_operators + '


'); + + // appending table to hold the data + $("#operatorTable").append('' + + '' + + '' + + '' + + '' + + '' + + '' + + '
#' + lang_gen_hamradio_operator + '' + lang_statistics_number_of_qso_worked + '
'); + var labels = []; + var dataQso = []; + var totalQso = Number(0); + + var $myTable = $('.operatorTable'); + var i = 1; + + // building the rows in the table + var rowElements = data.map(function (row) { + + var $row = $(''); + + var $iterator = $('').html(i++); + var $type = $('').html(row.operator); + var $content = $('').html(row.count); + + $row.append($iterator, $type, $content); + + return $row; + }); + + // finally inserting the rows + $myTable.append(rowElements); + + $.each(data, function () { + labels.push(this.operator); + dataQso.push(this.count); + totalQso = Number(totalQso) + Number(this.count); + }); + + const COLORS = ["#3366cc", "#dc3912", "#ff9900", "#109618", "#990099", "#0099c6", "#dd4477", "#66aa00", "#b82e2e", "#316395", "#994499"] + var ctx = document.getElementById("operatorChart").getContext('2d'); + var myChart = new Chart(ctx, { + plugins: [ChartPieChartOutlabels], + type: 'doughnut', + data: { + labels: labels, + datasets: [{ + label: 'Number of QSO\'s worked', + data: dataQso, + borderColor: 'rgba(54, 162, 235, 1)', + backgroundColor: ["#3366cc", "#dc3912", "#ff9900", "#109618", "#990099", "#0099c6", "#dd4477", "#66aa00", "#b82e2e", "#316395", "#994499"], + borderWidth: 1, + }] + }, + options: { + layout: { + padding: 100 + }, + title: { + fontColor: color, + fullSize: true, + }, + responsive: true, + maintainAspectRatio: true, + plugins: { + legend: { + display: false, + labels: { + boxWidth: 15, + color: color, + font: { + size: 14, + } + }, + position: 'right', + align: "middle" + }, + outlabels: { + display: function(context) { // Hide labels with low percentage + return ((context.dataset.data[context.dataIndex] / totalQso * 100) > 1) + }, + backgroundColor: COLORS, + borderColor: COLORS, + borderRadius: 2, // Border radius of Label + borderWidth: 2, // Thickness of border + color: 'white', + stretch: 10, + padding: 0, + font: { + resizable: true, + minSize: 12, + maxSize: 25, + family: Chart.defaults.font.family, + size: Chart.defaults.font.size, + style: Chart.defaults.font.style, + lineHeight: Chart.defaults.font.lineHeight, + }, + zoomOutPercentage: 100, + textAlign: 'start', + backgroundColor: COLORS, + } + } + } + }); + + $('.operatorTable').DataTable({ + responsive: false, + ordering: false, + "scrollY": "400px", + "scrollCollapse": true, + "paging": false, + "scrollX": true, + "language": { + url: getDataTablesLanguageUrl(), + }, + bFilter: false, + bInfo: false, + }); + + // using this to change color of csv-button if dark mode is chosen + var background = $('body').css("background-color"); + + if (background != ('rgb(255, 255, 255)')) { + $(".buttons-csv").css("color", "white"); + } + } + } + }); +} + function totalSatQsos() { // using this to change color of legend and label according to background color var color = ifDarkModeThemeReturn('white', 'grey'); From e943af54823c9af84b5be6f4a8d54020078f556c Mon Sep 17 00:00:00 2001 From: DB4SCW Date: Mon, 27 Jan 2025 10:55:08 +0000 Subject: [PATCH 11/17] remove hardcoded table names --- application/models/Logbook_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index a84761a60..ff9234b62 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -3190,7 +3190,7 @@ class Logbook_model extends CI_Model { } //get statistics from database - $this->db->select('IFNULL(IF(COL_OPERATOR = "", TABLE_HRD_CONTACTS_V01.COL_STATION_CALLSIGN, COL_OPERATOR), TABLE_HRD_CONTACTS_V01.COL_STATION_CALLSIGN) AS operator, count( * ) AS count', FALSE); + $this->db->select('IFNULL(IF(COL_OPERATOR = "", COL_STATION_CALLSIGN, COL_OPERATOR), COL_STATION_CALLSIGN) AS operator, count( * ) AS count', FALSE); $this->db->where_in('station_id', $logbooks_locations_array); $this->where_year($yr); $this->db->group_by('operator'); From 130689030559ccda46d207b8cfc1d7b684090324 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 27 Jan 2025 12:34:55 +0000 Subject: [PATCH 12/17] po/mo updates --- .../locale/bg_BG/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/bs/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/cnr/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/cs_CZ/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/de_DE/LC_MESSAGES/messages.po | 87 +++++++------- .../locale/el_GR/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/es_ES/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/et/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/fi_FI/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/fr_FR/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/hr/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/hy/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/it_IT/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/lt/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/lv/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/nl_NL/LC_MESSAGES/messages.po | 107 ++++++++++-------- .../locale/pl_PL/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/pt_PT/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/ru_RU/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/sl/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/sq/LC_MESSAGES/messages.po | 83 +++++++------- application/locale/sr/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/sv_SE/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/tr_TR/LC_MESSAGES/messages.po | 83 +++++++------- .../locale/zh_CN/LC_MESSAGES/messages.po | 83 +++++++------- assets/lang_src/messages.pot | 83 +++++++------- 26 files changed, 1134 insertions(+), 1052 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 3ad771b8c..f50c382a8 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: 2025-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 12:34+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -585,7 +585,7 @@ msgstr "Notizen - Backup" #: application/views/bands/index.php:32 #: application/views/interface_assets/header.php:400 #: application/views/statistics/index.php:16 -#: application/views/statistics/index.php:65 +#: application/views/statistics/index.php:67 msgid "Bands" msgstr "Bänder" @@ -1310,8 +1310,8 @@ msgstr "Clublog" #: application/views/simplefle/index.php:157 #: application/views/statistics/antennaanalytics.php:31 #: application/views/statistics/index.php:15 -#: application/views/statistics/index.php:20 -#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:64 #: application/views/timeline/index.php:19 application/views/user/edit.php:244 #: application/views/user/edit.php:267 application/views/user/edit.php:290 #: application/views/user/edit.php:313 application/views/user/edit.php:337 @@ -1584,7 +1584,7 @@ msgstr "Distanz" #: application/views/simplefle/index.php:156 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/antennaanalytics.php:19 -#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:22 #: application/views/timeline/index.php:7 #: application/views/timeplotter/index.php:14 #: application/views/user/edit.php:242 application/views/user/edit.php:265 @@ -1631,6 +1631,7 @@ msgstr "Frequenz" #: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:116 +#: application/views/statistics/index.php:23 #: application/views/user/edit.php:255 application/views/user/edit.php:278 #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 @@ -2433,13 +2434,13 @@ msgstr "Bearbeite Export-Karte Optionen" msgid "Statistics" msgstr "Statistik" -#: application/controllers/Statistics.php:209 +#: application/controllers/Statistics.php:238 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "QSL-Statistiken" -#: application/controllers/Statistics.php:224 +#: application/controllers/Statistics.php:253 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" @@ -3002,23 +3003,23 @@ msgstr "HRDlog: Keine QSOs gefunden zum hochladen für Stationsrufzeichen: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Keine Stationsstandorte mit HRDlog Zugangsdaten gefunden." -#: application/models/Logbook_model.php:3875 +#: application/models/Logbook_model.php:3899 #, 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:3876 +#: application/models/Logbook_model.php:3900 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Schaue im %s für Tipps zu möglichen Fehlern in der ADIF-Datei." -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "QSO on" msgstr "QSO am" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3026,62 +3027,62 @@ 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:4187 +#: application/models/Logbook_model.php:4211 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL-Empfangsdatum hat das falsche Format (JJJJMMDD)" -#: application/models/Logbook_model.php:4198 +#: application/models/Logbook_model.php:4222 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "Das (Papier-)QSL Sendedatum hat das falsche Format (JJJJMMTT)" -#: application/models/Logbook_model.php:4259 +#: application/models/Logbook_model.php:4283 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "Das Format des Clublog-Upload-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4279 +#: application/models/Logbook_model.php:4303 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Empfangs-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4300 +#: application/models/Logbook_model.php:4324 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "Das Format des LoTW-Sende-Datums ist falsch (JJJJMMTT)" -#: application/models/Logbook_model.php:4581 +#: application/models/Logbook_model.php:4605 #: application/views/simplefle/index.php:40 msgid "Duplicate for" msgstr "Doublette zu" -#: application/models/Logbook_model.php:4642 +#: application/models/Logbook_model.php:4666 msgid "QSO could not be matched" msgstr "QSO konnte nicht gefunden werden" -#: application/models/Logbook_model.php:4648 +#: application/models/Logbook_model.php:4672 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bestätigt durch LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4653 +#: application/models/Logbook_model.php:4677 msgid "confirmed by award manager" msgstr "bestätigt durch Diplommananger" -#: application/models/Logbook_model.php:4656 +#: application/models/Logbook_model.php:4680 msgid "confirmed by cross-check of DCL data" msgstr "bestätigt durch Cross-Check von DCL-Daten" -#: application/models/Logbook_model.php:4659 +#: application/models/Logbook_model.php:4683 msgid "confirmation pending" msgstr "Bestätigung ausstehend" -#: application/models/Logbook_model.php:4662 +#: application/models/Logbook_model.php:4686 msgid "unconfirmed" msgstr "nicht bestätigt" -#: application/models/Logbook_model.php:4665 +#: application/models/Logbook_model.php:4689 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "unbekannt" -#: application/models/Logbook_model.php:5475 +#: application/models/Logbook_model.php:5499 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3164,8 +3165,8 @@ msgstr "Kumulierte Anzahl gearbeiteter WAJA" #: application/views/dashboard/index.php:296 #: application/views/dayswithqso/index.php:41 #: application/views/dayswithqso/index.php:81 -#: application/views/statistics/index.php:18 -#: application/views/statistics/index.php:36 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:38 #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" @@ -3648,7 +3649,7 @@ msgstr "Anzeigen" #: application/views/satellite/skedtable.php:7 #: application/views/satellite/skedtable.php:56 #: application/views/sattimers/index.php:38 -#: application/views/statistics/index.php:22 +#: application/views/statistics/index.php:24 msgid "Satellite" msgstr "Satellit" @@ -6255,6 +6256,8 @@ msgstr "Kategorie Overlay" #: application/views/cabrillo/index.php:164 #: application/views/reg1test/index.php:70 +#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:73 msgid "Operators" msgstr "Operatoren" @@ -7033,7 +7036,7 @@ msgid "VUCC Gridsquare" msgstr "VUCC Locator" #: application/views/continents/index.php:63 -#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:20 msgid "# of QSO's worked" msgstr "# gearbeitete QSOs" @@ -8929,8 +8932,8 @@ msgstr "Globale Optionen" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 -#: application/views/statistics/index.php:48 -#: application/views/statistics/index.php:102 +#: application/views/statistics/index.php:50 +#: application/views/statistics/index.php:111 msgid "Satellites" msgstr "Satelliten" @@ -9274,8 +9277,8 @@ msgid "Label types" msgstr "Etiketten-Typen" #: application/views/labels/index.php:81 -#: application/views/statistics/index.php:68 -#: application/views/statistics/index.php:105 +#: application/views/statistics/index.php:70 +#: application/views/statistics/index.php:114 #: application/views/widgets/qsos.php:3 msgid "QSOs" msgstr "QSOs" @@ -10227,7 +10230,7 @@ msgid "Category" msgstr "Kategorie" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 -#: application/views/qso/index.php:31 application/views/statistics/index.php:44 +#: application/views/qso/index.php:31 application/views/statistics/index.php:46 #: application/views/user/edit.php:169 msgid "General" msgstr "Allgemeines" @@ -12922,25 +12925,25 @@ msgid "Elevation" msgstr "Elevation" #: application/views/statistics/index.php:14 -#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:61 msgid "Years" msgstr "Jahre" -#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" msgstr "Anzahl der QSOs gearbeitet pro Jahr" -#: application/views/statistics/index.php:29 +#: application/views/statistics/index.php:31 msgid "Explore the logbook." msgstr "Logbuch untersuchen." -#: application/views/statistics/index.php:33 +#: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" msgstr "Alle Jahre" -#: application/views/statistics/index.php:71 -#: application/views/statistics/index.php:108 +#: application/views/statistics/index.php:76 +#: application/views/statistics/index.php:117 msgid "Unique callsigns" msgstr "Eindeutige Rufzeichen" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 1299f9bd3..94e96de07 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 12:34+0000\n" "PO-Revision-Date: 2024-11-19 01:22+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Italian \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -572,7 +572,7 @@ msgstr "Notities - Back-up" #: application/views/bands/index.php:32 #: application/views/interface_assets/header.php:400 #: application/views/statistics/index.php:16 -#: application/views/statistics/index.php:65 +#: application/views/statistics/index.php:67 msgid "Bands" msgstr "Banden" @@ -790,8 +790,8 @@ msgid "" "isn't running!%sIt should run every minute (* * * * *)." msgstr "" "De laatste uitvoering vond meer dan %s minuten geleden plaats.%s Het lijkt " -"erop dat je Mastercron niet draait!%s Het zou elke minuut moeten draaien (* *" -" * * *)." +"erop dat je Mastercron niet draait!%s Het zou elke minuut moeten draaien (* " +"* * * *)." #: application/controllers/Cron.php:290 application/views/cron/index.php:29 msgctxt "Master Cron" @@ -1297,8 +1297,8 @@ msgstr "Clublog" #: application/views/simplefle/index.php:157 #: application/views/statistics/antennaanalytics.php:31 #: application/views/statistics/index.php:15 -#: application/views/statistics/index.php:20 -#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:64 #: application/views/timeline/index.php:19 application/views/user/edit.php:244 #: application/views/user/edit.php:267 application/views/user/edit.php:290 #: application/views/user/edit.php:313 application/views/user/edit.php:337 @@ -1571,7 +1571,7 @@ msgstr "Afstand" #: application/views/simplefle/index.php:156 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/antennaanalytics.php:19 -#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:22 #: application/views/timeline/index.php:7 #: application/views/timeplotter/index.php:14 #: application/views/user/edit.php:242 application/views/user/edit.php:265 @@ -1618,6 +1618,7 @@ msgstr "Frequentie" #: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:116 +#: application/views/statistics/index.php:23 #: application/views/user/edit.php:255 application/views/user/edit.php:278 #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 @@ -2418,13 +2419,13 @@ msgstr "Opties voor Exportkaart bewerken" msgid "Statistics" msgstr "Statistieken" -#: application/controllers/Statistics.php:209 +#: application/controllers/Statistics.php:238 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "QSL-statistieken" -#: application/controllers/Statistics.php:224 +#: application/controllers/Statistics.php:253 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" @@ -2979,23 +2980,23 @@ msgstr "HRDlog: Geen QSOs gevonden om te uploaden voor de station roepnaam: " msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "HRDlog: Geen stationprofielen met HRDlog-gegevens gevonden." -#: application/models/Logbook_model.php:3875 +#: application/models/Logbook_model.php:3899 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" "Verkeerde station roepnaam %s bij het importeren van QSO met %s voor %s: " "OVERGESLAGEN" -#: application/models/Logbook_model.php:3876 +#: application/models/Logbook_model.php:3900 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "Controleer %s voor hints over fouten in ADIF-bestanden." -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "QSO on" msgstr "QSO vanaf" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "" "You tried to import a QSO without any given CALL. This QSO wasn't imported. " "It's invalid" @@ -3003,62 +3004,62 @@ 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:4187 +#: application/models/Logbook_model.php:4211 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "de qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4198 +#: application/models/Logbook_model.php:4222 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "de qslsdatum is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4259 +#: application/models/Logbook_model.php:4283 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "de clublog_qso_upload_date is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4279 +#: application/models/Logbook_model.php:4303 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "de lotw_qslrdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4300 +#: application/models/Logbook_model.php:4324 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "de lotw_qslsdate is ongeldig (JJJJMMDD)" -#: application/models/Logbook_model.php:4581 +#: application/models/Logbook_model.php:4605 #: application/views/simplefle/index.php:40 msgid "Duplicate for" msgstr "Duplicaat voor" -#: application/models/Logbook_model.php:4642 +#: application/models/Logbook_model.php:4666 msgid "QSO could not be matched" msgstr "QSO kon niet worden gekoppeld" -#: application/models/Logbook_model.php:4648 +#: application/models/Logbook_model.php:4672 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "bevestigd door LoTW/Clublog/eQSL/Contest" -#: application/models/Logbook_model.php:4653 +#: application/models/Logbook_model.php:4677 msgid "confirmed by award manager" msgstr "Bevestigd door award manager" -#: application/models/Logbook_model.php:4656 +#: application/models/Logbook_model.php:4680 msgid "confirmed by cross-check of DCL data" msgstr "bevestigd door kruiscontrole van DCL-gegevens" -#: application/models/Logbook_model.php:4659 +#: application/models/Logbook_model.php:4683 msgid "confirmation pending" msgstr "bevestiging in afwachting" -#: application/models/Logbook_model.php:4662 +#: application/models/Logbook_model.php:4686 msgid "unconfirmed" msgstr "onbevestigd" -#: application/models/Logbook_model.php:4665 +#: application/models/Logbook_model.php:4689 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "onbekend" -#: application/models/Logbook_model.php:5475 +#: application/models/Logbook_model.php:5499 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3140,8 +3141,8 @@ msgstr "Opgeteld aantal WAJA gewerkt" #: application/views/dashboard/index.php:296 #: application/views/dayswithqso/index.php:41 #: application/views/dayswithqso/index.php:81 -#: application/views/statistics/index.php:18 -#: application/views/statistics/index.php:36 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:38 #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" @@ -3624,7 +3625,7 @@ msgstr "Toon" #: application/views/satellite/skedtable.php:7 #: application/views/satellite/skedtable.php:56 #: application/views/sattimers/index.php:38 -#: application/views/statistics/index.php:22 +#: application/views/statistics/index.php:24 msgid "Satellite" msgstr "Satelliet" @@ -4404,8 +4405,8 @@ msgid "" "Wavelog. Generate a read-only key if the application only needs to obtain " "data from Wavelog." msgstr "" -"Je moet een API-sleutel genereren voor elk hulpmiddel dat je wilt gebruiken (" -"bijv. WLgate). Genereer een lees-schrijf sleutel als de applicatie gegevens " +"Je moet een API-sleutel genereren voor elk hulpmiddel dat je wilt gebruiken " +"(bijv. WLgate). Genereer een lees-schrijf sleutel als de applicatie gegevens " "naar Wavelog moet verzenden. Genereer een alleen-lezen sleutel als de " "applicatie alleen gegevens van Wavelog hoeft te verkrijgen." @@ -5845,7 +5846,8 @@ msgstr "WWFF Referentie" #: application/views/backup/adif_view.php:7 msgid "" "The backup of your log completed successfully. The output can be found at" -msgstr "De back-up van je log is succesvol voltooid. De uitvoer is te vinden op" +msgstr "" +"De back-up van je log is succesvol voltooid. De uitvoer is te vinden op" #: application/views/backup/adif_view.php:9 #: application/views/backup/notes_view.php:9 @@ -6087,7 +6089,8 @@ msgstr "Resultaten van de CBR Contest Data Update" #: application/views/cabrillo/cbr_success.php:17 msgid "" "Your contest QSOs have been updated using the values of your Cabrillo file." -msgstr "Je contest-QSOs zijn bijgewerkt met de waarden van je Cabrillo-bestand." +msgstr "" +"Je contest-QSOs zijn bijgewerkt met de waarden van je Cabrillo-bestand." #: application/views/cabrillo/cbr_success.php:19 msgid "No QSOs were updated by your Cabrillo file." @@ -6221,6 +6224,8 @@ msgstr "Categorie-overlay" #: application/views/cabrillo/index.php:164 #: application/views/reg1test/index.php:70 +#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:73 msgid "Operators" msgstr "Operators" @@ -6996,7 +7001,7 @@ msgid "VUCC Gridsquare" msgstr "VUCC Gridsquare" #: application/views/continents/index.php:63 -#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:20 msgid "# of QSO's worked" msgstr "Aantal QSO's gewerkt" @@ -7814,7 +7819,8 @@ msgstr "Opnieuw toewijzen" #: application/views/debug/index.php:638 msgid "Every QSO in your Database is assigned to a station-profile (location)" -msgstr "Elke QSO in je database is toegewezen aan een station-profiel (locatie)" +msgstr "" +"Elke QSO in je database is toegewezen aan een station-profiel (locatie)" #: application/views/debug/index.php:638 msgid "Everything ok" @@ -8881,8 +8887,8 @@ msgstr "Globale opties" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 -#: application/views/statistics/index.php:48 -#: application/views/statistics/index.php:102 +#: application/views/statistics/index.php:50 +#: application/views/statistics/index.php:111 msgid "Satellites" msgstr "Satellieten" @@ -9003,7 +9009,8 @@ msgstr "Extra's" #: application/views/kml/index.php:7 msgid "Export your logbook to a KML file for use in Google Earth." -msgstr "Exporteer je logboek naar een KML-bestand voor gebruik in Google Earth." +msgstr "" +"Exporteer je logboek naar een KML-bestand voor gebruik in Google Earth." #: application/views/labels/create.php:24 msgid "" @@ -9225,8 +9232,8 @@ msgid "Label types" msgstr "Labeltypen" #: application/views/labels/index.php:81 -#: application/views/statistics/index.php:68 -#: application/views/statistics/index.php:105 +#: application/views/statistics/index.php:70 +#: application/views/statistics/index.php:114 #: application/views/widgets/qsos.php:3 msgid "QSOs" msgstr "QSOs" @@ -10162,7 +10169,7 @@ msgid "Category" msgstr "" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 -#: application/views/qso/index.php:31 application/views/statistics/index.php:44 +#: application/views/qso/index.php:31 application/views/statistics/index.php:46 #: application/views/user/edit.php:169 msgid "General" msgstr "Algemeen" @@ -12661,25 +12668,25 @@ msgid "Elevation" msgstr "" #: application/views/statistics/index.php:14 -#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:61 msgid "Years" msgstr "" -#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" msgstr "" -#: application/views/statistics/index.php:29 +#: application/views/statistics/index.php:31 msgid "Explore the logbook." msgstr "" -#: application/views/statistics/index.php:33 +#: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" msgstr "" -#: application/views/statistics/index.php:71 -#: application/views/statistics/index.php:108 +#: application/views/statistics/index.php:76 +#: application/views/statistics/index.php:117 msgid "Unique callsigns" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 1ff6cbf2b..10bed7a0a 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 12:34+0000\n" "PO-Revision-Date: 2025-01-03 01:47+0000\n" "Last-Translator: Maciej SP2FE \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) \n" "Language-Team: LANGUAGE \n" @@ -567,7 +567,7 @@ msgstr "" #: application/views/bands/index.php:32 #: application/views/interface_assets/header.php:400 #: application/views/statistics/index.php:16 -#: application/views/statistics/index.php:65 +#: application/views/statistics/index.php:67 msgid "Bands" msgstr "" @@ -1274,8 +1274,8 @@ msgstr "" #: application/views/simplefle/index.php:157 #: application/views/statistics/antennaanalytics.php:31 #: application/views/statistics/index.php:15 -#: application/views/statistics/index.php:20 -#: application/views/statistics/index.php:62 +#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:64 #: application/views/timeline/index.php:19 application/views/user/edit.php:244 #: application/views/user/edit.php:267 application/views/user/edit.php:290 #: application/views/user/edit.php:313 application/views/user/edit.php:337 @@ -1548,7 +1548,7 @@ msgstr "" #: application/views/simplefle/index.php:156 #: application/views/stationsetup/exportmapoptions.php:31 #: application/views/statistics/antennaanalytics.php:19 -#: application/views/statistics/index.php:21 +#: application/views/statistics/index.php:22 #: application/views/timeline/index.php:7 #: application/views/timeplotter/index.php:14 #: application/views/user/edit.php:242 application/views/user/edit.php:265 @@ -1595,6 +1595,7 @@ msgstr "" #: application/views/qso/components/previous_contacts.php:90 #: application/views/search/search_result_ajax.php:17 #: application/views/simplefle/index.php:116 +#: application/views/statistics/index.php:23 #: application/views/user/edit.php:255 application/views/user/edit.php:278 #: application/views/user/edit.php:301 application/views/user/edit.php:324 #: application/views/user/edit.php:348 @@ -2379,13 +2380,13 @@ msgstr "" msgid "Statistics" msgstr "" -#: application/controllers/Statistics.php:209 +#: application/controllers/Statistics.php:238 #: application/views/interface_assets/header.php:143 #: application/views/statistics/qsltable.php:5 msgid "QSL Statistics" msgstr "" -#: application/controllers/Statistics.php:224 +#: application/controllers/Statistics.php:253 #: application/views/interface_assets/header.php:141 #: application/views/statistics/antennaanalytics.php:3 msgid "Antenna Analytics" @@ -2916,82 +2917,82 @@ msgstr "" msgid "HRDlog: No station profiles with HRDlog Credentials found." msgstr "" -#: application/models/Logbook_model.php:3875 +#: application/models/Logbook_model.php:3899 #, php-format msgid "Wrong station callsign %s while importing QSO with %s for %s: SKIPPED" msgstr "" -#: application/models/Logbook_model.php:3876 +#: application/models/Logbook_model.php:3900 #, php-format msgid "Check %s for hints about errors in ADIF files." msgstr "" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 msgid "QSO on" msgstr "" -#: application/models/Logbook_model.php:3888 +#: application/models/Logbook_model.php:3912 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:4187 +#: application/models/Logbook_model.php:4211 msgid "the qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4198 +#: application/models/Logbook_model.php:4222 msgid "the qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4259 +#: application/models/Logbook_model.php:4283 msgid "the clublog_qso_upload_date is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4279 +#: application/models/Logbook_model.php:4303 msgid "the lotw_qslrdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4300 +#: application/models/Logbook_model.php:4324 msgid "the lotw_qslsdate is invalid (YYYYMMDD)" msgstr "" -#: application/models/Logbook_model.php:4581 +#: application/models/Logbook_model.php:4605 #: application/views/simplefle/index.php:40 msgid "Duplicate for" msgstr "" -#: application/models/Logbook_model.php:4642 +#: application/models/Logbook_model.php:4666 msgid "QSO could not be matched" msgstr "" -#: application/models/Logbook_model.php:4648 +#: application/models/Logbook_model.php:4672 msgid "confirmed by LoTW/Clublog/eQSL/Contest" msgstr "" -#: application/models/Logbook_model.php:4653 +#: application/models/Logbook_model.php:4677 msgid "confirmed by award manager" msgstr "" -#: application/models/Logbook_model.php:4656 +#: application/models/Logbook_model.php:4680 msgid "confirmed by cross-check of DCL data" msgstr "" -#: application/models/Logbook_model.php:4659 +#: application/models/Logbook_model.php:4683 msgid "confirmation pending" msgstr "" -#: application/models/Logbook_model.php:4662 +#: application/models/Logbook_model.php:4686 msgid "unconfirmed" msgstr "" -#: application/models/Logbook_model.php:4665 +#: application/models/Logbook_model.php:4689 #: application/views/satellite/index.php:52 #: application/views/view_log/qso.php:287 msgid "unknown" msgstr "" -#: application/models/Logbook_model.php:5475 +#: application/models/Logbook_model.php:5499 #: application/views/activated_gridmap/index.php:110 #: application/views/awards/ffma/index.php:38 #: application/views/awards/gridmaster/index.php:44 @@ -3073,8 +3074,8 @@ msgstr "" #: application/views/dashboard/index.php:296 #: application/views/dayswithqso/index.php:41 #: application/views/dayswithqso/index.php:81 -#: application/views/statistics/index.php:18 -#: application/views/statistics/index.php:36 +#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:38 #: application/views/timeline/index.php:107 #: application/views/visitor/index.php:250 msgid "Year" @@ -3557,7 +3558,7 @@ msgstr "" #: application/views/satellite/skedtable.php:7 #: application/views/satellite/skedtable.php:56 #: application/views/sattimers/index.php:38 -#: application/views/statistics/index.php:22 +#: application/views/statistics/index.php:24 msgid "Satellite" msgstr "" @@ -5921,6 +5922,8 @@ msgstr "" #: application/views/cabrillo/index.php:164 #: application/views/reg1test/index.php:70 +#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:73 msgid "Operators" msgstr "" @@ -6672,7 +6675,7 @@ msgid "VUCC Gridsquare" msgstr "" #: application/views/continents/index.php:63 -#: application/views/statistics/index.php:19 +#: application/views/statistics/index.php:20 msgid "# of QSO's worked" msgstr "" @@ -8437,8 +8440,8 @@ msgstr "" #: application/views/interface_assets/header.php:289 #: application/views/notes/add.php:38 application/views/notes/edit.php:39 #: application/views/satellite/index.php:11 -#: application/views/statistics/index.php:48 -#: application/views/statistics/index.php:102 +#: application/views/statistics/index.php:50 +#: application/views/statistics/index.php:111 msgid "Satellites" msgstr "" @@ -8777,8 +8780,8 @@ msgid "Label types" msgstr "" #: application/views/labels/index.php:81 -#: application/views/statistics/index.php:68 -#: application/views/statistics/index.php:105 +#: application/views/statistics/index.php:70 +#: application/views/statistics/index.php:114 #: application/views/widgets/qsos.php:3 msgid "QSOs" msgstr "" @@ -9712,7 +9715,7 @@ msgid "Category" msgstr "" #: application/views/notes/add.php:36 application/views/notes/edit.php:37 -#: application/views/qso/index.php:31 application/views/statistics/index.php:44 +#: application/views/qso/index.php:31 application/views/statistics/index.php:46 #: application/views/user/edit.php:169 msgid "General" msgstr "" @@ -12211,25 +12214,25 @@ msgid "Elevation" msgstr "" #: application/views/statistics/index.php:14 -#: application/views/statistics/index.php:59 +#: application/views/statistics/index.php:61 msgid "Years" msgstr "" -#: application/views/statistics/index.php:17 +#: application/views/statistics/index.php:18 msgid "Number of QSOs worked each year" msgstr "" -#: application/views/statistics/index.php:29 +#: application/views/statistics/index.php:31 msgid "Explore the logbook." msgstr "" -#: application/views/statistics/index.php:33 +#: application/views/statistics/index.php:35 #: application/views/timeline/index.php:111 msgid "All Years" msgstr "" -#: application/views/statistics/index.php:71 -#: application/views/statistics/index.php:108 +#: application/views/statistics/index.php:76 +#: application/views/statistics/index.php:117 msgid "Unique callsigns" msgstr "" From d05d8d208ffc596f580fcaeece789ef0ae61640b Mon Sep 17 00:00:00 2001 From: Karuru Date: Mon, 27 Jan 2025 11:23:24 +0000 Subject: [PATCH 13/17] Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (2403 of 2403 strings) Translation: Wavelog/Main Translation Translate-URL: https://translate.wavelog.org/projects/wavelog/main-translation/zh_Hans/ --- application/locale/zh_CN/LC_MESSAGES/messages.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index c6bbcde27..91849484c 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" "POT-Creation-Date: 2025-01-23 10:57+0000\n" -"PO-Revision-Date: 2025-01-24 15:27+0000\n" -"Last-Translator: hellofinch <543933756@qq.com>\n" +"PO-Revision-Date: 2025-01-27 12:34+0000\n" +"Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified Han script) \n" "Language: zh_CN\n" @@ -9075,7 +9075,7 @@ msgstr "卫星模式" #: application/views/logbookadvanced/edit.php:88 msgid "Band TX" -msgstr "" +msgstr "发送频段" #: application/views/logbookadvanced/edit.php:101 msgid "Band RX" From ecd2df4ae562d7640061841e412b4eb73e7ef113 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 27 Jan 2025 13:03:26 +0000 Subject: [PATCH 14/17] po/mo updates --- application/locale/bg_BG/LC_MESSAGES/messages.po | 4 ++-- application/locale/bs/LC_MESSAGES/messages.po | 4 ++-- application/locale/cnr/LC_MESSAGES/messages.po | 4 ++-- application/locale/cs_CZ/LC_MESSAGES/messages.po | 4 ++-- application/locale/de_DE/LC_MESSAGES/messages.po | 4 ++-- application/locale/el_GR/LC_MESSAGES/messages.po | 4 ++-- application/locale/es_ES/LC_MESSAGES/messages.po | 4 ++-- application/locale/et/LC_MESSAGES/messages.po | 4 ++-- application/locale/fi_FI/LC_MESSAGES/messages.po | 4 ++-- application/locale/fr_FR/LC_MESSAGES/messages.po | 4 ++-- application/locale/hr/LC_MESSAGES/messages.po | 4 ++-- application/locale/hy/LC_MESSAGES/messages.po | 4 ++-- application/locale/it_IT/LC_MESSAGES/messages.po | 4 ++-- application/locale/lt/LC_MESSAGES/messages.po | 4 ++-- application/locale/lv/LC_MESSAGES/messages.po | 4 ++-- application/locale/nl_NL/LC_MESSAGES/messages.po | 4 ++-- application/locale/pl_PL/LC_MESSAGES/messages.po | 4 ++-- application/locale/pt_PT/LC_MESSAGES/messages.po | 4 ++-- application/locale/ru_RU/LC_MESSAGES/messages.po | 4 ++-- application/locale/sl/LC_MESSAGES/messages.po | 4 ++-- application/locale/sq/LC_MESSAGES/messages.po | 4 ++-- application/locale/sr/LC_MESSAGES/messages.po | 4 ++-- application/locale/sv_SE/LC_MESSAGES/messages.po | 4 ++-- application/locale/tr_TR/LC_MESSAGES/messages.po | 4 ++-- application/locale/zh_CN/LC_MESSAGES/messages.po | 4 ++-- assets/lang_src/messages.pot | 4 ++-- 26 files changed, 52 insertions(+), 52 deletions(-) diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index f50c382a8..a47b955bc 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: 2025-01-27 12:34+0000\n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" "PO-Revision-Date: 2024-11-01 08:53+0000\n" "Last-Translator: Plamen Panteleev \n" "Language-Team: Bulgarian \n" "Language-Team: Bosnian \n" "Language-Team: Montenegrin \n" "Language-Team: Czech \n" "Language-Team: German \n" "Language-Team: Greek \n" "Language-Team: Spanish \n" "Language-Team: Estonian \n" "Language-Team: Finnish \n" "Language-Team: French \n" "Language-Team: Croatian \n" "Language-Team: Italian \n" "Language-Team: Lithuanian \n" "Language-Team: Latvian \n" "Language-Team: Dutch \n" "Language-Team: Polish \n" "Language-Team: Portuguese (Portugal) \n" "Language-Team: Russian \n" "Language-Team: Albanian \n" "Language-Team: Serbian \n" "Language-Team: Swedish \n" "Language-Team: Turkish \n" "Language-Team: Chinese (Simplified Han script) \n" "Language-Team: LANGUAGE \n" @@ -714,7 +714,7 @@ msgstr "" msgid "Update Contest" msgstr "" -#: application/controllers/Continents.php:25 +#: application/controllers/Continents.php:26 #: application/views/awards/dxcc/index.php:83 #: application/views/awards/iota/index.php:57 #: application/views/interface_assets/header.php:163 From 07e36a85666f76991e164e99fd1b5b1a16b8f705 Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 27 Jan 2025 14:12:40 +0100 Subject: [PATCH 15/17] Handle 2-char grids (prevent filling the error log) --- application/libraries/Qra.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/libraries/Qra.php b/application/libraries/Qra.php index 2df9a6521..acb5a3884 100644 --- a/application/libraries/Qra.php +++ b/application/libraries/Qra.php @@ -313,6 +313,7 @@ function qra2latlong($strQRA) { if ((strlen($strQRA) % 2 == 0) && (strlen($strQRA) <= 10)) { // Check if QRA is EVEN (the % 2 does that) and smaller/equal 8 $strQRA = strtoupper($strQRA); + if (strlen($strQRA) == 2) $strQRA .= "55"; // Only 2 Chars? Fill with center "55" if (strlen($strQRA) == 4) $strQRA .= "LL"; // Only 4 Chars? Fill with center "LL" as only A-R allowed if (strlen($strQRA) == 6) $strQRA .= "55"; // Only 6 Chars? Fill with center "55" if (strlen($strQRA) == 8) $strQRA .= "LL"; // Only 8 Chars? Fill with center "LL" as only A-R allowed From 26c478e2b161a8d60305260a8718fb26e4905694 Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 27 Jan 2025 15:12:55 +0100 Subject: [PATCH 16/17] Add a link to VUCC modal for worked grids Signed-off-by: phl0 --- assets/js/sections/hamsat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/sections/hamsat.js b/assets/js/sections/hamsat.js index 2d7cf9cd6..adaffaf7d 100644 --- a/assets/js/sections/hamsat.js +++ b/assets/js/sections/hamsat.js @@ -139,7 +139,7 @@ function loadActivationsTable(rows, show_workable_only) { for (var j=0; j < activation.grids_wkd.length; j++) { if (!grids.some(str => str.includes(activation.grids[j].substring(0, 4)))) { if (activation.grids_wkd[j] == 1) { - grids.push(""+activation.grids[j].substring(0, 4)+"") + grids.push(""+activation.grids[j].substring(0, 4)+"") } else { grids.push(""+activation.grids[j].substring(0, 4)+"") } From 613e9d973b37b708d67efecc9d14277553bfe686 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 27 Jan 2025 18:27:58 +0000 Subject: [PATCH 17/17] po/mo updates --- .../locale/zh_CN/LC_MESSAGES/messages.mo | Bin 209471 -> 209512 bytes .../locale/zh_CN/LC_MESSAGES/messages.po | 72 ++++-------------- 2 files changed, 16 insertions(+), 56 deletions(-) diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 8de7275897faf325f6a12932a45de5df9d83eb12..14ee834bf07e36ab1ceb22f78c02f3a7a277ab4e 100644 GIT binary patch delta 51677 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 Ca=p9& delta 51663 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 C?6!0O diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index a213bd2d3..5ad6e6be9 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2025-01-23 10:57+0000\n" +"POT-Creation-Date: 2025-01-27 13:03+0000\n" "PO-Revision-Date: 2025-01-27 12:34+0000\n" "Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified Han script)