diff --git a/application/controllers/Accumulated.php b/application/controllers/Accumulated.php
index 183329f73..f8616fb4b 100644
--- a/application/controllers/Accumulated.php
+++ b/application/controllers/Accumulated.php
@@ -10,7 +10,7 @@ class Accumulated extends CI_Controller
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
}
diff --git a/application/controllers/Activators.php b/application/controllers/Activators.php
index eb5667f6c..652833dc6 100644
--- a/application/controllers/Activators.php
+++ b/application/controllers/Activators.php
@@ -10,7 +10,7 @@ class Activators extends CI_Controller
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
}
diff --git a/application/controllers/Activatorsmap.php b/application/controllers/Activatorsmap.php
index 1399f4d0f..288527c7c 100644
--- a/application/controllers/Activatorsmap.php
+++ b/application/controllers/Activatorsmap.php
@@ -10,7 +10,7 @@ class Activatorsmap extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Adif.php b/application/controllers/Adif.php
index 4b83bc15e..7dd8af5f7 100644
--- a/application/controllers/Adif.php
+++ b/application/controllers/Adif.php
@@ -10,7 +10,7 @@ class adif extends CI_Controller {
$this->load->helper(array('form', 'url'));
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function test() {
diff --git a/application/controllers/Awards.php b/application/controllers/Awards.php
index 823ff2777..405b8ccc9 100644
--- a/application/controllers/Awards.php
+++ b/application/controllers/Awards.php
@@ -13,7 +13,7 @@ class Awards extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Backup.php b/application/controllers/Backup.php
index 44bf3bace..5c65e2028 100644
--- a/application/controllers/Backup.php
+++ b/application/controllers/Backup.php
@@ -10,7 +10,7 @@ class Backup extends CI_Controller {
public function index()
{
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['page_title'] = __("Backup");
@@ -23,7 +23,7 @@ class Backup extends CI_Controller {
public function adif($key = null){
if ($key == null) {
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
$clean_key = $this->security->xss_clean($key);
@@ -60,7 +60,7 @@ class Backup extends CI_Controller {
public function notes($key = null) {
if ($key == null) {
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
$clean_key = $this->security->xss_clean($key);
diff --git a/application/controllers/Band.php b/application/controllers/Band.php
index 052114aab..121c10803 100644
--- a/application/controllers/Band.php
+++ b/application/controllers/Band.php
@@ -12,7 +12,7 @@ class Band extends CI_Controller {
$this->load->helper(array('form', 'url'));
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Bandmap.php b/application/controllers/Bandmap.php
index 55c7fef4c..8145030ca 100644
--- a/application/controllers/Bandmap.php
+++ b/application/controllers/Bandmap.php
@@ -6,7 +6,7 @@ class Bandmap extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('bands');
}
diff --git a/application/controllers/Cabrillo.php b/application/controllers/Cabrillo.php
index a8b77cf88..062c079ee 100644
--- a/application/controllers/Cabrillo.php
+++ b/application/controllers/Cabrillo.php
@@ -13,7 +13,7 @@ class Cabrillo extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
@@ -50,7 +50,7 @@ class Cabrillo extends CI_Controller {
header('Content-Type: application/json');
echo json_encode($result);
} else {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard');
}
}
@@ -77,7 +77,7 @@ class Cabrillo extends CI_Controller {
header('Content-Type: application/json');
echo json_encode($result);
} else {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard');
}
}
@@ -132,7 +132,7 @@ class Cabrillo extends CI_Controller {
$this->load->view('cabrillo/export', $data);
}else {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard');
}
}
}
diff --git a/application/controllers/Calltester.php b/application/controllers/Calltester.php
index 84afaa8b3..f5baad08e 100644
--- a/application/controllers/Calltester.php
+++ b/application/controllers/Calltester.php
@@ -8,7 +8,7 @@ class Calltester extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
diff --git a/application/controllers/Cfdexport.php b/application/controllers/Cfdexport.php
index 9e40c792d..4d15bff2b 100644
--- a/application/controllers/Cfdexport.php
+++ b/application/controllers/Cfdexport.php
@@ -15,7 +15,7 @@ class Cfdexport extends CI_Controller {
$this->load->model('logbook_model');
$this->load->model('bands');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['page_title'] = __("CFD Export");
@@ -26,7 +26,7 @@ class Cfdexport extends CI_Controller {
public function export() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('logbook_model');
$this->load->model('dxcc');
diff --git a/application/controllers/Components.php b/application/controllers/Components.php
index 63d807188..283700e03 100644
--- a/application/controllers/Components.php
+++ b/application/controllers/Components.php
@@ -10,7 +10,7 @@ class Components extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Contestcalendar.php b/application/controllers/Contestcalendar.php
index 421b42dab..a6e80a5e9 100644
--- a/application/controllers/Contestcalendar.php
+++ b/application/controllers/Contestcalendar.php
@@ -12,7 +12,7 @@ class Contestcalendar extends CI_Controller {
public function index() {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
diff --git a/application/controllers/Contesting.php b/application/controllers/Contesting.php
index b0dac9839..7aef397c9 100644
--- a/application/controllers/Contesting.php
+++ b/application/controllers/Contesting.php
@@ -11,7 +11,7 @@ class Contesting extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Cron.php b/application/controllers/Cron.php
index a122876c1..7e31fbb7e 100644
--- a/application/controllers/Cron.php
+++ b/application/controllers/Cron.php
@@ -23,7 +23,7 @@ class cron extends CI_Controller {
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -142,7 +142,7 @@ class cron extends CI_Controller {
public function edit() {
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
diff --git a/application/controllers/Csv.php b/application/controllers/Csv.php
index 9b7c4b7dd..037de83cb 100644
--- a/application/controllers/Csv.php
+++ b/application/controllers/Csv.php
@@ -5,7 +5,7 @@ class Csv extends CI_Controller {
public function index() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('modes');
$this->load->model('logbook_model');
@@ -28,7 +28,7 @@ class Csv extends CI_Controller {
public function export() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('csv_model');
// Parameters
diff --git a/application/controllers/Dashboard.php b/application/controllers/Dashboard.php
index a7231554d..8741cbf01 100644
--- a/application/controllers/Dashboard.php
+++ b/application/controllers/Dashboard.php
@@ -43,6 +43,9 @@ class Dashboard extends CI_Controller
$data['qra'] = "none";
}
+ // We need the form_helper for the layout/messages
+ $this->load->helper('form');
+
$this->load->model('stations');
$this->load->model('setup_model');
diff --git a/application/controllers/Dayswithqso.php b/application/controllers/Dayswithqso.php
index 9e1bb0862..c82567b55 100644
--- a/application/controllers/Dayswithqso.php
+++ b/application/controllers/Dayswithqso.php
@@ -8,7 +8,7 @@ class Dayswithqso extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php
index e9af0827a..c2c377e41 100644
--- a/application/controllers/Debug.php
+++ b/application/controllers/Debug.php
@@ -7,7 +7,7 @@ class Debug extends CI_Controller
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
diff --git a/application/controllers/Distances.php b/application/controllers/Distances.php
index f68287ca1..5c65831fa 100644
--- a/application/controllers/Distances.php
+++ b/application/controllers/Distances.php
@@ -8,7 +8,7 @@ class Distances extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Dxatlas.php b/application/controllers/Dxatlas.php
index 48cbf81bf..dc10fa4f9 100644
--- a/application/controllers/Dxatlas.php
+++ b/application/controllers/Dxatlas.php
@@ -4,7 +4,7 @@ class Dxatlas extends CI_Controller {
public function index() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('modes');
$this->load->model('logbook_model');
@@ -26,7 +26,7 @@ class Dxatlas extends CI_Controller {
public function export() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('dxatlas_model');
@@ -48,7 +48,7 @@ class Dxatlas extends CI_Controller {
function generateFiles($wkdArray, $cfmArray, $band) {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$gridCfmArray = [];
$gridWkdArray = [];
@@ -105,7 +105,7 @@ class Dxatlas extends CI_Controller {
function makeZip($gridWkdString, $gridCfmString, $band) {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$zipFileName = 'dxatlas_gridsquares_'. $band . '.zip';
// Prepare File
$file = tempnam(".", "zip");
diff --git a/application/controllers/Dxcalendar.php b/application/controllers/Dxcalendar.php
index 9a4029702..a9281c925 100644
--- a/application/controllers/Dxcalendar.php
+++ b/application/controllers/Dxcalendar.php
@@ -5,7 +5,7 @@ class Dxcalendar extends CI_Controller {
public function index() {
$this->load->model('user_model');
$this->load->model('logbook_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['page_title'] = __("DX Calendar");
diff --git a/application/controllers/Dxcluster.php b/application/controllers/Dxcluster.php
index 3a642256c..4414873f5 100644
--- a/application/controllers/Dxcluster.php
+++ b/application/controllers/Dxcluster.php
@@ -6,7 +6,7 @@ class Dxcluster extends CI_Controller {
{
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('dxcluster_model');
}
diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php
index 6c70c9eee..6126a2a59 100644
--- a/application/controllers/Eqsl.php
+++ b/application/controllers/Eqsl.php
@@ -20,7 +20,7 @@ class eqsl extends CI_Controller {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -44,7 +44,7 @@ class eqsl extends CI_Controller {
public function import() {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -141,7 +141,7 @@ class eqsl extends CI_Controller {
public function export() {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -220,7 +220,7 @@ class eqsl extends CI_Controller {
function generateResultTable($custom_date_format, $rows) {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -244,7 +244,7 @@ class eqsl extends CI_Controller {
function writeEqslNotSent($qslsnotsent, $custom_date_format) {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
$table = '
';
@@ -283,7 +283,7 @@ class eqsl extends CI_Controller {
function image($id) {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
$this->load->library('electronicqsl');
@@ -345,7 +345,7 @@ class eqsl extends CI_Controller {
function bulk_download_image($id) {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
$this->load->library('electronicqsl');
@@ -408,7 +408,7 @@ class eqsl extends CI_Controller {
// Check logged in
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -424,7 +424,7 @@ class eqsl extends CI_Controller {
// Check logged in
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
$errors = 0;
@@ -484,7 +484,7 @@ class eqsl extends CI_Controller {
// Check logged in
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
diff --git a/application/controllers/Hamsat.php b/application/controllers/Hamsat.php
index ae9516f99..4d25a4457 100644
--- a/application/controllers/Hamsat.php
+++ b/application/controllers/Hamsat.php
@@ -10,7 +10,7 @@ class Hamsat extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Kmlexport.php b/application/controllers/Kmlexport.php
index 7ef266e35..dcc5772eb 100644
--- a/application/controllers/Kmlexport.php
+++ b/application/controllers/Kmlexport.php
@@ -15,7 +15,7 @@ class Kmlexport extends CI_Controller {
$this->load->model('logbook_model');
$this->load->model('bands');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['worked_bands'] = $this->bands->get_worked_bands(); // Used in the view for band select
$data['modes'] = $this->modes->active(); // Used in the view for mode select
@@ -30,7 +30,7 @@ class Kmlexport extends CI_Controller {
public function export() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
// Load Libraries
if(!$this->load->is_loaded('Qra')) {
$this->load->library('Qra');
diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php
index 42f75fe7f..53ce1a0df 100644
--- a/application/controllers/Labels.php
+++ b/application/controllers/Labels.php
@@ -23,7 +23,7 @@ class Labels extends CI_Controller {
$this->load->helper(array('form', 'url', 'psr4_autoloader'));
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
diff --git a/application/controllers/Logbookadvanced.php b/application/controllers/Logbookadvanced.php
index f7d5d6b02..fa3976e05 100644
--- a/application/controllers/Logbookadvanced.php
+++ b/application/controllers/Logbookadvanced.php
@@ -13,7 +13,7 @@ class Logbookadvanced extends CI_Controller {
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
}
diff --git a/application/controllers/Lookup.php b/application/controllers/Lookup.php
index a56437e13..88fe726eb 100644
--- a/application/controllers/Lookup.php
+++ b/application/controllers/Lookup.php
@@ -14,7 +14,7 @@ class Lookup extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php
index 3c4412e23..d5b90ed03 100644
--- a/application/controllers/Lotw.php
+++ b/application/controllers/Lotw.php
@@ -42,7 +42,7 @@ class Lotw extends CI_Controller {
public function index() {
$this->load->library('Permissions');
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
// Load required models for page generation
$this->load->model('Lotw_model');
@@ -74,7 +74,7 @@ class Lotw extends CI_Controller {
public function cert_upload() {
$this->load->model('user_model');
$this->load->model('dxcc');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
// Load DXCC Countrys List
$data['dxcc_list'] = $this->dxcc->list();
@@ -101,7 +101,7 @@ class Lotw extends CI_Controller {
{
$this->load->model('user_model');
$this->load->model('dxcc');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
// create folder to store certs while processing
if (!file_exists('./uploads/lotw/certs')) {
@@ -375,7 +375,7 @@ class Lotw extends CI_Controller {
*/
public function delete_cert($cert_id) {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('Lotw_model');
@@ -398,7 +398,7 @@ class Lotw extends CI_Controller {
*/
public function decrypt_key($file, $password = "") {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$results = array();
$password = $password; // Only needed if 12 has a password set
@@ -709,7 +709,7 @@ class Lotw extends CI_Controller {
public function import() { // Is only called via frontend. Cron uses "upload". within download the download is called
$this->load->model('user_model');
if(!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
exit();
}
@@ -817,7 +817,7 @@ class Lotw extends CI_Controller {
}
}
} else {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
exit();
}
@@ -825,7 +825,7 @@ class Lotw extends CI_Controller {
public function export() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['page_title'] = __("LoTW .TQ8 Upload");
diff --git a/application/controllers/Mode.php b/application/controllers/Mode.php
index d0f61c120..865243d84 100644
--- a/application/controllers/Mode.php
+++ b/application/controllers/Mode.php
@@ -12,7 +12,7 @@ class Mode extends CI_Controller {
$this->load->helper(array('form', 'url'));
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Notes.php b/application/controllers/Notes.php
index b411a3fc9..ba27c2a00 100644
--- a/application/controllers/Notes.php
+++ b/application/controllers/Notes.php
@@ -7,7 +7,7 @@ class Notes extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
diff --git a/application/controllers/Options.php b/application/controllers/Options.php
index 9a3f5469a..821997281 100644
--- a/application/controllers/Options.php
+++ b/application/controllers/Options.php
@@ -12,7 +12,7 @@ class Options extends CI_Controller {
$this->load->helper(array('form', 'url'));
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
diff --git a/application/controllers/Oqrs.php b/application/controllers/Oqrs.php
index 52ba6d31a..5e723d484 100644
--- a/application/controllers/Oqrs.php
+++ b/application/controllers/Oqrs.php
@@ -11,8 +11,8 @@ class Oqrs extends CI_Controller {
parent::__construct();
// Commented out to get public access
// $this->load->model('user_model');
- // if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
- if (($this->config->item('disable_oqrs') ?? false)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ // if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
+ if (($this->config->item('disable_oqrs') ?? false)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Qrbcalc.php b/application/controllers/Qrbcalc.php
index 7ac4499cc..2056ae154 100644
--- a/application/controllers/Qrbcalc.php
+++ b/application/controllers/Qrbcalc.php
@@ -10,7 +10,7 @@ class Qrbcalc extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Qrz.php b/application/controllers/Qrz.php
index 94d5500a5..965489808 100644
--- a/application/controllers/Qrz.php
+++ b/application/controllers/Qrz.php
@@ -248,7 +248,7 @@ class Qrz extends CI_Controller {
public function import_qrz() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['page_title'] = __("QRZ QSL Import");
diff --git a/application/controllers/Qsl.php b/application/controllers/Qsl.php
index 68aff8681..59177e8ad 100644
--- a/application/controllers/Qsl.php
+++ b/application/controllers/Qsl.php
@@ -9,8 +9,8 @@ class Qsl extends CI_Controller {
function __construct() {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
- if(($this->config->item('disable_qsl') ?? false)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); exit; }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
+ if(($this->config->item('disable_qsl') ?? false)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); exit; }
}
// Default view when loading controller.
@@ -41,7 +41,7 @@ class Qsl extends CI_Controller {
// Deletes QSL Card
public function delete() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$id = $this->input->post('id');
$this->load->model('Qsl_model');
$this->Qsl_model->deleteQsl($id);
@@ -49,7 +49,7 @@ class Qsl extends CI_Controller {
public function uploadqsl() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$qsoid = $this->input->post('qsoid');
diff --git a/application/controllers/Qslprint.php b/application/controllers/Qslprint.php
index 81392bef3..1491e160e 100644
--- a/application/controllers/Qslprint.php
+++ b/application/controllers/Qslprint.php
@@ -144,7 +144,7 @@ class QSLPrint extends CI_Controller {
$this->load->model('qslprint_model');
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
// Update Logbook to Mark Paper Card Sent
diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php
index 23821f9d3..028a89527 100644
--- a/application/controllers/Qso.php
+++ b/application/controllers/Qso.php
@@ -6,7 +6,7 @@ class QSO extends CI_Controller {
{
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
@@ -16,7 +16,7 @@ class QSO extends CI_Controller {
$this->load->model('user_model');
$this->load->model('modes');
$this->load->model('bands');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
// Getting the live/post mode from GET command
// 0 = live
@@ -173,7 +173,7 @@ class QSO extends CI_Controller {
$this->load->model('logbook_model');
$this->load->model('user_model');
$this->load->model('modes');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$query = $this->logbook_model->qso_info($this->uri->segment(3));
$this->load->library('form_validation');
@@ -276,7 +276,7 @@ class QSO extends CI_Controller {
$this->load->library('form_validation');
if(!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard');
}
$id = str_replace('"', "", $this->input->post("id", TRUE));
@@ -296,7 +296,7 @@ class QSO extends CI_Controller {
$this->load->model('logbook_model');
$this->load->model('user_model');
if(!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard');
}
$this->logbook_model->edit();
@@ -305,7 +305,7 @@ class QSO extends CI_Controller {
function qsl_rcvd($id, $method) {
$this->load->model('logbook_model');
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
// Update Logbook to Mark Paper Card Received
@@ -600,7 +600,7 @@ class QSO extends CI_Controller {
// Return Previous QSOs Made in the active logbook
public function component_past_contacts() {
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('logbook_model');
session_write_close();
diff --git a/application/controllers/Radio.php b/application/controllers/Radio.php
index 577cded5a..1d9af0cfd 100644
--- a/application/controllers/Radio.php
+++ b/application/controllers/Radio.php
@@ -256,7 +256,7 @@ class Radio extends CI_Controller {
// Check Auth
$this->load->model('user_model');
if (!$this->user_model->authorize(3)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -282,7 +282,7 @@ class Radio extends CI_Controller {
// Check Auth
$this->load->model('user_model');
if (!$this->user_model->authorize(3)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -298,7 +298,7 @@ class Radio extends CI_Controller {
// Check Auth
$this->load->model('user_model');
if (!$this->user_model->authorize(3)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
diff --git a/application/controllers/Satellite.php b/application/controllers/Satellite.php
index d35ef170a..04860825b 100644
--- a/application/controllers/Satellite.php
+++ b/application/controllers/Satellite.php
@@ -12,7 +12,7 @@ class Satellite extends CI_Controller {
$this->load->helper(array('form', 'url'));
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Sattimers.php b/application/controllers/Sattimers.php
index dcd1a6127..053c26e3b 100644
--- a/application/controllers/Sattimers.php
+++ b/application/controllers/Sattimers.php
@@ -6,7 +6,7 @@ class Sattimers extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Search.php b/application/controllers/Search.php
index 51c4aeef5..614bd6ae2 100644
--- a/application/controllers/Search.php
+++ b/application/controllers/Search.php
@@ -10,7 +10,7 @@ class Search extends CI_Controller {
$this->load->helper(array('form', 'url'));
if($this->optionslib->get_option('global_search') != "true") {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
}
diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php
index d0859fcd7..b090e9afa 100644
--- a/application/controllers/Simplefle.php
+++ b/application/controllers/Simplefle.php
@@ -4,7 +4,7 @@ class SimpleFLE extends CI_Controller {
public function index() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$this->load->model('stations');
diff --git a/application/controllers/Station.php b/application/controllers/Station.php
index 7cc014b62..6ac978521 100644
--- a/application/controllers/Station.php
+++ b/application/controllers/Station.php
@@ -14,7 +14,7 @@ class Station extends CI_Controller
$this->load->model('user_model');
if (!$this->user_model->authorize(2)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
}
diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php
index 40ef64be3..1c4afd6b0 100644
--- a/application/controllers/Stationsetup.php
+++ b/application/controllers/Stationsetup.php
@@ -12,7 +12,7 @@ class Stationsetup extends CI_Controller {
$this->load->helper(array('form', 'url'));
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index() {
diff --git a/application/controllers/Themes.php b/application/controllers/Themes.php
index ba032823a..6b52aa4e7 100644
--- a/application/controllers/Themes.php
+++ b/application/controllers/Themes.php
@@ -14,7 +14,7 @@ class Themes extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Timeline.php b/application/controllers/Timeline.php
index 24e2b78f7..d0acdbe5e 100644
--- a/application/controllers/Timeline.php
+++ b/application/controllers/Timeline.php
@@ -8,7 +8,7 @@ class Timeline extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Timeplotter.php b/application/controllers/Timeplotter.php
index 9a74eb55d..da550db18 100644
--- a/application/controllers/Timeplotter.php
+++ b/application/controllers/Timeplotter.php
@@ -8,7 +8,7 @@ class Timeplotter extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function index()
diff --git a/application/controllers/Update.php b/application/controllers/Update.php
index 8c1ba2ca9..20aa07ce9 100644
--- a/application/controllers/Update.php
+++ b/application/controllers/Update.php
@@ -21,7 +21,7 @@ class Update extends CI_Controller {
public function index()
{
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['page_title'] = __("Updates");
$this->load->view('interface_assets/header', $data);
@@ -270,7 +270,7 @@ class Update extends CI_Controller {
public function check_missing_dxcc($all = false){
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -281,7 +281,7 @@ class Update extends CI_Controller {
public function check_missing_continent() {
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -292,7 +292,7 @@ class Update extends CI_Controller {
public function update_distances() {
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
@@ -303,7 +303,7 @@ class Update extends CI_Controller {
public function check_missing_grid($all = false){
$this->load->model('user_model');
if (!$this->user_model->authorize(99)) {
- $this->session->set_flashdata('notice', 'You\'re not allowed to do that!');
+ $this->session->set_flashdata('error', __("You're not allowed to do that!"));
redirect('dashboard');
}
diff --git a/application/controllers/User.php b/application/controllers/User.php
index a70dd70a2..81a5c0d98 100644
--- a/application/controllers/User.php
+++ b/application/controllers/User.php
@@ -10,7 +10,7 @@ class User extends CI_Controller {
$this->load->library('encryption');
}
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['results'] = $this->user_model->users();
$data['session_uid'] = $this->session->userdata('user_id');
@@ -24,7 +24,7 @@ class User extends CI_Controller {
function add() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$data['existing_languages'] = $this->config->item('languages');
@@ -209,8 +209,8 @@ class User extends CI_Controller {
function edit() {
$this->load->model('user_model');
- if ( ($this->session->userdata('user_id') == '') || ((!$this->user_model->authorize(99)) && ($this->session->userdata('user_id') != $this->uri->segment(3))) ) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
- if ( $this->config->item('special_callsign') && $this->session->userdata('user_type') != '99' && $this->config->item('sc_hide_usermenu') ) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if ( ($this->session->userdata('user_id') == '') || ((!$this->user_model->authorize(99)) && ($this->session->userdata('user_id') != $this->uri->segment(3))) ) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
+ if ( $this->config->item('special_callsign') && $this->session->userdata('user_type') != '99' && $this->config->item('sc_hide_usermenu') ) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$query = $this->user_model->get_by_id($this->uri->segment(3));
$data['existing_languages'] = $this->config->item('languages');
@@ -385,7 +385,7 @@ class User extends CI_Controller {
$data['user_language'] = $q->user_language;
}
-
+
if($this->input->post('user_stylesheet')) {
$data['user_stylesheet'] = $this->input->post('user_stylesheet', true);
} else {
@@ -597,12 +597,12 @@ class User extends CI_Controller {
$data['user_map_'.$row->option_key.'_'.$ktype] = $this->input->post('user_map_'.$row->option_key.'_'.$ktype, true);
} else {
$data['user_map_'.$row->option_key.'_'.$ktype] = $vtype;
- }
+ }
}
} else {
$data['user_map_'.$row->option_name.'_'.$row->option_key] = $row->option_value;
}
- }
+ }
} else {
$data['user_map_qso_icon'] = "fas fa-dot-circle";
$data['user_map_qso_color'] = "#FF0000";
@@ -619,7 +619,7 @@ class User extends CI_Controller {
$data['user_locations_quickswitch'] = ($this->user_options_model->get_options('header_menu', array('option_name'=>'locations_quickswitch'), $this->uri->segment(3))->row()->option_value ?? 'false');
$data['user_utc_headermenu'] = ($this->user_options_model->get_options('header_menu', array('option_name'=>'utc_headermenu'), $this->uri->segment(3))->row()->option_value ?? 'false');
-
+
$this->load->view('interface_assets/header', $data);
$this->load->view('user/edit', $data);
$this->load->view('interface_assets/footer');
@@ -657,7 +657,7 @@ class User extends CI_Controller {
$data_options['user_map_'.$icon.'_color'] = xss_clean($this->input->post('user_map_'.$icon.'_color', true));
}
if (!empty($data_options['user_map_qso_icon'])) {
- foreach ($array_icon as $icon) {
+ foreach ($array_icon as $icon) {
$json = json_encode(array('icon'=>$data_options['user_map_'.$icon.'_icon'], 'color'=>$data_options['user_map_'.$icon.'_color']));
$this->user_options_model->set_option('map_custom','icon',array($icon=>$json));
}
@@ -722,7 +722,7 @@ class User extends CI_Controller {
function profile() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$query = $this->user_model->get_by_id($this->session->userdata('user_id'));
$q = $query->row();
$data['page_title'] = __("Profile");
@@ -741,7 +741,7 @@ class User extends CI_Controller {
function delete() {
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$query = $this->user_model->get_by_id($this->uri->segment(3));
$this->load->library('form_validation');
@@ -859,7 +859,7 @@ class User extends CI_Controller {
$this->session->set_flashdata('error', __("Login failed. Try again."));
redirect('user/login');
}
-
+
}
if ($this->form_validation->run() == FALSE) {
@@ -871,7 +871,6 @@ class User extends CI_Controller {
} else {
if($this->user_model->login() == 1) {
- $this->session->set_flashdata('notice', __("User logged in"));
$this->user_model->update_session($data['user']->user_id);
$cookie= array(
@@ -940,7 +939,7 @@ class User extends CI_Controller {
redirect('user/login');
} else {
-
+
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
@@ -1019,13 +1018,13 @@ class User extends CI_Controller {
public function admin_send_password_reset() {
header('Content-Type: application/json');
-
+
if ($this->input->is_ajax_request()) { // just additional, to make sure request is from ajax
if ($this->input->post('submit_allowed')) {
$this->load->model('user_model');
- if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(99)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
$query = $this->user_model->get_by_id($this->input->post('user_id'));
diff --git a/application/controllers/User_options.php b/application/controllers/User_options.php
index a74cfcec5..3312ea4b5 100644
--- a/application/controllers/User_options.php
+++ b/application/controllers/User_options.php
@@ -6,7 +6,7 @@ class User_Options extends CI_Controller {
parent::__construct();
$this->load->model('user_model');
$this->load->model('user_options_model');
- if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); }
+ if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('error', __("You're not allowed to do that!")); redirect('dashboard'); }
}
public function add_edit_fav() {
diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po
index f5f5c98fd..8eb5dbab4 100644
--- a/application/locale/bg_BG/LC_MESSAGES/messages.po
+++ b/application/locale/bg_BG/LC_MESSAGES/messages.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Bulgarian =2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -493,7 +564,7 @@ msgstr ""
msgid "SOTA CSV Export"
msgstr ""
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr ""
@@ -568,7 +639,7 @@ msgid "DX Calendar"
msgstr ""
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -825,7 +896,7 @@ msgstr ""
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -854,7 +925,7 @@ msgstr ""
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1511,8 +1582,8 @@ msgstr ""
msgid "QRZ ADIF Information"
msgstr ""
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -1984,43 +2055,39 @@ msgstr ""
msgid "Login"
msgstr ""
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr ""
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
"Only administrators are currently allowed to log in."
msgstr ""
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr ""
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr ""
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr ""
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr ""
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr ""
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr ""
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2239,7 +2306,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2252,7 +2319,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr ""
@@ -2540,7 +2607,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2625,7 +2692,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2667,7 +2734,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3216,7 +3283,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3263,8 +3330,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3273,8 +3340,8 @@ msgstr ""
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr ""
@@ -3871,7 +3938,7 @@ msgid "City"
msgstr ""
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4555,10 +4622,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr ""
@@ -5161,25 +5228,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr ""
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5209,10 +5276,10 @@ msgstr ""
msgid "Sent"
msgstr ""
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5239,7 +5306,7 @@ msgstr ""
msgid "Received"
msgstr ""
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5269,12 +5336,12 @@ msgstr ""
msgid "Requested"
msgstr ""
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6182,7 +6249,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
diff --git a/application/locale/cnr/LC_MESSAGES/messages.po b/application/locale/cnr/LC_MESSAGES/messages.po
index 0e525d804..6f8da8c70 100644
--- a/application/locale/cnr/LC_MESSAGES/messages.po
+++ b/application/locale/cnr/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -17,6 +17,77 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -493,7 +564,7 @@ msgstr ""
msgid "SOTA CSV Export"
msgstr ""
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr ""
@@ -568,7 +639,7 @@ msgid "DX Calendar"
msgstr ""
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -825,7 +896,7 @@ msgstr ""
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -854,7 +925,7 @@ msgstr ""
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1511,8 +1582,8 @@ msgstr ""
msgid "QRZ ADIF Information"
msgstr ""
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -1984,43 +2055,39 @@ msgstr ""
msgid "Login"
msgstr ""
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr ""
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
"Only administrators are currently allowed to log in."
msgstr ""
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr ""
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr ""
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr ""
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr ""
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr ""
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr ""
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2239,7 +2306,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2252,7 +2319,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr ""
@@ -2540,7 +2607,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2625,7 +2692,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2667,7 +2734,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3216,7 +3283,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3263,8 +3330,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3273,8 +3340,8 @@ msgstr ""
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr ""
@@ -3871,7 +3938,7 @@ msgid "City"
msgstr ""
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4555,10 +4622,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr ""
@@ -5161,25 +5228,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr ""
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5209,10 +5276,10 @@ msgstr ""
msgid "Sent"
msgstr ""
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5239,7 +5306,7 @@ msgstr ""
msgid "Received"
msgstr ""
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5269,12 +5336,12 @@ msgstr ""
msgid "Requested"
msgstr ""
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6182,7 +6249,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po
index 8b74b9522..ae3e8b8ab 100644
--- a/application/locale/cs_CZ/LC_MESSAGES/messages.po
+++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-08-06 09:50+0000\n"
"Last-Translator: Michal Šiman \n"
"Language-Team: Czech =2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 5.6.2\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -495,7 +566,7 @@ msgstr ""
msgid "SOTA CSV Export"
msgstr ""
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr ""
@@ -570,7 +641,7 @@ msgid "DX Calendar"
msgstr ""
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -829,7 +900,7 @@ msgstr ""
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -858,7 +929,7 @@ msgstr ""
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1515,8 +1586,8 @@ msgstr ""
msgid "QRZ ADIF Information"
msgstr ""
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -1988,43 +2059,39 @@ msgstr ""
msgid "Login"
msgstr "Přihlásit se"
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr ""
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
"Only administrators are currently allowed to log in."
msgstr ""
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr ""
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr ""
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr ""
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr ""
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr ""
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr ""
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2243,7 +2310,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2256,7 +2323,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr "Měsíc"
@@ -2544,7 +2611,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2629,7 +2696,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2671,7 +2738,7 @@ msgstr "Datum"
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3220,7 +3287,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3267,8 +3334,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3277,8 +3344,8 @@ msgstr "Potvrzeno"
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr "Navázáno"
@@ -3875,7 +3942,7 @@ msgid "City"
msgstr "Město"
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4559,10 +4626,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr "Dnes"
@@ -5166,25 +5233,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr "Počet QSO spojení"
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr "Počet zemí"
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr "Zbývá"
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5214,10 +5281,10 @@ msgstr "Zbývá"
msgid "Sent"
msgstr "Odesláno"
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5244,7 +5311,7 @@ msgstr "Odesláno"
msgid "Received"
msgstr "Přijato"
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5274,12 +5341,12 @@ msgstr "Přijato"
msgid "Requested"
msgstr "Vyžádáno"
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6188,7 +6255,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo
index 9ce64f415..2388d24cb 100644
Binary files a/application/locale/de_DE/LC_MESSAGES/messages.mo and b/application/locale/de_DE/LC_MESSAGES/messages.mo differ
diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po
index 22a9305b2..7204963dd 100644
--- a/application/locale/de_DE/LC_MESSAGES/messages.po
+++ b/application/locale/de_DE/LC_MESSAGES/messages.po
@@ -14,7 +14,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-08-12 10:19+0000\n"
"Last-Translator: Fabian Berg <80885850+HB9HIL@users.noreply.github.com>\n"
"Language-Team: German all QSO's of the ADIF, "
#~ "regardless if they match to the chosen station-location."
diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po
index 81e34212a..0ab05d398 100644
--- a/application/locale/el_GR/LC_MESSAGES/messages.po
+++ b/application/locale/el_GR/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
"Last-Translator: Fabian Berg \n"
"Language-Team: Greek \n"
"Language-Team: Spanish \n"
"Language-Team: Finnish \n"
"Language-Team: French 1;\n"
"X-Generator: Weblate 5.6.2\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -497,7 +568,7 @@ msgstr "Modifier les traitements Cron"
msgid "SOTA CSV Export"
msgstr "SOTA - Export CSV"
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr "Tableau de bord"
@@ -576,7 +647,7 @@ msgid "DX Calendar"
msgstr "Calendrier des DX"
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -841,7 +912,7 @@ msgstr "QSL"
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -870,7 +941,7 @@ msgstr "LoTW"
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1529,8 +1600,8 @@ msgstr "Importation QSL QRZ"
msgid "QRZ ADIF Information"
msgstr "Informations ADIF QRZ"
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -2006,11 +2077,7 @@ msgstr "La connexion a échoué. Essayer à nouveau."
msgid "Login"
msgstr "Se connecter"
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr "Utilisateur connecté"
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
@@ -2021,32 +2088,32 @@ msgstr ""
"un administrateur. Seuls les administrateurs sont actuellement autorisés à "
"se connecter."
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr "Identifiant ou mot de passe incorrect!"
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr "L'utilisateur %s s'est déconnecté."
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr "La réinitialisation du mot de passe est désactivée sur la démo !"
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr "Mot de passe oublié"
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr "Les paramètres de messagerie sont incorrects."
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr "Réinitialisation du mot de passe traitée."
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2271,7 +2338,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2284,7 +2351,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr "Mois"
@@ -2572,7 +2639,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2657,7 +2724,7 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL"
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2699,7 +2766,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3264,7 +3331,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3311,8 +3378,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3321,8 +3388,8 @@ msgstr "Confirmés"
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr "Réalisés"
@@ -3919,7 +3986,7 @@ msgid "City"
msgstr "Ville"
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4603,10 +4670,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr "Aujourd'hui"
@@ -5220,25 +5287,25 @@ msgstr "Au moins un de vos certificats LoTW est expiré !"
msgid "At least one of your LoTW certificates is about to expire!"
msgstr "Au moins un de vos certificats LoTW est sur le point d'expirer !"
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr "QSO Breakdown"
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr "Pays Breakdown"
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr "Demandés"
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5268,10 +5335,10 @@ msgstr "Demandés"
msgid "Sent"
msgstr "Envoyées"
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5298,7 +5365,7 @@ msgstr "Envoyées"
msgid "Received"
msgstr "Reçues"
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5328,12 +5395,12 @@ msgstr "Reçues"
msgid "Requested"
msgstr "Demandées"
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6245,7 +6312,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
@@ -10760,6 +10827,9 @@ msgstr ""
msgid "Submit Request"
msgstr ""
+#~ msgid "User logged in"
+#~ msgstr "Utilisateur connecté"
+
#~ msgid ""
#~ "If selected, Wavelog will try to import all QSO's of the ADIF, "
#~ "regardless if they match to the chosen station-location."
diff --git a/application/locale/hr/LC_MESSAGES/messages.po b/application/locale/hr/LC_MESSAGES/messages.po
index 10d72b4d3..1732f3460 100644
--- a/application/locale/hr/LC_MESSAGES/messages.po
+++ b/application/locale/hr/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -17,6 +17,77 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -493,7 +564,7 @@ msgstr ""
msgid "SOTA CSV Export"
msgstr ""
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr ""
@@ -568,7 +639,7 @@ msgid "DX Calendar"
msgstr ""
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -825,7 +896,7 @@ msgstr ""
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -854,7 +925,7 @@ msgstr ""
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1511,8 +1582,8 @@ msgstr ""
msgid "QRZ ADIF Information"
msgstr ""
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -1984,43 +2055,39 @@ msgstr ""
msgid "Login"
msgstr ""
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr ""
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
"Only administrators are currently allowed to log in."
msgstr ""
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr ""
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr ""
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr ""
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr ""
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr ""
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr ""
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2239,7 +2306,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2252,7 +2319,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr ""
@@ -2540,7 +2607,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2625,7 +2692,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2667,7 +2734,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3216,7 +3283,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3263,8 +3330,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3273,8 +3340,8 @@ msgstr ""
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr ""
@@ -3871,7 +3938,7 @@ msgid "City"
msgstr ""
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4555,10 +4622,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr ""
@@ -5161,25 +5228,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr ""
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5209,10 +5276,10 @@ msgstr ""
msgid "Sent"
msgstr ""
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5239,7 +5306,7 @@ msgstr ""
msgid "Received"
msgstr ""
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5269,12 +5336,12 @@ msgstr ""
msgid "Requested"
msgstr ""
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6182,7 +6249,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po
index 45c714f30..d05ef0fbc 100644
--- a/application/locale/it_IT/LC_MESSAGES/messages.po
+++ b/application/locale/it_IT/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-08-09 07:24+0000\n"
"Last-Translator: Luca \n"
"Language-Team: Italian \n"
"Language-Team: Dutch \n"
"Language-Team: Polish =20) ? 1 : 2;\n"
"X-Generator: Weblate 5.6\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -494,7 +565,7 @@ msgstr ""
msgid "SOTA CSV Export"
msgstr ""
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr ""
@@ -569,7 +640,7 @@ msgid "DX Calendar"
msgstr ""
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -827,7 +898,7 @@ msgstr ""
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -856,7 +927,7 @@ msgstr ""
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1513,8 +1584,8 @@ msgstr ""
msgid "QRZ ADIF Information"
msgstr ""
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -1986,43 +2057,39 @@ msgstr ""
msgid "Login"
msgstr ""
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr ""
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
"Only administrators are currently allowed to log in."
msgstr ""
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr ""
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr ""
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr ""
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr ""
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr ""
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr ""
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2241,7 +2308,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2254,7 +2321,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr "Miesiąc"
@@ -2542,7 +2609,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2627,7 +2694,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2669,7 +2736,7 @@ msgstr "Data"
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3218,7 +3285,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3265,8 +3332,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3275,8 +3342,8 @@ msgstr "Potwierdzone"
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr "Pracowane"
@@ -3873,7 +3940,7 @@ msgid "City"
msgstr ""
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4557,10 +4624,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr ""
@@ -5164,25 +5231,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr "Rozkład QSO"
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr "Rozkład na kraje"
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr "Wymagane"
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5212,10 +5279,10 @@ msgstr "Wymagane"
msgid "Sent"
msgstr "Wysłane"
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5242,7 +5309,7 @@ msgstr "Wysłane"
msgid "Received"
msgstr "Odebrane"
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5272,12 +5339,12 @@ msgstr "Odebrane"
msgid "Requested"
msgstr "Poproszone"
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6186,7 +6253,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo
index 21adfaf18..d85cdf7ba 100644
Binary files a/application/locale/pt_PT/LC_MESSAGES/messages.mo and b/application/locale/pt_PT/LC_MESSAGES/messages.mo differ
diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.po b/application/locale/pt_PT/LC_MESSAGES/messages.po
index f025ab71c..6b3befbc9 100644
--- a/application/locale/pt_PT/LC_MESSAGES/messages.po
+++ b/application/locale/pt_PT/LC_MESSAGES/messages.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-08-12 15:29+0000\n"
"Last-Translator: \"Francisco (F4VSE)\" \n"
"Language-Team: Portuguese (Portugal) 1;\n"
"X-Generator: Weblate 5.6.2\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -496,7 +567,7 @@ msgstr "Editar Cronjob"
msgid "SOTA CSV Export"
msgstr "Exportar CSV SOTA"
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr "Dashboard"
@@ -574,7 +645,7 @@ msgid "DX Calendar"
msgstr "Calendário DX"
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -838,7 +909,7 @@ msgstr "QSL"
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -867,7 +938,7 @@ msgstr "LoTW"
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1526,8 +1597,8 @@ msgstr "Importação de QSL QRZ"
msgid "QRZ ADIF Information"
msgstr "Informação ADIF QRZ"
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -2011,11 +2082,7 @@ msgstr "O login falhou. Tente novamente."
msgid "Login"
msgstr "Iniciar sessão"
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr "Utilizador com sessão iniciada"
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
@@ -2026,32 +2093,32 @@ msgstr ""
"administrador. Atualmente, apenas os administradores têm permissão para "
"iniciar sessão."
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr "Nome de utilizador ou palavra-passe incorrectos!"
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr "O utilizador %s terminou a sessão."
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr "A reposição da palavra-passe está desactivada na Demo!"
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr "Esqueci-me da palavra-passe"
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr "As definições de e-mail estão incorrectas."
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr "A redefinição da palavra-passe foi processada."
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2280,7 +2347,7 @@ msgid "Accumulated number of WAJA worked"
msgstr "Número acumulado de WAJA contactados"
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2293,7 +2360,7 @@ msgid "Yearly"
msgstr "Anual"
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr "Mês"
@@ -2581,7 +2648,7 @@ msgstr "Nada encontrado!"
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2666,7 +2733,7 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL."
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2708,7 +2775,7 @@ msgstr "Data"
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3293,7 +3360,7 @@ msgstr "Condados Confirmados"
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3346,8 +3413,8 @@ msgstr "Diplomas - CQ Magazine WAZ"
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3356,8 +3423,8 @@ msgstr "Confirmado"
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr "Contactado"
@@ -4028,7 +4095,7 @@ msgid "City"
msgstr "Cidade"
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr "Satélite"
@@ -4787,10 +4854,10 @@ msgid "Show Details"
msgstr "Mostrar detalhes"
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr "Hoje"
@@ -5412,25 +5479,25 @@ msgstr "Pelo menos um dos seus certificados LoTW expirou!"
msgid "At least one of your LoTW certificates is about to expire!"
msgstr "Pelo menos um dos seus certificados LoTW está prestes a expirar!"
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr "Distribuição de contactos"
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr "Distribuição por países"
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr "Necessário"
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5460,10 +5527,10 @@ msgstr "Necessário"
msgid "Sent"
msgstr "Enviado"
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5490,7 +5557,7 @@ msgstr "Enviado"
msgid "Received"
msgstr "Recebido"
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5520,12 +5587,12 @@ msgstr "Recebido"
msgid "Requested"
msgstr "Solicitado"
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr "Logbook of the World"
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr "VUCC-Grids"
@@ -6499,7 +6566,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
@@ -11244,6 +11311,9 @@ msgstr "O seu indicativo:"
msgid "Submit Request"
msgstr "Submeter pedido"
+#~ msgid "User logged in"
+#~ msgstr "Utilizador com sessão iniciada"
+
#~ msgid ""
#~ "If selected, Wavelog will try to import all QSO's of the ADIF, "
#~ "regardless if they match to the chosen station-location."
diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo
index b4fe94650..3b6b8ef24 100644
Binary files a/application/locale/ru_RU/LC_MESSAGES/messages.mo and b/application/locale/ru_RU/LC_MESSAGES/messages.mo differ
diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po
index 356550332..9f60ba3d9 100644
--- a/application/locale/ru_RU/LC_MESSAGES/messages.po
+++ b/application/locale/ru_RU/LC_MESSAGES/messages.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-08-12 13:55+0000\n"
"Last-Translator: Michael Skolsky \n"
"Language-Team: Russian =20) ? 1 : 2;\n"
"X-Generator: Weblate 5.6.2\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -497,7 +568,7 @@ msgstr "Редактирование задачи"
msgid "SOTA CSV Export"
msgstr "Экспорт SOTA CSV"
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr "Панель управления"
@@ -576,7 +647,7 @@ msgid "DX Calendar"
msgstr "Календарь DX экспедиций"
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -840,7 +911,7 @@ msgstr "QSL"
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -869,7 +940,7 @@ msgstr "LoTW"
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1526,8 +1597,8 @@ msgstr "QRZ. Импорт QSL"
msgid "QRZ ADIF Information"
msgstr "QRZ. Информация ADIF"
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -2007,11 +2078,7 @@ msgstr "Вход не выполнен. Попробуйте снова."
msgid "Login"
msgstr "Вход"
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr "Пользователь вошёл"
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
@@ -2022,32 +2089,32 @@ msgstr ""
"администратором. В настоящий момент только администраторы могут войти на "
"сервер."
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr "Неверные логин или пароль!"
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr "Пользователь %s вышел."
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr "Сброс пароля отключен в демо-версии!"
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr "Восстановить пароль"
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr "Настройки емэйл некорректны."
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr "Осуществлён сброс пароля."
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2273,7 +2340,7 @@ msgid "Accumulated number of WAJA worked"
msgstr "Накопленное количество отработанных WAJA"
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2286,7 +2353,7 @@ msgid "Yearly"
msgstr "Ежегодно"
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr "Месяц"
@@ -2574,7 +2641,7 @@ msgstr "Не найдено!"
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2659,7 +2726,7 @@ msgstr "Данные DOK в вашем логе отличаются от DCL"
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2701,7 +2768,7 @@ msgstr "Дата"
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3282,7 +3349,7 @@ msgstr "Подтверждённые графства"
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3335,8 +3402,8 @@ msgstr "Дипломы - CQ Magazine WAZ"
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3345,8 +3412,8 @@ msgstr "Подтверждено"
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr "Сработано"
@@ -4019,7 +4086,7 @@ msgid "City"
msgstr "Город"
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr "Спутники"
@@ -4775,10 +4842,10 @@ msgid "Show Details"
msgstr "Подробно"
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr "Сегодня"
@@ -5404,25 +5471,25 @@ msgstr "Один из ваших сертификатов LoTW истёк!"
msgid "At least one of your LoTW certificates is about to expire!"
msgstr "Как минимум, один из ваших сертификатов LoTW скоро истечёт!"
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr "Статистика QSO"
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr "Статистика по странам"
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr "Необходимо"
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5452,10 +5519,10 @@ msgstr "Необходимо"
msgid "Sent"
msgstr "Отправлено"
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5482,7 +5549,7 @@ msgstr "Отправлено"
msgid "Received"
msgstr "Принято"
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5512,12 +5579,12 @@ msgstr "Принято"
msgid "Requested"
msgstr "Запрошено"
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr "Logbook of the World"
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr "Квадраты VUCC"
@@ -6481,7 +6548,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
@@ -11192,6 +11259,9 @@ msgstr "Ваш позывной:"
msgid "Submit Request"
msgstr "Отправить запрос"
+#~ msgid "User logged in"
+#~ msgstr "Пользователь вошёл"
+
#~ msgid ""
#~ "If selected, Wavelog will try to import all QSO's of the ADIF, "
#~ "regardless if they match to the chosen station-location."
diff --git a/application/locale/sq/LC_MESSAGES/messages.po b/application/locale/sq/LC_MESSAGES/messages.po
index f9218231b..4df7ec73c 100644
--- a/application/locale/sq/LC_MESSAGES/messages.po
+++ b/application/locale/sq/LC_MESSAGES/messages.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -16,6 +16,77 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -492,7 +563,7 @@ msgstr ""
msgid "SOTA CSV Export"
msgstr ""
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr ""
@@ -567,7 +638,7 @@ msgid "DX Calendar"
msgstr ""
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -824,7 +895,7 @@ msgstr ""
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -853,7 +924,7 @@ msgstr ""
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1510,8 +1581,8 @@ msgstr ""
msgid "QRZ ADIF Information"
msgstr ""
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -1983,43 +2054,39 @@ msgstr ""
msgid "Login"
msgstr ""
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr ""
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
"Only administrators are currently allowed to log in."
msgstr ""
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr ""
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr ""
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr ""
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr ""
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr ""
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr ""
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2238,7 +2305,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2251,7 +2318,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr ""
@@ -2539,7 +2606,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2624,7 +2691,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2666,7 +2733,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3215,7 +3282,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3262,8 +3329,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3272,8 +3339,8 @@ msgstr ""
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr ""
@@ -3870,7 +3937,7 @@ msgid "City"
msgstr ""
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4554,10 +4621,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr ""
@@ -5160,25 +5227,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr ""
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5208,10 +5275,10 @@ msgstr ""
msgid "Sent"
msgstr ""
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5238,7 +5305,7 @@ msgstr ""
msgid "Received"
msgstr ""
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5268,12 +5335,12 @@ msgstr ""
msgid "Requested"
msgstr ""
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6181,7 +6248,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
diff --git a/application/locale/sr/LC_MESSAGES/messages.mo b/application/locale/sr/LC_MESSAGES/messages.mo
index e46b75b53..65981b919 100644
Binary files a/application/locale/sr/LC_MESSAGES/messages.mo and b/application/locale/sr/LC_MESSAGES/messages.mo differ
diff --git a/application/locale/sr/LC_MESSAGES/messages.po b/application/locale/sr/LC_MESSAGES/messages.po
index 52a5ccd85..3c4f65386 100644
--- a/application/locale/sr/LC_MESSAGES/messages.po
+++ b/application/locale/sr/LC_MESSAGES/messages.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-08-15 07:13+0000\n"
"Last-Translator: Dragan Đorđević <4o4a.dragan@gmail.com>\n"
"Language-Team: Serbian =20) ? 1 : 2;\n"
"X-Generator: Weblate 5.6.2\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -496,7 +567,7 @@ msgstr "Uredi cronjob"
msgid "SOTA CSV Export"
msgstr "Izvoz SOTA CSV"
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr "Kontrolna tabla"
@@ -574,7 +645,7 @@ msgid "DX Calendar"
msgstr "DX kalendar"
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -839,7 +910,7 @@ msgstr "QSL"
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -868,7 +939,7 @@ msgstr "LoTW"
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1525,8 +1596,8 @@ msgstr "Uvoz QRZ QSL karata"
msgid "QRZ ADIF Information"
msgstr "Informacija o QRZ ADIF"
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -2008,11 +2079,7 @@ msgstr "Prijava nije uspela. Pokušajte ponovo."
msgid "Login"
msgstr "Prijava"
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr "Korisnik je prijavljen"
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
@@ -2023,32 +2090,32 @@ msgstr ""
"kontaktirate administratora. Trenutno je prijava dozvoljena samo "
"administratorima."
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr "Neispravno korisničko ime ili lozinka!"
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr "Korisnik %s se odjavio."
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr "Reset lozinke je onemogućen u Demo verziji!"
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr "Zaboravljena lozinka"
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr "Email podešavanja nisu ispravna."
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr "Reset lozinke je obrađen."
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2274,7 +2341,7 @@ msgid "Accumulated number of WAJA worked"
msgstr "Ukupan broj rađenih WAJA"
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2287,7 +2354,7 @@ msgid "Yearly"
msgstr "Godišnje"
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr "Mesec"
@@ -2575,7 +2642,7 @@ msgstr "Ništa nije pronađeno!"
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2660,7 +2727,7 @@ msgstr "U poređenju sa DCL, u vašem logu postoje različiti DOK podaci"
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2702,7 +2769,7 @@ msgstr "Datum"
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3282,7 +3349,7 @@ msgstr "Potvrđenih okruga"
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3334,8 +3401,8 @@ msgstr "Diplome - CQ Magazin WAZ"
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3344,8 +3411,8 @@ msgstr "Potvrđeno"
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr "Rađeno"
@@ -3980,7 +4047,7 @@ msgid "City"
msgstr "Grad"
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4664,10 +4731,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr ""
@@ -5270,25 +5337,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr ""
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5318,10 +5385,10 @@ msgstr ""
msgid "Sent"
msgstr ""
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5348,7 +5415,7 @@ msgstr ""
msgid "Received"
msgstr ""
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5378,12 +5445,12 @@ msgstr ""
msgid "Requested"
msgstr ""
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6294,7 +6361,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366
@@ -10768,6 +10835,9 @@ msgstr ""
msgid "Submit Request"
msgstr ""
+#~ msgid "User logged in"
+#~ msgstr "Korisnik je prijavljen"
+
#~ msgid ""
#~ "If selected, Wavelog will try to import all QSO's of the ADIF, "
#~ "regardless if they match to the chosen station-location."
diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po
index c1366b513..4bd7edc34 100644
--- a/application/locale/sv_SE/LC_MESSAGES/messages.po
+++ b/application/locale/sv_SE/LC_MESSAGES/messages.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
"Last-Translator: Anonymous \n"
"Language-Team: Swedish \n"
"Language-Team: Turkish \n"
"Language-Team: Chinese (Simplified) all QSO's of the ADIF, "
#~ "regardless if they match to the chosen station-location."
diff --git a/application/models/User_model.php b/application/models/User_model.php
index 7318ec936..68bce1205 100644
--- a/application/models/User_model.php
+++ b/application/models/User_model.php
@@ -412,7 +412,7 @@ class User_Model extends CI_Model {
if ($u == null) {
$u = $this->get_by_id($id);
}
-
+
$userdata = array(
'user_id' => $u->row()->user_id,
'user_name' => $u->row()->user_name,
@@ -454,14 +454,16 @@ class User_Model extends CI_Model {
'isWinkeyEnabled' => $u->row()->winkey,
'hasQrzKey' => $this->hasQrzKey($u->row()->user_id)
);
-
+
foreach (array_keys($this->frequency->defaultFrequencies) as $band) {
- $qrg_unit = $this->session->userdata("qrgunit_$band") ?? ($this->user_options_model->get_options('frequency', array('option_name' => 'unit', 'option_key' => $band))->row()->option_value ?? '');
+ $qrg_unit = $this->session->userdata("qrgunit_$band") ?? ($this->user_options_model->get_options('frequency', array('option_name' => 'unit', 'option_key' => $band), $u->row()->user_id)->row()->option_value ?? '');
if ($qrg_unit !== '') {
$userdata['qrgunit_'.$band] = $qrg_unit;
+ } else {
+ $userdata['qrgunit_'.$band] = $this->frequency->defaultFrequencies[$band]['UNIT'];
}
}
-
+
$this->session->set_userdata($userdata);
}
diff --git a/application/views/bands/index.php b/application/views/bands/index.php
index f431b0e06..782919631 100644
--- a/application/views/bands/index.php
+++ b/application/views/bands/index.php
@@ -93,7 +93,7 @@ $wwff = 0;
ssb;?>
data;?>
cw;?>
-
+
frequency->qrg_unit($band->band) == 'Hz') { echo 'selected';} ?>>= __("Hz"); ?>
frequency->qrg_unit($band->band) == 'kHz') { echo 'selected';} ?>>= __("kHz"); ?>
@@ -161,4 +161,4 @@ $wwff = 0;
-
\ No newline at end of file
+
diff --git a/application/views/dashboard/index.php b/application/views/dashboard/index.php
index c426f7352..793456227 100644
--- a/application/views/dashboard/index.php
+++ b/application/views/dashboard/index.php
@@ -125,8 +125,9 @@ function echo_table_col($row, $name) {
-
+
+load->view('layout/messages'); ?>
diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php
index a3347e852..c6af91eaf 100644
--- a/application/views/interface_assets/footer.php
+++ b/application/views/interface_assets/footer.php
@@ -682,7 +682,7 @@ $('#dxcc_id').ready(function() {
$('#dxcc_id').on('change', function() {
printWarning();
- result() > 0) { ?>
+ result() > 0) { ?>
let dxccadif = $('#dxcc_id').val();
let dxccinfo = dxccarray.filter(function(dxcc) {
return dxcc.adif == dxccadif;
@@ -1157,7 +1157,7 @@ $($('#callsign')).on('keypress',function(e) {
if (data.error == 'not_logged_in') {
$(".radio_cat_state" ).remove();
if($('.radio_login_error').length == 0) {
- $('.qso_panel').prepend(' '+"= sprintf(__("You're not logged it. Please %slogin%s"), '
', ' '); ?>"+'
');
+ $('.qso_panel').prepend(' ' + '= sprintf(__("You're not logged in. Please %slogin%s"), '
', ' '); ?>' + '
');
}
}
// Put future Errorhandling here
diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot
index cdfce0b72..6518d0b1d 100644
--- a/assets/lang_src/messages.pot
+++ b/assets/lang_src/messages.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
-"POT-Creation-Date: 2024-08-16 09:50+0000\n"
+"POT-Creation-Date: 2024-08-16 10:41+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -16,6 +16,77 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+#: application/controllers/Accumulated.php:13
+#: application/controllers/Activators.php:13
+#: application/controllers/Activatorsmap.php:13
+#: application/controllers/Adif.php:13 application/controllers/Awards.php:16
+#: application/controllers/Backup.php:13 application/controllers/Backup.php:26
+#: application/controllers/Backup.php:63 application/controllers/Band.php:15
+#: application/controllers/Bandmap.php:9
+#: application/controllers/Cabrillo.php:16
+#: application/controllers/Cabrillo.php:53
+#: application/controllers/Cabrillo.php:80
+#: application/controllers/Cabrillo.php:135
+#: application/controllers/Calltester.php:11
+#: application/controllers/Cfdexport.php:18
+#: application/controllers/Cfdexport.php:29
+#: application/controllers/Components.php:13
+#: application/controllers/Contestcalendar.php:15
+#: application/controllers/Contesting.php:14
+#: application/controllers/Cron.php:26 application/controllers/Cron.php:145
+#: application/controllers/Csv.php:8 application/controllers/Csv.php:31
+#: application/controllers/Dayswithqso.php:11
+#: application/controllers/Debug.php:10
+#: application/controllers/Distances.php:11
+#: application/controllers/Dxatlas.php:7 application/controllers/Dxatlas.php:29
+#: application/controllers/Dxatlas.php:51
+#: application/controllers/Dxatlas.php:108
+#: application/controllers/Dxcalendar.php:8
+#: application/controllers/Dxcluster.php:9 application/controllers/Eqsl.php:23
+#: application/controllers/Eqsl.php:47 application/controllers/Eqsl.php:144
+#: application/controllers/Eqsl.php:223 application/controllers/Eqsl.php:247
+#: application/controllers/Eqsl.php:286 application/controllers/Eqsl.php:348
+#: application/controllers/Eqsl.php:411 application/controllers/Eqsl.php:427
+#: application/controllers/Eqsl.php:487 application/controllers/Hamsat.php:13
+#: application/controllers/Kmlexport.php:18
+#: application/controllers/Kmlexport.php:33
+#: application/controllers/Labels.php:26
+#: application/controllers/Logbookadvanced.php:16
+#: application/controllers/Lookup.php:17 application/controllers/Lotw.php:45
+#: application/controllers/Lotw.php:77 application/controllers/Lotw.php:104
+#: application/controllers/Lotw.php:378 application/controllers/Lotw.php:401
+#: application/controllers/Lotw.php:712 application/controllers/Lotw.php:820
+#: application/controllers/Lotw.php:828 application/controllers/Mode.php:15
+#: application/controllers/Notes.php:10 application/controllers/Options.php:15
+#: application/controllers/Oqrs.php:15 application/controllers/Qrbcalc.php:13
+#: application/controllers/Qrz.php:251 application/controllers/Qsl.php:12
+#: application/controllers/Qsl.php:13 application/controllers/Qsl.php:44
+#: application/controllers/Qsl.php:52 application/controllers/Qslprint.php:147
+#: application/controllers/Qso.php:9 application/controllers/Qso.php:19
+#: application/controllers/Qso.php:176 application/controllers/Qso.php:279
+#: application/controllers/Qso.php:299 application/controllers/Qso.php:308
+#: application/controllers/Qso.php:603 application/controllers/Radio.php:259
+#: application/controllers/Radio.php:285 application/controllers/Radio.php:301
+#: application/controllers/Satellite.php:15
+#: application/controllers/Sattimers.php:9
+#: application/controllers/Search.php:13
+#: application/controllers/Simplefle.php:7
+#: application/controllers/Station.php:17
+#: application/controllers/Stationsetup.php:15
+#: application/controllers/Themes.php:17
+#: application/controllers/Timeline.php:11
+#: application/controllers/Timeplotter.php:11
+#: application/controllers/Update.php:24 application/controllers/Update.php:273
+#: application/controllers/Update.php:284
+#: application/controllers/Update.php:295
+#: application/controllers/Update.php:306 application/controllers/User.php:8
+#: application/controllers/User.php:21 application/controllers/User.php:206
+#: application/controllers/User.php:207 application/controllers/User.php:719
+#: application/controllers/User.php:738 application/controllers/User.php:1021
+#: application/controllers/User_options.php:9
+msgid "You're not allowed to do that!"
+msgstr ""
+
#: application/controllers/Accumulated.php:21
#: application/views/interface_assets/header.php:150
msgid "Accumulated Statistics"
@@ -492,7 +563,7 @@ msgstr ""
msgid "SOTA CSV Export"
msgstr ""
-#: application/controllers/Dashboard.php:108
+#: application/controllers/Dashboard.php:111
#: application/controllers/Visitor.php:132
msgid "Dashboard"
msgstr ""
@@ -567,7 +638,7 @@ msgid "DX Calendar"
msgstr ""
#: application/controllers/Eqsl.php:34
-#: application/views/dashboard/index.php:309
+#: application/views/dashboard/index.php:310
#: application/views/eqslcard/index.php:5
#: application/views/visitor/index.php:306
msgid "eQSL Cards"
@@ -824,7 +895,7 @@ msgstr ""
#: application/views/awards/wab/index.php:80
#: application/views/awards/waja/index.php:57
#: application/views/awards/was/index.php:57
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:109
#: application/views/logbookadvanced/useroptions.php:66
#: application/views/oqrs/qsolist.php:17 application/views/oqrs/qsolist.php:159
@@ -853,7 +924,7 @@ msgstr ""
#: application/views/awards/wab/index.php:88
#: application/views/awards/waja/index.php:61
#: application/views/awards/was/index.php:61
-#: application/views/dashboard/index.php:244
+#: application/views/dashboard/index.php:245
#: application/views/gridmap/index.php:117
#: application/views/logbookadvanced/useroptions.php:70
#: application/views/oqrs/qsolist.php:14 application/views/oqrs/qsolist.php:130
@@ -1510,8 +1581,8 @@ msgstr ""
msgid "QRZ ADIF Information"
msgstr ""
-#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:261
+#: application/controllers/Qsl.php:25 application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:262
#: application/views/qslcard/index.php:5
#: application/views/visitor/index.php:283
msgid "QSL Cards"
@@ -1983,43 +2054,39 @@ msgstr ""
msgid "Login"
msgstr ""
-#: application/controllers/User.php:868
-msgid "User logged in"
-msgstr ""
-
-#: application/controllers/User.php:899
+#: application/controllers/User.php:898
msgid ""
"Sorry. This instance is currently in maintenance mode. If this message "
"appears unexpectedly or keeps showing up, please contact an administrator. "
"Only administrators are currently allowed to log in."
msgstr ""
-#: application/controllers/User.php:902
+#: application/controllers/User.php:901
msgid "Incorrect username or password!"
msgstr ""
-#: application/controllers/User.php:919
+#: application/controllers/User.php:918
#, php-format
msgid "User %s logged out."
msgstr ""
-#: application/controllers/User.php:933
+#: application/controllers/User.php:932
msgid "Password Reset is disabled on the Demo!"
msgstr ""
-#: application/controllers/User.php:946
+#: application/controllers/User.php:945
msgid "Forgot Password"
msgstr ""
-#: application/controllers/User.php:996 application/views/user/main.php:8
+#: application/controllers/User.php:995 application/views/user/main.php:8
msgid "Email settings are incorrect."
msgstr ""
-#: application/controllers/User.php:1000 application/controllers/User.php:1005
+#: application/controllers/User.php:999 application/controllers/User.php:1004
msgid "Password Reset Processed."
msgstr ""
-#: application/controllers/User.php:1107
+#: application/controllers/User.php:1106
#: application/views/user/forgot_password.php:51
#: application/views/user/reset_password.php:8
#: application/views/user/reset_password.php:35
@@ -2238,7 +2305,7 @@ msgid "Accumulated number of WAJA worked"
msgstr ""
#: application/views/accumulate/index.php:8
-#: application/views/dashboard/index.php:222
+#: application/views/dashboard/index.php:223
#: application/views/dayswithqso/index.php:16
#: application/views/statistics/index.php:18
#: application/views/visitor/index.php:246
@@ -2251,7 +2318,7 @@ msgid "Yearly"
msgstr ""
#: application/views/accumulate/index.php:10
-#: application/views/dashboard/index.php:227
+#: application/views/dashboard/index.php:228
#: application/views/visitor/index.php:251
msgid "Month"
msgstr ""
@@ -2539,7 +2606,7 @@ msgstr ""
#: application/views/cabrillo/index.php:31
#: application/views/components/hamsat/table.php:27
#: application/views/contesting/index.php:104
-#: application/views/csv/index.php:23 application/views/dashboard/index.php:152
+#: application/views/csv/index.php:23 application/views/dashboard/index.php:153
#: application/views/dxatlas/index.php:23 application/views/eqsl/import.php:41
#: application/views/eqslcard/index.php:28
#: application/views/hamsat/index.php:30 application/views/labels/index.php:123
@@ -2624,7 +2691,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:25
#: application/views/contesting/index.php:42
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:147
+#: application/views/dashboard/index.php:148
#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36
#: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33
#: application/views/eqslcard/index.php:30
@@ -2666,7 +2733,7 @@ msgstr ""
#: application/views/components/hamsat/table.php:26
#: application/views/contesting/index.php:47
#: application/views/contesting/index.php:200
-#: application/views/dashboard/index.php:150
+#: application/views/dashboard/index.php:151
#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37
#: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34
#: application/views/eqslcard/index.php:31
@@ -3215,7 +3282,7 @@ msgstr ""
#: application/views/awards/rac/index.php:169
#: application/views/awards/waja/index.php:177
#: application/views/awards/was/index.php:177
-#: application/views/dashboard/index.php:217
+#: application/views/dashboard/index.php:218
#: application/views/simplefle/index.php:27
#: application/views/statistics/qsltable.php:54
#: application/views/statistics/qsltable.php:109
@@ -3262,8 +3329,8 @@ msgstr ""
#: application/views/awards/itu/index.php:32
#: application/views/awards/wab/list.php:6
#: application/views/bandmap/list.php:73
-#: application/views/dashboard/index.php:244
-#: application/views/dashboard/index.php:362
+#: application/views/dashboard/index.php:245
+#: application/views/dashboard/index.php:363
#: application/views/interface_assets/footer.php:39
#: application/views/visitor/index.php:266
msgid "Confirmed"
@@ -3272,8 +3339,8 @@ msgstr ""
#: application/views/awards/cq/index.php:32
#: application/views/awards/itu/index.php:32
#: application/views/bandmap/list.php:72
-#: application/views/dashboard/index.php:240
-#: application/views/dashboard/index.php:356
+#: application/views/dashboard/index.php:241
+#: application/views/dashboard/index.php:357
#: application/views/visitor/index.php:262
msgid "Worked"
msgstr ""
@@ -3870,7 +3937,7 @@ msgid "City"
msgstr ""
#: application/views/awards/jcc/index.php:187
-#: application/views/dashboard/index.php:352
+#: application/views/dashboard/index.php:353
#: application/views/distances/index.php:23
msgid "SAT"
msgstr ""
@@ -4554,10 +4621,10 @@ msgid "Show Details"
msgstr ""
#: application/views/contestcalendar/index.php:38
-#: application/views/dashboard/index.php:262
-#: application/views/dashboard/index.php:289
-#: application/views/dashboard/index.php:310
-#: application/views/dashboard/index.php:331
+#: application/views/dashboard/index.php:263
+#: application/views/dashboard/index.php:290
+#: application/views/dashboard/index.php:311
+#: application/views/dashboard/index.php:332
#: application/views/satellite/pass.php:475
msgid "Today"
msgstr ""
@@ -5160,25 +5227,25 @@ msgstr ""
msgid "At least one of your LoTW certificates is about to expire!"
msgstr ""
-#: application/views/dashboard/index.php:213
+#: application/views/dashboard/index.php:214
#: application/views/visitor/index.php:237
msgid "QSOs Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:236
+#: application/views/dashboard/index.php:237
#: application/views/visitor/index.php:258
msgid "Countries Breakdown"
msgstr ""
-#: application/views/dashboard/index.php:253
+#: application/views/dashboard/index.php:254
#: application/views/visitor/index.php:275
msgid "Needed"
msgstr ""
-#: application/views/dashboard/index.php:266
-#: application/views/dashboard/index.php:293
-#: application/views/dashboard/index.php:314
-#: application/views/dashboard/index.php:335
+#: application/views/dashboard/index.php:267
+#: application/views/dashboard/index.php:294
+#: application/views/dashboard/index.php:315
+#: application/views/dashboard/index.php:336
#: application/views/oqrs/qsolist.php:50 application/views/oqrs/qsolist.php:130
#: application/views/oqrs/qsolist.php:159
#: application/views/qslprint/qsolist.php:58
@@ -5208,10 +5275,10 @@ msgstr ""
msgid "Sent"
msgstr ""
-#: application/views/dashboard/index.php:272
-#: application/views/dashboard/index.php:299
-#: application/views/dashboard/index.php:320
-#: application/views/dashboard/index.php:341
+#: application/views/dashboard/index.php:273
+#: application/views/dashboard/index.php:300
+#: application/views/dashboard/index.php:321
+#: application/views/dashboard/index.php:342
#: application/views/oqrs/qsolist.php:92 application/views/oqrs/qsolist.php:143
#: application/views/oqrs/qsolist.php:174
#: application/views/qslprint/qsolist.php:100
@@ -5238,7 +5305,7 @@ msgstr ""
msgid "Received"
msgstr ""
-#: application/views/dashboard/index.php:278
+#: application/views/dashboard/index.php:279
#: application/views/logbookadvanced/index.php:302
#: application/views/logbookadvanced/index.php:313
#: application/views/logbookadvanced/index.php:344
@@ -5268,12 +5335,12 @@ msgstr ""
msgid "Requested"
msgstr ""
-#: application/views/dashboard/index.php:288
+#: application/views/dashboard/index.php:289
msgctxt "Probably no translation needed as this is a name."
msgid "Logbook of the World"
msgstr ""
-#: application/views/dashboard/index.php:351
+#: application/views/dashboard/index.php:352
msgid "VUCC-Grids"
msgstr ""
@@ -6181,7 +6248,7 @@ msgstr ""
#: application/views/interface_assets/footer.php:1160
#, php-format
-msgid "You're not logged it. Please %slogin%s"
+msgid "You're not logged in. Please %slogin%s"
msgstr ""
#: application/views/interface_assets/footer.php:1366