mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Merge remote-tracking branch 'upstream/dev' into files
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,13 +1,13 @@
|
||||
/application/config/database.php
|
||||
/application/config/config.php
|
||||
/application/logs/*.php
|
||||
/application/logs/*
|
||||
/application/cache/*
|
||||
/uploads
|
||||
/uploads/*.adi
|
||||
/uploads/*.ADI
|
||||
/uploads/*.tq8
|
||||
/uploads/*.TQ8
|
||||
/install/*
|
||||
/install/.lock
|
||||
/updates/*
|
||||
/images/eqsl_card_images/*.jpg
|
||||
/updates/clublog_scp.txt
|
||||
|
||||
@@ -84,7 +84,7 @@ class Contestcalendar extends CI_Controller {
|
||||
$start = trim($parts[0]);
|
||||
$end = trim($parts[1]);
|
||||
|
||||
// create proper dateTime
|
||||
// create proper dateTime
|
||||
$timeData['start'] = DateTime::createFromFormat('Hi\Z, M d', $start);
|
||||
$timeData['end'] = DateTime::createFromFormat('Hi\Z, M d', $end);
|
||||
} else {
|
||||
@@ -97,7 +97,7 @@ class Contestcalendar extends CI_Controller {
|
||||
// extract the date. we need to add this to the start time
|
||||
$date = substr($parts[1], strpos($parts[1], ',') + 2);
|
||||
|
||||
// create proper dateTime
|
||||
// create proper dateTime
|
||||
$timeData['start'] = DateTime::createFromFormat('Hi\Z, M d', $start . ', ' . $date);
|
||||
$timeData['end'] = DateTime::createFromFormat('Hi\Z, M d', $end);
|
||||
}
|
||||
@@ -190,12 +190,10 @@ class Contestcalendar extends CI_Controller {
|
||||
}
|
||||
}
|
||||
if (!$contestExists) {
|
||||
$contestsNextWeekend[] = $contest;
|
||||
$contestsNextWeekend[] = $contest;
|
||||
$contestsNextWeekend[] = $contest;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
return $contestsNextWeekend;
|
||||
|
||||
@@ -1,13 +1,24 @@
|
||||
<?php class Migrate extends CI_Controller {
|
||||
<?php
|
||||
class Migrate extends CI_Controller {
|
||||
|
||||
public function index()
|
||||
{
|
||||
$this->load->library('Migration');
|
||||
public function index() {
|
||||
$this->load->library('Migration');
|
||||
|
||||
if (!$this->migration->latest()) {
|
||||
show_error($this->migration->error_string());
|
||||
$result = array();
|
||||
$latest = $this->migration->latest();
|
||||
|
||||
if (!$latest) {
|
||||
show_error($this->migration->error_string());
|
||||
log_message('error', 'Migration failed');
|
||||
$result['status'] = 'error';
|
||||
} else {
|
||||
while (file_exists(APPPATH . 'cache/.migration_running')) {
|
||||
sleep(1);
|
||||
}
|
||||
$result['status'] = 'success';
|
||||
$result['version'] = $latest;
|
||||
}
|
||||
header('Content-Type: application/json');
|
||||
echo json_encode($result);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} ?>
|
||||
}
|
||||
|
||||
@@ -36,7 +36,9 @@ class Update extends CI_Controller {
|
||||
public function dxcc_entities() {
|
||||
|
||||
// Load the cty file
|
||||
$this->load->library('Paths');
|
||||
if(!$this->load->is_loaded('Paths')) {
|
||||
$this->load->library('Paths');
|
||||
}
|
||||
$xml_data = simplexml_load_file($this->paths->make_update_path("cty.xml"));
|
||||
|
||||
//$xml_data->entities->entity->count();
|
||||
@@ -87,7 +89,9 @@ class Update extends CI_Controller {
|
||||
public function dxcc_exceptions() {
|
||||
|
||||
// Load the cty file
|
||||
$this->load->library('Paths');
|
||||
if(!$this->load->is_loaded('Paths')) {
|
||||
$this->load->library('Paths');
|
||||
}
|
||||
$xml_data = simplexml_load_file($this->paths->make_update_path("cty.xml"));
|
||||
|
||||
$count = 0;
|
||||
@@ -129,7 +133,9 @@ class Update extends CI_Controller {
|
||||
public function dxcc_prefixes() {
|
||||
|
||||
// Load the cty file
|
||||
$this->load->library('Paths');
|
||||
if(!$this->load->is_loaded('Paths')) {
|
||||
$this->load->library('Paths');
|
||||
}
|
||||
$xml_data = simplexml_load_file($this->paths->make_update_path("cty.xml"));
|
||||
|
||||
$count = 0;
|
||||
@@ -169,7 +175,9 @@ class Update extends CI_Controller {
|
||||
// Updates the DXCC & Exceptions from the Club Log Cty.xml file.
|
||||
public function dxcc() {
|
||||
|
||||
$this->load->library('Paths');
|
||||
if(!$this->load->is_loaded('Paths')) {
|
||||
$this->load->library('Paths');
|
||||
}
|
||||
|
||||
// set the last run in cron table for the correct cron id
|
||||
$this->load->model('cron_model');
|
||||
@@ -192,7 +200,7 @@ class Update extends CI_Controller {
|
||||
if ($gz === FALSE) {
|
||||
$this->update_status("FAILED: Could not download from clublog.org");
|
||||
log_message('error', 'FAILED: Could not download exceptions from clublog.org');
|
||||
return;
|
||||
exit();
|
||||
}
|
||||
|
||||
$data = "";
|
||||
@@ -203,7 +211,7 @@ class Update extends CI_Controller {
|
||||
|
||||
if (file_put_contents($this->paths->make_update_path("cty.xml"), $data) === FALSE) {
|
||||
$this->update_status("FAILED: Could not write to cty.xml file");
|
||||
return;
|
||||
exit();
|
||||
}
|
||||
|
||||
// Clear the tables, ready for new data
|
||||
@@ -220,21 +228,25 @@ class Update extends CI_Controller {
|
||||
$this->db->trans_complete();
|
||||
|
||||
$this->update_status(__("DONE"));
|
||||
|
||||
echo 'success';
|
||||
}
|
||||
|
||||
public function update_status($done=""){
|
||||
|
||||
$this->load->library('Paths');
|
||||
if(!$this->load->is_loaded('Paths')) {
|
||||
$this->load->library('Paths');
|
||||
}
|
||||
|
||||
if ($done != "Downloading file"){
|
||||
// Check that everything is done?
|
||||
if ($done == ""){
|
||||
$done = "Updating...";
|
||||
$done = __("Updating...");
|
||||
}
|
||||
$html = $done."<br/>";
|
||||
$html .= "Dxcc Entities: ".$this->db->count_all('dxcc_entities')."<br/>";
|
||||
$html .= "Dxcc Exceptions: ".$this->db->count_all('dxcc_exceptions')."<br/>";
|
||||
$html .= "Dxcc Prefixes: ".$this->db->count_all('dxcc_prefixes')."<br/>";
|
||||
$html .= __("Dxcc Entities:")." ".$this->db->count_all('dxcc_entities')."<br/>";
|
||||
$html .= __("Dxcc Exceptions:")." ".$this->db->count_all('dxcc_exceptions')."<br/>";
|
||||
$html .= __("Dxcc Prefixes:")." ".$this->db->count_all('dxcc_prefixes')."<br/>";
|
||||
} else {
|
||||
$html = $done."....<br/>";
|
||||
}
|
||||
|
||||
@@ -765,7 +765,7 @@ class User extends CI_Controller {
|
||||
}
|
||||
}
|
||||
|
||||
function login() {
|
||||
function login($firstlogin = false) {
|
||||
// Check our version and run any migrations
|
||||
if (!$this->load->is_loaded('Migration')) {
|
||||
$this->load->library('Migration');
|
||||
@@ -775,6 +775,10 @@ class User extends CI_Controller {
|
||||
}
|
||||
$this->migration->current();
|
||||
|
||||
if($firstlogin == true) {
|
||||
$this->session->set_flashdata('success', __("Congrats! Wavelog was successfully installed. You can now login for the first time."));
|
||||
}
|
||||
|
||||
$this->load->model('user_model');
|
||||
$query = $this->user_model->get($this->input->post('user_name', true));
|
||||
|
||||
|
||||
@@ -198,14 +198,23 @@ class AdifHelper {
|
||||
|
||||
$line .= $this->getAdifFieldLine("MY_STATE", $qso->state);
|
||||
|
||||
// We fill county only if it has a value and it's USA, Alaska or Hawaii. Other countrys are not supported at the moment due complex adif specs
|
||||
if ($qso->station_cnty && ($qso->station_dxcc == '291' || $qso->station_dxcc == '006' || $qso->station_dxcc == '110')) {
|
||||
$county = trim($qso->state) . "," . trim($qso->station_cnty);
|
||||
} else {
|
||||
$county = '';
|
||||
}
|
||||
// See: https://adif.org/314/ADIF_314.htm#Sponsor_Defined_Code_Format
|
||||
if ($qso->station_cnty) {
|
||||
switch ($qso->station_dxcc) {
|
||||
case '6':
|
||||
case '110':
|
||||
case '291':
|
||||
$county = trim($qso->state) . "," . trim($qso->station_cnty);
|
||||
break;
|
||||
default:
|
||||
$county = trim($qso->station_cnty);
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
$county = '';
|
||||
}
|
||||
|
||||
$line .= $this->getAdifFieldLine("MY_CNTY", $county);
|
||||
$line .= $this->getAdifFieldLine("MY_CNTY", $county);
|
||||
|
||||
$stationsSig = $qso->station_sig;
|
||||
// If MY_SIG is WWFF or "" and there's a station_wwff set, use data from station_wwff
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.wavelog.org/projects/wavelog/"
|
||||
@@ -1860,22 +1860,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1906,54 +1922,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5914,17 +5936,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-22 07:07+0000\n"
|
||||
"Last-Translator: Ondřej Koloničný <ondra@ok1cdj.com>\n"
|
||||
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1863,22 +1863,38 @@ msgstr "Graf času"
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1909,54 +1925,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "Přihlásit se"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5919,17 +5941,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr "lokátor"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "Celkový počet"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -12,9 +12,9 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"PO-Revision-Date: 2024-07-27 03:56+0000\n"
|
||||
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-28 17:31+0000\n"
|
||||
"Last-Translator: Florian Wolters <wavelog@df2et.de>\n"
|
||||
"Language-Team: German <https://translate.wavelog.org/projects/wavelog/"
|
||||
"main-translation/de/>\n"
|
||||
"Language: de_DE\n"
|
||||
@@ -1886,22 +1886,38 @@ msgstr "Zeitplotter"
|
||||
msgid "Updates"
|
||||
msgstr "Aktualisierungen"
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr "Bereite DXCC-Einträge vor: "
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr "Bereite DXCC Ausnahmen vor: "
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr "Bereite DXCC Präfixe vor: "
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr "FERTIG"
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr "Aktualisierung läuft ..."
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr "DXCC Entitäten:"
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr "DXCC Ausnahmen:"
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr "DXCC Prefixe:"
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1932,22 +1948,30 @@ msgstr "bearbeitet"
|
||||
msgid "Profile"
|
||||
msgstr "Profil"
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
"Herzlichen Glückwunsch! Wavelog wurde erfolgreich installiert. Du kannst "
|
||||
"dich nun anmelden."
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr "Login fehlgeschlagen. Bitte erneut versuchen."
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "Anmeldung"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr "Benutzer eingeloggt"
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
msgid ""
|
||||
"Sorry. This instance is currently in maintenance mode. If this message "
|
||||
"appears unexpectedly or keeps showing up, please contact an administrator. "
|
||||
@@ -1958,32 +1982,32 @@ msgstr ""
|
||||
"kontaktiere bitte den Administrator. Nur Administratoren können sich derzeit "
|
||||
"einloggen."
|
||||
|
||||
#: application/controllers/User.php:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr "Falscher Benutzername oder Passwort!"
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr "Benutzer %s ausgeloggt."
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr "Passwort Reset ist in der Demo nicht verfügbar!"
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr "Passwort vergessen"
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr "E-Mail Einstellungen sind nicht korrekt."
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr "Passwort Zurücksetzen angefordert."
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -6231,17 +6255,17 @@ msgstr ""
|
||||
"'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese "
|
||||
"Warnung."
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr "Planquadrate"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "Summe"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
|
||||
"Last-Translator: Fabian Berg <hb9hil@wavelog.org>\n"
|
||||
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1863,22 +1863,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1909,54 +1925,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5917,17 +5939,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Spanish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1869,22 +1869,38 @@ msgstr "Gráfico de Tiempo"
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1915,54 +1931,60 @@ msgstr "editado"
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "Iniciar Sesión"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5957,17 +5979,17 @@ msgstr ""
|
||||
"válido. Revise cuál DXCC es el correcto para su localización particular. Si "
|
||||
"está totalmente seguro, ignore esta advertencia."
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr "grid squares"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "Cuenta total"
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 13:25+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Finnish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1860,22 +1860,38 @@ msgstr "Aikajana"
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1906,54 +1922,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "Kirjaudu"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5914,17 +5936,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-22 19:23+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@gmail.com>\n"
|
||||
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1881,22 +1881,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr "Mises à jour"
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr "FAIT"
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1927,22 +1943,28 @@ msgstr "mis à jour"
|
||||
msgid "Profile"
|
||||
msgstr "Profile"
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr "La connexion a échoué. Essayer à nouveau."
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "Se connecter"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr "Utilisateur connecté"
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
msgid ""
|
||||
"Sorry. This instance is currently in maintenance mode. If this message "
|
||||
"appears unexpectedly or keeps showing up, please contact an administrator. "
|
||||
@@ -1953,32 +1975,32 @@ msgstr ""
|
||||
"un administrateur. Seuls les administrateurs sont actuellement autorisés à "
|
||||
"se connecter."
|
||||
|
||||
#: application/controllers/User.php:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr "Identifiant ou mot de passe incorrect!"
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr "L'utilisateur %s s'est déconnecté."
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
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:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr "Mot de passe oublié"
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr "Les paramètres de messagerie sont incorrects."
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr "Réinitialisation du mot de passe traitée."
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5979,17 +6001,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr "Grilles des Locators"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "Total"
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Italian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1862,22 +1862,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1908,54 +1924,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5916,17 +5938,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-25 07:32+0000\n"
|
||||
"Last-Translator: Casper van Lieburg <pa7dx@yahoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1861,22 +1861,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1907,54 +1923,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5915,17 +5937,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Polish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1862,22 +1862,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1908,54 +1924,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5918,17 +5940,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -8,8 +8,8 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"PO-Revision-Date: 2024-07-26 20:41+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-28 17:18+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@users.noreply.github.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) <https://translate.wavelog.org/projects/"
|
||||
"wavelog/main-translation/pt_PT/>\n"
|
||||
@@ -1885,22 +1885,38 @@ msgstr "Plotador de tempo"
|
||||
msgid "Updates"
|
||||
msgstr "Actualizações"
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr "Preparação de registos DXCC: "
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr "Preparação de Excepções DXCC: "
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr "Preparação de Prefixos DXCC: "
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr "TERMINADO"
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr "A actualizar..."
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr "Entidades DXCC:"
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr "Excepções do DXCC:"
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr "Prefixos DXCC:"
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1931,22 +1947,30 @@ msgstr "editado"
|
||||
msgid "Profile"
|
||||
msgstr "Perfil"
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
"Parabéns! O Wavelog foi instalado com sucesso. Pode agora fazer login pela "
|
||||
"primeira vez."
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr "O login falhou. Tente novamente."
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "Iniciar sessão"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr "Utilizador com sessão iniciada"
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
msgid ""
|
||||
"Sorry. This instance is currently in maintenance mode. If this message "
|
||||
"appears unexpectedly or keeps showing up, please contact an administrator. "
|
||||
@@ -1957,32 +1981,32 @@ msgstr ""
|
||||
"administrador. Atualmente, apenas os administradores têm permissão para "
|
||||
"iniciar sessão."
|
||||
|
||||
#: application/controllers/User.php:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr "Nome de utilizador ou palavra-passe incorrectos!"
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr "O utilizador %s terminou a sessão."
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr "A reposição da palavra-passe está desactivada na Demo!"
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr "Esqueci-me da palavra-passe"
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 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:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr "A redefinição da palavra-passe foi processada."
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -6226,17 +6250,17 @@ msgstr ""
|
||||
"qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore "
|
||||
"este aviso."
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr "quadrícula"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "Número total"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-23 14:40+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@gmail.com>\n"
|
||||
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1880,22 +1880,38 @@ msgstr "Графики"
|
||||
msgid "Updates"
|
||||
msgstr "Обновления"
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr "Подготовка списка DXCC: "
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr "Подготовка исключений DXCC: "
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr "Подготовка префиксов DXCC: "
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr "Готово"
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1926,22 +1942,28 @@ msgstr "отредактирован"
|
||||
msgid "Profile"
|
||||
msgstr "Профиль"
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr "Вход не выполнен. Попробуйте снова."
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "Вход"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr "Пользователь вошёл"
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
msgid ""
|
||||
"Sorry. This instance is currently in maintenance mode. If this message "
|
||||
"appears unexpectedly or keeps showing up, please contact an administrator. "
|
||||
@@ -1952,32 +1974,32 @@ msgstr ""
|
||||
"администратором. В настоящий момент только администраторы могут войти на "
|
||||
"сервер."
|
||||
|
||||
#: application/controllers/User.php:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr "Неверные логин или пароль!"
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr "Пользователь %s вышел."
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr "Сброс пароля отключен в демо-версии!"
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr "Восстановить пароль"
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr "Настройки емэйл некорректны."
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr "Осуществлён сброс пароля."
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -6206,17 +6228,17 @@ msgstr ""
|
||||
"действителен. Проверьте, какой DXCC для данного конкретного места является "
|
||||
"правильным. Если вы уверены, проигнорируйте это предупреждение."
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr "квадрат(/-а/-ов)"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "Всего"
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 13:26+0000\n"
|
||||
"Last-Translator: Anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Swedish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1862,22 +1862,38 @@ msgstr "Tidplotter"
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1908,54 +1924,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5916,17 +5938,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "Totalt antal"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-27 03:56+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-26 14:02+0000\n"
|
||||
"Last-Translator: Halil AYYILDIZ <ta2lghalil@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -1867,22 +1867,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1913,54 +1929,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5921,17 +5943,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-26 14:02+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 11:10+0000\n"
|
||||
"PO-Revision-Date: 2024-07-27 20:04+0000\n"
|
||||
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://translate.wavelog.org/projects/"
|
||||
@@ -1863,22 +1863,38 @@ msgstr "时间图"
|
||||
msgid "Updates"
|
||||
msgstr "更新"
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr "正在准备 DXCC 名单: "
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr "正在准备 DXCC 例外名单: "
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr "正在准备 DXCC 前缀: "
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr "完成"
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1909,22 +1925,28 @@ msgstr "已编辑"
|
||||
msgid "Profile"
|
||||
msgstr "个人资料"
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr "登录失败,请重试。"
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr "登录"
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr "已登录用户"
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
msgid ""
|
||||
"Sorry. This instance is currently in maintenance mode. If this message "
|
||||
"appears unexpectedly or keeps showing up, please contact an administrator. "
|
||||
@@ -1933,32 +1955,32 @@ msgstr ""
|
||||
"抱歉,本站正处于维护模式。如果本消息持续显示,请联系本站管理员。当前只允许管"
|
||||
"理员登入。"
|
||||
|
||||
#: application/controllers/User.php:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr "用户名或密码错误!"
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr "用户 '%s' 已登出。"
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr "在测试实例上,密码重置已禁用!"
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr "忘记密码"
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr "邮件配置有误。"
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr "密码重置已处理。"
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -6022,17 +6044,17 @@ msgstr ""
|
||||
"请稍等,您选择的 DXCC 已经失效,请确认最新的 DXCC 实体,如果您十分确认,请忽"
|
||||
"略该警告。"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr "网格"
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr "总数"
|
||||
|
||||
@@ -7972,8 +7994,9 @@ msgstr "导出用于打印的 QSL 请求"
|
||||
msgid ""
|
||||
"Here you can export requested QSLs as CSV or ADIF files for printing and, "
|
||||
"optionally, mark them as sent."
|
||||
msgstr "在这里,您可以把 QSL 请求导出为 CSV 或 ADIF "
|
||||
"文件用于打印,或者直接标记为已寄出。"
|
||||
msgstr ""
|
||||
"在这里,您可以把 QSL 请求导出为 CSV 或 ADIF 文件用于打印,或者直接标记为已寄"
|
||||
"出。"
|
||||
|
||||
#: application/views/qslprint/index.php:30
|
||||
msgid ""
|
||||
|
||||
@@ -272,7 +272,7 @@
|
||||
<p><u><?= __("Settings"); ?></u></p>
|
||||
<?php
|
||||
$max_execution_time = 600; // Seconds
|
||||
$max_upload_file_size = 8; // Megabyte
|
||||
$upload_max_filesize = 8; // Megabyte
|
||||
$post_max_size = 8; // Megabyte
|
||||
$memory_limit = 256; // Megabyte
|
||||
$req_allow_url_fopen = '1'; // 1 = on
|
||||
@@ -293,13 +293,13 @@
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>max_upload_file_size</td>
|
||||
<td><?php echo '> ' . $max_upload_file_size . 'M'; ?></td>
|
||||
<td>upload_max_filesize</td>
|
||||
<td><?php echo '> ' . $upload_max_filesize . 'M'; ?></td>
|
||||
<td>
|
||||
<?php
|
||||
$maxUploadFileSize = ini_get('upload_max_filesize');
|
||||
$maxUploadFileSizeBytes = (int)($maxUploadFileSize) * (1024 * 1024); // convert to bytes
|
||||
if ($maxUploadFileSizeBytes >= ($max_upload_file_size * 1024 * 1024)) { // compare with given value in bytes
|
||||
if ($maxUploadFileSizeBytes >= ($upload_max_filesize * 1024 * 1024)) { // compare with given value in bytes
|
||||
?>
|
||||
<span class="badge text-bg-success"><?php echo $maxUploadFileSize; ?></span>
|
||||
<?php } else { ?>
|
||||
@@ -631,4 +631,4 @@
|
||||
<?= __("Spanish"); ?>
|
||||
<?= __("Swedish"); ?>
|
||||
<?= __("Turkish"); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -35,6 +35,7 @@
|
||||
<th><?= __("Workable"); ?></th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@@ -1292,7 +1292,15 @@ $(document).ready(function(){
|
||||
$(".ld-ext-right").addClass("running");
|
||||
$(".ld-ext-right").prop("disabled", true);
|
||||
$('#dxcc_update_status').show();
|
||||
$.ajax({url:"update/dxcc"});
|
||||
$.ajax({
|
||||
url:"update/dxcc",
|
||||
success: function(response) {
|
||||
if (response == 'success') {
|
||||
$(".ld-ext-right").removeClass("running");
|
||||
$(".ld-ext-right").prop("disabled", false);
|
||||
}
|
||||
}
|
||||
});
|
||||
setTimeout(update_stats,5000);
|
||||
});
|
||||
function update_stats(){
|
||||
|
||||
@@ -36,7 +36,7 @@ function l(o) {
|
||||
const t = a(), e = i(t, o, "#fff"), n = i(t, o, "#000");
|
||||
return n === e && !n.startsWith("0,0,0,");
|
||||
}
|
||||
function f(o = "Twemoji Country Flags", t = base_url + 'assets/fonts/TwemojiCountryFlags/TwemojiCountryFlags.woff2') {
|
||||
function f(o = "Twemoji Country Flags", t = '../assets/fonts/TwemojiCountryFlags/TwemojiCountryFlags.woff2') {
|
||||
if (typeof window < "u" && l("\u{1F60A}") && !l("\u{1F1E8}\u{1F1ED}")) {
|
||||
const e = document.createElement("style");
|
||||
return e.textContent = `@font-face {
|
||||
|
||||
@@ -69,7 +69,7 @@ function loadActivationsTable(rows, show_workable_only) {
|
||||
$(this).DataTable({
|
||||
"pageLength": 25,
|
||||
"columnDefs": [{
|
||||
"targets": [8, 9], "orderable": false
|
||||
"targets": [8, 9, 10], "orderable": false
|
||||
}],
|
||||
searching: true,
|
||||
responsive: false,
|
||||
@@ -155,6 +155,11 @@ function loadActivationsTable(rows, show_workable_only) {
|
||||
} else {
|
||||
data.push('<span data-bs-toggle=\"tooltip\" title=\"Unkown\" class=\"badge bg-warning\">Unknown</span>');
|
||||
}
|
||||
if (activation.likes != '0') {
|
||||
data.push('<div style="white-space: nowrap; margin-right: 15px;"><svg class="h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M7.493 18.75c-.425 0-.82-.236-.975-.632A7.48 7.48 0 016 15.375c0-1.75.599-3.358 1.602-4.634.151-.192.373-.309.6-.397.473-.183.89-.514 1.212-.924a9.042 9.042 0 012.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 00.322-1.672V3a.75.75 0 01.75-.75 2.25 2.25 0 012.25 2.25c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 01-2.649 7.521c-.388.482-.987.729-1.605.729H14.23c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 00-1.423-.23h-.777zM2.331 10.977a11.969 11.969 0 00-.831 4.398 12 12 0 00.52 3.507c.26.85 1.084 1.368 1.973 1.368H4.9c.445 0 .72-.498.523-.898a8.963 8.963 0 01-.924-3.977c0-1.708.476-3.305 1.302-4.666.245-.403-.028-.959-.5-.959H4.25c-.832 0-1.612.453-1.918 1.227z"></path></svg> '+activation.likes+'</div>');
|
||||
} else {
|
||||
data.push('<div style="white-space: nowrap; margin-right: 15px;"><svg class="h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" aria-hidden="true" stroke="currentColor" stroke-width="1.5"><path d="M6.633 10.5c.806 0 1.533-.446 2.031-1.08a9.041 9.041 0 012.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 00.322-1.672V3a.75.75 0 01.75-.75A2.25 2.25 0 0116.5 4.5c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 01-2.649 7.521c-.388.482-.987.729-1.605.729H13.48c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 00-1.423-.23H5.904M14.25 9h2.25M5.904 18.75c.083.205.173.405.27.602.197.4-.078.898-.523.898h-.908c-.889 0-1.713-.518-1.972-1.368a12 12 0 01-.521-3.507c0-1.553.295-3.036.831-4.398C3.387 10.203 4.167 9.75 5 9.75h1.053c.472 0 .745.556.5.96a8.958 8.958 0 00-1.302 4.665c0 1.194.232 2.333.654 3.375z" stroke-linejoin="round" stroke-linecap="round"></path></svg> </div>');
|
||||
}
|
||||
data.push("<a href=\""+activation.url+"\" target=\"_blank\">Track</a>");
|
||||
if (activation.is_workable == true) {
|
||||
data.push("<a href=\"https://sat.fg8oj.com/sked.php?s%5B%5D="+activation.sat_export_name+"&l="+activation.my_gridsquare+"&el1=0&l2="+activation.grids[0]+"&el2=0&duration=1&start=0&OK=Search\" target=\"_blank\">Sked</a>");
|
||||
|
||||
@@ -225,7 +225,7 @@ $( document ).ready(function() {
|
||||
$('#frequency_rx').val(favs[this.innerText].frequency_rx);
|
||||
$('#frequency').val(favs[this.innerText].frequency);
|
||||
$('#selectPropagation').val(favs[this.innerText].prop_mode);
|
||||
$('#mode').val(favs[this.innerText].mode);
|
||||
$('#mode').val(favs[this.innerText].mode).change();
|
||||
});
|
||||
|
||||
|
||||
@@ -1183,7 +1183,7 @@ $( document ).ready(function() {
|
||||
|
||||
// Change report based on mode
|
||||
$('.mode').change(function(){
|
||||
setRst($('.mode') .val());
|
||||
setRst($('.mode').val());
|
||||
});
|
||||
|
||||
function convert_case(str) {
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-28 00:52+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:44+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -1859,22 +1859,38 @@ msgstr ""
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:76
|
||||
#: application/controllers/Update.php:78
|
||||
msgid "Preparing DXCC-Entries: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:118
|
||||
#: application/controllers/Update.php:122
|
||||
msgid "Preparing DXCC Exceptions: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:160
|
||||
#: application/controllers/Update.php:166
|
||||
msgid "Preparing DXCC Prefixes: "
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:222
|
||||
#: application/controllers/Update.php:230
|
||||
msgid "DONE"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:244
|
||||
msgid "Updating..."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:247
|
||||
msgid "Dxcc Entities:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:248
|
||||
msgid "Dxcc Exceptions:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/Update.php:249
|
||||
msgid "Dxcc Prefixes:"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:12
|
||||
#: application/views/interface_assets/header.php:260
|
||||
msgid "User Accounts"
|
||||
@@ -1905,54 +1921,60 @@ msgstr ""
|
||||
msgid "Profile"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:839 application/controllers/User.php:849
|
||||
#: application/controllers/User.php:779
|
||||
msgid ""
|
||||
"Congrats! Wavelog was successfully installed. You can now login for the "
|
||||
"first time."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:843 application/controllers/User.php:853
|
||||
msgid "Login failed. Try again."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:856
|
||||
#: application/controllers/User.php:860
|
||||
#: application/views/interface_assets/header.php:348
|
||||
#: application/views/user/login.php:89
|
||||
#: application/views/visitor/layout/header.php:88
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:864
|
||||
#: application/controllers/User.php:868
|
||||
msgid "User logged in"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:895
|
||||
#: application/controllers/User.php:899
|
||||
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:898
|
||||
#: application/controllers/User.php:902
|
||||
msgid "Incorrect username or password!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:915
|
||||
#: application/controllers/User.php:919
|
||||
#, php-format
|
||||
msgid "User %s logged out."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:929
|
||||
#: application/controllers/User.php:933
|
||||
msgid "Password Reset is disabled on the Demo!"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:942
|
||||
#: application/controllers/User.php:946
|
||||
msgid "Forgot Password"
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:992 application/views/user/main.php:8
|
||||
#: application/controllers/User.php:996 application/views/user/main.php:8
|
||||
msgid "Email settings are incorrect."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:996 application/controllers/User.php:1001
|
||||
#: application/controllers/User.php:1000 application/controllers/User.php:1005
|
||||
msgid "Password Reset Processed."
|
||||
msgstr ""
|
||||
|
||||
#: application/controllers/User.php:1103
|
||||
#: application/controllers/User.php:1107
|
||||
#: application/views/user/forgot_password.php:51
|
||||
#: application/views/user/reset_password.php:8
|
||||
#: application/views/user/reset_password.php:35
|
||||
@@ -5913,17 +5935,17 @@ msgid ""
|
||||
"sure, ignore this warning."
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1366
|
||||
#: application/views/interface_assets/footer.php:1370
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1510
|
||||
#: application/views/interface_assets/footer.php:1514
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1374
|
||||
#: application/views/interface_assets/footer.php:1378
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1518
|
||||
#: application/views/interface_assets/footer.php:1522
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "grid square"
|
||||
msgstr ""
|
||||
|
||||
#: application/views/interface_assets/footer.php:1373
|
||||
#: application/views/interface_assets/footer.php:1517
|
||||
#: application/views/interface_assets/footer.php:1381
|
||||
#: application/views/interface_assets/footer.php:1525
|
||||
msgid "Total count"
|
||||
msgstr ""
|
||||
|
||||
|
||||
17
install/ajax.php
Normal file
17
install/ajax.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
// Target for Ajax Calls
|
||||
|
||||
require_once('includes/install_config/install_lib.php');
|
||||
require_once('includes/install_config/install_config.php');
|
||||
|
||||
require_once('includes/gettext/gettext.php');
|
||||
require_once('includes/gettext/gettext_conf.php');
|
||||
|
||||
require_once('includes/core/core_class.php');
|
||||
require_once('includes/core/database_class.php');
|
||||
|
||||
$core = new Core();
|
||||
$database = new Database();
|
||||
|
||||
require_once('includes/interface_assets/triggers.php');
|
||||
@@ -1,6 +1,11 @@
|
||||
/*!
|
||||
* No overrides for the default theme as it aligns with general.css
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: "Twemoji Country Flags", "Helvetica", "Comic Sans", serif;
|
||||
}
|
||||
|
||||
:root {
|
||||
--cl-border-btn-pwd: var(--bs-body-bg);
|
||||
}
|
||||
@@ -205,8 +210,39 @@ div.alert-danger {
|
||||
--bs-tooltip-opacity: 1;
|
||||
}
|
||||
|
||||
#languageButton {
|
||||
#languageButton, #advancedSettingsButton, #resetButton {
|
||||
position: absolute;
|
||||
bottom: 70px;
|
||||
right: 20px;
|
||||
}
|
||||
|
||||
.required:after {
|
||||
content: " *";
|
||||
color: red;
|
||||
}
|
||||
|
||||
.required-prefix:before {
|
||||
content: "* ";
|
||||
color: red;
|
||||
}
|
||||
|
||||
#logContainer {
|
||||
display: none;
|
||||
padding: 10px;
|
||||
font-family: "Courier New", Courier, monospace;
|
||||
font-size: 14px;
|
||||
color: #a4a4a4;
|
||||
white-space: pre-wrap;
|
||||
text-align: left;
|
||||
font-style: italic;
|
||||
background-color: #1a1a1a;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.has-warning {
|
||||
border-color: #ffc107;
|
||||
}
|
||||
|
||||
.uppercase {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -286,7 +286,7 @@ $config['allow_get_array'] = TRUE;
|
||||
| your log files will fill up very fast.
|
||||
|
|
||||
*/
|
||||
$config['log_threshold'] = 0;
|
||||
$config['log_threshold'] = '%log_threshold%';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -400,7 +400,7 @@ $config['cache_query_string'] = FALSE;
|
||||
| https://codeigniter.com/user_guide/libraries/encryption.html
|
||||
|
|
||||
*/
|
||||
$config['encryption_key'] = 'flossie1234555541';
|
||||
$config['encryption_key'] = '%encryptionkey%';
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -26,7 +26,7 @@ class Core
|
||||
$counter++;
|
||||
}
|
||||
|
||||
if ($data['directory'] != "") {
|
||||
if ($data['directory'] ?? '' != "") {
|
||||
if (file_exists($_SERVER['DOCUMENT_ROOT'] . '/' . $data['directory'])) {
|
||||
//pass folders real
|
||||
$counter++;
|
||||
@@ -39,33 +39,33 @@ class Core
|
||||
}
|
||||
|
||||
// Validate First Name
|
||||
if (isset($_POST['firstname']) && !empty($_POST['firstname'])) {
|
||||
if (isset($data['firstname']) && !empty($data['firstname'])) {
|
||||
$counter++;
|
||||
}
|
||||
|
||||
// Validate Last Name
|
||||
if (isset($_POST['lastname']) && !empty($_POST['lastname'])) {
|
||||
if (isset($data['lastname']) && !empty($data['lastname'])) {
|
||||
$counter++;
|
||||
}
|
||||
|
||||
// Validate Username
|
||||
if (isset($_POST['username']) && !empty($_POST['username'])) {
|
||||
if (isset($data['username']) && !empty($data['username'])) {
|
||||
$counter++;
|
||||
}
|
||||
|
||||
// Validate Callsign
|
||||
if (isset($_POST['callsign']) && !empty($_POST['callsign'])) {
|
||||
if (isset($data['callsign']) && !empty($data['callsign'])) {
|
||||
$counter++;
|
||||
}
|
||||
|
||||
// Validate Password
|
||||
if (isset($_POST['password']) && !empty($_POST['password'])) {
|
||||
if (isset($data['password']) && !empty($data['password'])) {
|
||||
$counter++;
|
||||
}
|
||||
|
||||
// Validate Locator
|
||||
if (isset($_POST['userlocator']) && !empty($_POST['userlocator'])) {
|
||||
$locator = $_POST['userlocator'];
|
||||
if (isset($data['userlocator']) && !empty($data['userlocator'])) {
|
||||
$locator = $data['userlocator'];
|
||||
if (preg_match('/^[A-R]{2}[0-9]{2}[A-X]{2}$/i', $locator)) {
|
||||
$counter++;
|
||||
} else {
|
||||
@@ -76,19 +76,19 @@ class Core
|
||||
}
|
||||
|
||||
// Validate Confirm Password
|
||||
if (isset($_POST['cnfm_password']) && !empty($_POST['cnfm_password'])) {
|
||||
if (isset($data['cnfm_password']) && !empty($data['cnfm_password'])) {
|
||||
$counter++;
|
||||
}
|
||||
|
||||
// Validate Email Address
|
||||
if (isset($_POST['user_email']) && filter_var($_POST['user_email'], FILTER_VALIDATE_EMAIL)) {
|
||||
if (isset($data['user_email']) && filter_var($data['user_email'], FILTER_VALIDATE_EMAIL)) {
|
||||
$counter++;
|
||||
} else {
|
||||
$errors[] = "Invalid Email Address.";
|
||||
}
|
||||
|
||||
// Validate Timezone
|
||||
if (isset($_POST['timezone']) && is_numeric($_POST['timezone'])) {
|
||||
if (isset($data['timezone']) && is_numeric($data['timezone'])) {
|
||||
$counter++;
|
||||
}
|
||||
|
||||
@@ -96,16 +96,11 @@ class Core
|
||||
if ($counter == '13') {
|
||||
return true;
|
||||
} else {
|
||||
log_message('error', 'Failed to validate POST data');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Function to show an error
|
||||
function show_message($type, $message)
|
||||
{
|
||||
return $message;
|
||||
}
|
||||
|
||||
// Function to write the config file
|
||||
function write_config($data) {
|
||||
|
||||
@@ -138,7 +133,11 @@ class Core
|
||||
|
||||
// Write the file
|
||||
if (fwrite($handle, $new)) {
|
||||
return true;
|
||||
if(file_exists($output_path)) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
@@ -151,15 +150,18 @@ class Core
|
||||
function write_configfile($data) {
|
||||
|
||||
$template_path = 'config/config.php';
|
||||
$output_path = $_SERVER['DOCUMENT_ROOT'] . '/' . $data['directory'] . '/application/config/config.php';
|
||||
$output_path = '../application/config/config.php';
|
||||
if (isset($_ENV['CI_ENV'])) {
|
||||
$output_path = $_SERVER['DOCUMENT_ROOT'] . '/' . $data['directory'] . '/application/config/'.$_ENV['CI_ENV'].'/config.php';
|
||||
$output_path = '../application/config/'.$_ENV['CI_ENV'].'/config.php';
|
||||
}
|
||||
|
||||
// Open the file
|
||||
$database_file = file_get_contents($template_path);
|
||||
|
||||
$new = str_replace("%baselocator%", $data['locator'], $database_file);
|
||||
// creating a unique encryption key
|
||||
$encryptionkey = uniqid(bin2hex(random_bytes(8)), false);
|
||||
|
||||
$new = str_replace("%baselocator%", strtoupper($data['userlocator']), $database_file);
|
||||
$new = str_replace("%websiteurl%", $data['websiteurl'], $new);
|
||||
$new = str_replace("%directory%", $data['directory'], $new);
|
||||
$new = str_replace("%callbook%", $data['global_call_lookup'], $new);
|
||||
@@ -174,19 +176,22 @@ class Core
|
||||
$new = str_replace("%hamqth_username%", $data['callbook_username'], $new);
|
||||
$new = str_replace("%hamqth_password%", $data['callbook_password'], $new);
|
||||
}
|
||||
$new = str_replace("%encryptionkey%", $encryptionkey, $new);
|
||||
$new = str_replace("'%log_threshold%'", $data['log_threshold'], $new);
|
||||
|
||||
// Write the new config.php file
|
||||
$handle = fopen($output_path, 'w+');
|
||||
|
||||
// Chmod the file, in case the user forgot
|
||||
@chmod($output_path, 0777);
|
||||
|
||||
// Verify file permissions
|
||||
if (is_writable($output_path)) {
|
||||
|
||||
// Write the file
|
||||
if (fwrite($handle, $new)) {
|
||||
return true;
|
||||
if(file_exists($output_path)) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
@@ -1,30 +1,9 @@
|
||||
<?php
|
||||
|
||||
class Database
|
||||
{
|
||||
|
||||
// Function to the database and tables and fill them with the default data
|
||||
function create_database($data)
|
||||
{
|
||||
// Connect to the database
|
||||
$mysqli = new mysqli($data['db_hostname'], $data['db_username'], $data['db_password'], '');
|
||||
|
||||
// Check for errors
|
||||
if (mysqli_connect_errno())
|
||||
return false;
|
||||
|
||||
// Create the prepared statement
|
||||
$mysqli->query("CREATE DATABASE IF NOT EXISTS " . $data['db_name']);
|
||||
|
||||
// Close the connection
|
||||
$mysqli->close();
|
||||
|
||||
return true;
|
||||
}
|
||||
class Database {
|
||||
|
||||
// Function to create the tables and fill them with the default data
|
||||
function create_tables($data)
|
||||
{
|
||||
function create_tables($data) {
|
||||
// Connect to the database
|
||||
$mysqli = new mysqli($data['db_hostname'], $data['db_username'], $data['db_password'], $data['db_name']);
|
||||
|
||||
@@ -39,8 +18,8 @@ class Database
|
||||
$newquery = str_replace("%%FIRSTUSER_NAME%%", $data['username'], $query);
|
||||
$newquery = str_replace("%%FIRSTUSER_PASS%%", $newpw, $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_MAIL%%", $data['user_email'], $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_CALL%%", $data['callsign'], $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_LOCATOR%%", $data['userlocator'], $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_CALL%%", strtoupper($data['callsign']), $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_LOCATOR%%", strtoupper($data['userlocator']), $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_FIRSTNAME%%", $data['firstname'], $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_LASTNAME%%", $data['lastname'], $newquery);
|
||||
$newquery = str_replace("%%FIRSTUSER_TIMEZONE%%", $data['timezone'], $newquery);
|
||||
@@ -67,24 +46,38 @@ class Database
|
||||
return true;
|
||||
}
|
||||
|
||||
function database_check($data)
|
||||
{
|
||||
function database_check($data) {
|
||||
try {
|
||||
$timeout = 5; /* five seconds for timeout */
|
||||
$link = mysqli_init();
|
||||
|
||||
|
||||
$link->options(MYSQLI_OPT_CONNECT_TIMEOUT, $timeout);
|
||||
|
||||
$link->real_connect($data['db_hostname'], $data['db_username'], $data['db_password'], $data['db_name']);
|
||||
|
||||
|
||||
$link->real_connect($data['db_hostname'], $data['db_username'], $data['db_password']);
|
||||
|
||||
if ($link->connect_error) {
|
||||
throw new Exception('Connection Error: ' . $link->connect_error);
|
||||
throw new Exception(__("Connection Error: ") . $link->connect_error);
|
||||
}
|
||||
|
||||
|
||||
if (!$link->query("CREATE DATABASE IF NOT EXISTS " . $data['db_name'])) {
|
||||
throw new Exception(__("Unable to create database: ") . $link->error);
|
||||
}
|
||||
|
||||
// Wählen Sie die Datenbank aus
|
||||
if (!$link->select_db($data['db_name'])) {
|
||||
throw new Exception(__("Unable to select database: ") . $link->error);
|
||||
}
|
||||
|
||||
$result = $link->query("SHOW TABLES");
|
||||
|
||||
if ($result->num_rows > 0) {
|
||||
throw new Exception(__("Database is not empty."));
|
||||
}
|
||||
|
||||
$mysql_version = $link->server_info;
|
||||
|
||||
|
||||
$link->close();
|
||||
|
||||
|
||||
return $mysql_version;
|
||||
} catch (Exception $e) {
|
||||
return 'Error: ' . $e->getMessage();
|
||||
@@ -76,10 +76,9 @@ function _get_client_language() {
|
||||
global $default_lang;
|
||||
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
|
||||
$code = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
|
||||
$lang = find_by('code', $code) ?: $default_lang;
|
||||
$lang = find_by('code', $code) ?? find_by('folder', $default_lang);
|
||||
} else {
|
||||
$code = 'en';
|
||||
$lang = find_by('code', $code);
|
||||
$lang = find_by('folder', $default_lang);
|
||||
}
|
||||
return $lang;
|
||||
}
|
||||
|
||||
@@ -8,8 +8,6 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
|
||||
$gt_conf['default_domain'] = 'installer';
|
||||
|
||||
$gt_conf['default_lang'] = 'english';
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-28 00:52+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:44+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -15,39 +15,123 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -55,129 +139,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -186,33 +284,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -221,273 +309,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 20:55+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-07-22 18:23+0000\n"
|
||||
"Last-Translator: \"Francisco (F4VSE)\" <kikosgc@gmail.com>\n"
|
||||
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/"
|
||||
@@ -19,39 +19,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr "Bulgare"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "Chinois (simplifié)"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr "Tchèque"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr "Néerlandais"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr "Anglais"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandais"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr "Français"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr "Allemand"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr "Grec"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr "Italien"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr "Polonais"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr "Russe"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr "Espagnol"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr "Suédois"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr "Turc"
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr "Installer | Wavelog"
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr "1. Bienvenue"
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr "2. Pré-vérification"
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr "3. Configuration"
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr "4. Base de données"
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr "5. Premier utilisateur"
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr "6. Terminé"
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr "Bienvenue dans l'installateur de Wavelog"
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -63,11 +147,11 @@ msgstr ""
|
||||
"trafic radioamateur basé sur le Web. Suivez les étapes de chaque onglet pour "
|
||||
"configurer et installer Wavelog sur votre serveur."
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr "Discussions"
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
@@ -77,95 +161,105 @@ msgstr ""
|
||||
"documentation (%s) ou au forum communautaire (%s) sur Github pour obtenir de "
|
||||
"l'aide."
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr "Wiki"
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr "Merci d'avoir installé Wavelog !"
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr "Choisir une langue"
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr "PHP Modules"
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr "Version"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr "Installé"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr "pas installé"
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr "Paramètres de PHP"
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
msgstr "Allumé"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
msgstr "Éteint"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
msgstr "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
msgstr "Version minimale de MySQL :"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
msgstr "Version minimale de MariaDB :"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
msgstr "Vous pouvez tester votre version MySQL/MariaDB à l'étape 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr "Certaines vérifications ont échoué !"
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
"Vérifiez vos paramètres PHP et installez les modules manquants si nécessaire."
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
"Après cela, vous devez redémarrer votre webserver et redémarrer le programme "
|
||||
"d'installation."
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr "Vous avez quelques avertissements !"
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
@@ -174,11 +268,11 @@ msgstr ""
|
||||
"programme d'installation, mais sachez que vous pourriez rencontrer des "
|
||||
"problèmes lors de l'utilisation de Wavelog."
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr "Tout est OK. Vous pouvez continuer."
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
@@ -186,11 +280,11 @@ msgstr ""
|
||||
"Configurez certains paramètres basiques pour votre instance Wavelog. Vous "
|
||||
"pourrez les modifier ultérieurement dans 'application/config/config.php'"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr "Répertoire"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
@@ -199,7 +293,11 @@ msgstr ""
|
||||
"Dans des conditions normales, la valeur préremplie fait son travail. Il peut "
|
||||
"aussi être vide."
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -213,35 +311,23 @@ msgstr ""
|
||||
"URL ici (par exemple %s au lieu de %s). N'oubliez pas d'inclure le "
|
||||
"répertoire ci-dessus."
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr "URL du site web"
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr "Ce champ ne peut pas être vide !"
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr "Locator par défaut"
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
"Il s'agit du locator Maidenhead par défaut qui est utilisé comme falback. "
|
||||
"Vous pouvez utiliser le localisateur de votre Home QTH."
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr "Saisissez un locator valide"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr "Facultatif : recherche globale dans le répertoire d'indicatifs d'appel"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -257,23 +343,66 @@ msgstr ""
|
||||
"l'indicatifs d'appel sur QRZ.com, vous aurez besoin d'un abonnement XML. "
|
||||
"HamQTH ne fournit pas toujours les informations de localisation."
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr "Nom d'utilisateur"
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr "Nom d'utilisateur du carnet"
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr "Mot de passe du carnet"
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
@@ -281,167 +410,198 @@ msgstr ""
|
||||
"Pour installer correctement Wavelog, vous devez déjà avoir configuré une "
|
||||
"base de données MariaDB/MySQL. Fournissez les paramètres ici."
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr "Nom d'hôte ou IP"
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
"Généralement « localhost ». Facultatif avec '...:[port]'. Port par défaut : "
|
||||
"3306"
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr "Nom de la base de données"
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr "Nom de la base de données"
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
"Nom d'utilisateur de l'utilisateur de la base de données qui a un accès "
|
||||
"complet à la base de données."
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr "Mot de passe de l'utilisateur de la base de données"
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr "Test de connexion"
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
"Vous pouvez maintenant créer votre premier utilisateur dans Wavelog. "
|
||||
"Remplissez tous les champs et cliquez sur continuer.<br>Assurez-vous "
|
||||
"d'utiliser un mot de passe sécurisé."
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr "Prénom"
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr "Nom de famille"
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr "Indicatif d'appel"
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr "Confirmez le mot de passe"
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr "Ville"
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr "Adresse e-mail"
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr "Locator"
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr "Fuseau horaire"
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr "DXCC"
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr "- Aucun -"
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr "DXCC supprimé"
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr "Liste de verification"
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr "Base de données"
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr "Premier utilisateur"
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr "Presque fini!"
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr "Vous avez préparé toutes les étapes nécessaires."
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
"Nous pouvons maintenant installer Wavelog. Ce processus peut prendre "
|
||||
"quelques minutes."
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
msgstr "Installer maintenant"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr "Arrière"
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr "Continuer"
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
msgstr "Erreur : Tous les champs sont obligatoires."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr "Connection..."
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
msgstr "La connexion a réussi et votre base de données devrait être compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
@@ -450,100 +610,192 @@ msgstr ""
|
||||
"Wavelog. Vous pouvez essayer de continuer mais vous pourriez rencontrer des "
|
||||
"problèmes."
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr "Le mot de passe doit comporter au moins 8 caractères"
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr "Les mots de passe ne correspondent pas"
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
msgstr "L'adresse e-mail n'est pas valide"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr "Installer maintenant"
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
"Le locator n'est pas valide. Utilisez un locator à 6 caractères, par ex. "
|
||||
"HA44AA. Si vous ne connaissez pas votre locator, alors <a href='%s' "
|
||||
"target='_blank'>cliquez ici</a>!"
|
||||
|
||||
#: install/index.php:1549
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "On"
|
||||
#~ msgstr "Allumé"
|
||||
|
||||
#~ msgid "Off"
|
||||
#~ msgstr "Éteint"
|
||||
|
||||
#~ msgid "MySQL / MariaDB"
|
||||
#~ msgstr "MySQL / MariaDB"
|
||||
|
||||
#~ msgid "Min. MySQL Version:"
|
||||
#~ msgstr "Version minimale de MySQL :"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "ou"
|
||||
|
||||
#~ msgid "Min. MariaDB Version:"
|
||||
#~ msgstr "Version minimale de MariaDB :"
|
||||
|
||||
#~ msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#~ msgstr "Vous pouvez tester votre version MySQL/MariaDB à l'étape 4"
|
||||
|
||||
#~ msgid "This field can't be empty!"
|
||||
#~ msgstr "Ce champ ne peut pas être vide !"
|
||||
|
||||
#~ msgid "Default Gridsquare/Locator"
|
||||
#~ msgstr "Locator par défaut"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This is the default maidenhead locator which is used as falback. You can "
|
||||
#~ "use the locator of your Home QTH."
|
||||
#~ msgstr ""
|
||||
#~ "Il s'agit du locator Maidenhead par défaut qui est utilisé comme falback. "
|
||||
#~ "Vous pouvez utiliser le localisateur de votre Home QTH."
|
||||
|
||||
#~ msgid "Type in a valid locator"
|
||||
#~ msgstr "Saisissez un locator valide"
|
||||
|
||||
#~ msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#~ msgstr ""
|
||||
#~ "Généralement « localhost ». Facultatif avec '...:[port]'. Port par "
|
||||
#~ "défaut : 3306"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Now you can create your first user in Wavelog. Fill out all fields and "
|
||||
#~ "click continue.<br>Make sure you use a safe password."
|
||||
#~ msgstr ""
|
||||
#~ "Vous pouvez maintenant créer votre premier utilisateur dans Wavelog. "
|
||||
#~ "Remplissez tous les champs et cliquez sur continuer.<br>Assurez-vous "
|
||||
#~ "d'utiliser un mot de passe sécurisé."
|
||||
|
||||
#~ msgid "Error: All fields are required."
|
||||
#~ msgstr "Erreur : Tous les champs sont obligatoires."
|
||||
|
||||
#~ msgid "Connection was successful and your database should be compatible"
|
||||
#~ msgstr ""
|
||||
#~ "La connexion a réussi et votre base de données devrait être compatible"
|
||||
|
||||
#~ msgid "The E-Mail Address is not valid"
|
||||
#~ msgstr "L'adresse e-mail n'est pas valide"
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
msgstr ""
|
||||
"Veuillez rendre le dossier %s accessible en écriture. <strong>Exemple</"
|
||||
"strong> :<br /><br /><code>chmod -R 777 %s</code><br /><br /><i>N'oubliez "
|
||||
"pas de restaurer les autorisations par la suite .</i>"
|
||||
#~ msgid ""
|
||||
#~ "The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
#~ "you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
#~ "here</a>!"
|
||||
#~ msgstr ""
|
||||
#~ "Le locator n'est pas valide. Utilisez un locator à 6 caractères, par ex. "
|
||||
#~ "HA44AA. Si vous ne connaissez pas votre locator, alors <a href='%s' "
|
||||
#~ "target='_blank'>cliquez ici</a>!"
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
msgstr "Bulgare"
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "Chinois (simplifié)"
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
msgstr "Tchèque"
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
msgstr "Néerlandais"
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
msgstr "Anglais"
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandais"
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
msgstr "Français"
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr "Allemand"
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr "Grec"
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr "Italien"
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr "Polonais"
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr "Russe"
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr "Espagnol"
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr "Suédois"
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
msgstr "Turc"
|
||||
#, php-format
|
||||
#~ msgid ""
|
||||
#~ "Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
#~ "><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
#~ "permissions afterwards.</i>"
|
||||
#~ msgstr ""
|
||||
#~ "Veuillez rendre le dossier %s accessible en écriture. <strong>Exemple</"
|
||||
#~ "strong> :<br /><br /><code>chmod -R 777 %s</code><br /><br /><i>N'oubliez "
|
||||
#~ "pas de restaurer les autorisations par la suite .</i>"
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 20:46+0000\n"
|
||||
"Last-Translator: Michael Skolsky <r1blh@yandex.ru>\n"
|
||||
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/"
|
||||
@@ -18,39 +18,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.6\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr "Болгарский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "Китайский (упрощённый)"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr "Чешский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr "Голландский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr "Английский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr "Финский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr "Французский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr "Немецкий"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr "Греческий"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr "Итальянский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr "Польский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr "Русский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr "Испанский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr "Шведский"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr "Турецкий"
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr "Установка | Wavelog"
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr "1. Добро пожаловать"
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr "2. Предварительные проверки"
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr "3. Конфигурация"
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr "4. База данных"
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr "5. Первый пользователь"
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr "6. Завершить"
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr "Добро пожаловать в установщик Wavelog"
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -62,11 +146,11 @@ msgstr ""
|
||||
"ведения журнала любительской радиостанции. Следуйте шагам на каждой вкладке, "
|
||||
"чтобы настроить и установить Wavelog на вашем сервере."
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr "Обсуждения"
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
@@ -75,94 +159,104 @@ msgstr ""
|
||||
"Если у вас возникнут проблемы или вопросы, обратитесь к документации (%s) "
|
||||
"или форуму сообщества (%s) на Github за помощью."
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr "Вики"
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr "Спасибо за установку Wavelog!"
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr "Язык"
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr "Выберите язык"
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr "Модули PHP"
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr "Версия"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr "Установленные"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr "Не установленные"
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr "Настройки PHP"
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
msgstr "Включено"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
msgstr "Выключено"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
msgstr "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
msgstr "Мин. версия MySQL:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
msgstr "или"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
msgstr "Мин. версия MariaDB:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
msgstr "Вы можете проверить свою версию MySQL/MariaDB на шаге 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr "Некоторые проверки не прошли!"
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
"Проверьте настройки PHP и установите недостающие модули, если необходимо."
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
"После этого вам нужно перезапустить веб-сервер и снова запустить установщик."
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr "У тебя есть несколько предупреждений!"
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
@@ -170,11 +264,11 @@ msgstr ""
|
||||
"Некоторые настройки не оптимальны. Вы можете продолжить установку, но имейте "
|
||||
"в виду, что при использовании Wavelog могут возникнуть проблемы."
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr "Все проверки в порядке. Можешь продолжать."
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
@@ -182,11 +276,11 @@ msgstr ""
|
||||
"Настройте некоторые основные параметры для вашего экземпляра wavelog. Вы "
|
||||
"можете изменить их позже в 'application/config/config.php'"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr "Каталог"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
@@ -195,7 +289,11 @@ msgstr ""
|
||||
"обычной ситуации предустановленное значение подходит. Оно также может быть "
|
||||
"пустым."
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -208,35 +306,23 @@ msgstr ""
|
||||
"обратным прокси-сервером с SSL, введите здесь новый URL (например, %s вместо "
|
||||
"%s). Не забудьте включить каталог, указанный выше."
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr "URL веб-сайта"
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr "Это поле не может быть пустым!"
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr "Квадрат/локатор по умолчанию"
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
"Это локатор Maidenhead по умолчанию, который используется в качестве "
|
||||
"резервного. Вы можете использовать локатор вашего домашнего QTH."
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr "Введите корректный локатор"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr "Опционально: Поиск в глобальном колбуке"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -251,23 +337,66 @@ msgstr ""
|
||||
"QRZ.com, вам потребуется подписка на XML. HamQTH не всегда предоставляет "
|
||||
"информацию о локаторе."
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr "Имя пользователя"
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr "Имя пользователя для колбука"
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr "Пароль для колбука"
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
@@ -275,165 +404,197 @@ msgstr ""
|
||||
"Для правильной установки Wavelog вам нужно настроить базу данных mariadb/"
|
||||
"mysql. Укажите параметры здесь."
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr "Имя хоста или IP-адрес"
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
"Обычно 'localhost'. Опционально с '...:[порт]'. Порт по умолчанию: 3306"
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr "Название базы данных"
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr "Название базы данных"
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
"Имя пользователя базы данных, который имеет полный доступ к базе данных."
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr "Пароль пользователя базы данных"
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr "Проверка соединения"
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
"Теперь вы можете создать своего первого пользователя в Wavelog. Заполните "
|
||||
"все поля и нажмите продолжить.<br>Убедитесь, что вы используете безопасный "
|
||||
"пароль."
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr "Имя"
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr "Фамилия"
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr "Позывной"
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr "Подтвердите пароль"
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr "Город"
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr "Адрес электронной почты"
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr "Квадрат/Локатор"
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr "Часовой пояс"
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr "DXCC"
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr "- Нет -"
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr "Удалённые DXCC"
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr "Контрольный список"
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr "Конфигурация"
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr "База данных"
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr "Первый пользователь"
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr "Почти готово!"
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr "Вы подготовили всё необходимое."
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
"Теперь мы можем установить Wavelog. Этот процесс может занять несколько "
|
||||
"минут."
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
msgstr "Установить сейчас"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr "Назад"
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr "Продолжить"
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
msgstr "Ошибка: Все поля обязательны для заполнения."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr "Подключение..."
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
msgstr "Соединение было успешным, и ваша база данных должна быть совместимой"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
@@ -441,100 +602,191 @@ msgstr ""
|
||||
"Соединение было успешным, но ваша база данных кажется слишком старой для "
|
||||
"Wavelog. Вы можете попробовать продолжить, но могут возникнуть проблемы."
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr "Длина пароля должна быть не менее 8 символов"
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr "Пароли не совпадают"
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
msgstr "Адрес электронной почты недействителен"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr "Установить сейчас"
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
"Локатор недействителен. Используйте 6-символьный локатор, например HA44AA. "
|
||||
"Если вы не знаете свой квадрат, то <a href='%s' target='_blank'>нажмите "
|
||||
"здесь</a>!"
|
||||
|
||||
#: install/index.php:1549
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "On"
|
||||
#~ msgstr "Включено"
|
||||
|
||||
#~ msgid "Off"
|
||||
#~ msgstr "Выключено"
|
||||
|
||||
#~ msgid "MySQL / MariaDB"
|
||||
#~ msgstr "MySQL / MariaDB"
|
||||
|
||||
#~ msgid "Min. MySQL Version:"
|
||||
#~ msgstr "Мин. версия MySQL:"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "или"
|
||||
|
||||
#~ msgid "Min. MariaDB Version:"
|
||||
#~ msgstr "Мин. версия MariaDB:"
|
||||
|
||||
#~ msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#~ msgstr "Вы можете проверить свою версию MySQL/MariaDB на шаге 4"
|
||||
|
||||
#~ msgid "This field can't be empty!"
|
||||
#~ msgstr "Это поле не может быть пустым!"
|
||||
|
||||
#~ msgid "Default Gridsquare/Locator"
|
||||
#~ msgstr "Квадрат/локатор по умолчанию"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This is the default maidenhead locator which is used as falback. You can "
|
||||
#~ "use the locator of your Home QTH."
|
||||
#~ msgstr ""
|
||||
#~ "Это локатор Maidenhead по умолчанию, который используется в качестве "
|
||||
#~ "резервного. Вы можете использовать локатор вашего домашнего QTH."
|
||||
|
||||
#~ msgid "Type in a valid locator"
|
||||
#~ msgstr "Введите корректный локатор"
|
||||
|
||||
#~ msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#~ msgstr ""
|
||||
#~ "Обычно 'localhost'. Опционально с '...:[порт]'. Порт по умолчанию: 3306"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Now you can create your first user in Wavelog. Fill out all fields and "
|
||||
#~ "click continue.<br>Make sure you use a safe password."
|
||||
#~ msgstr ""
|
||||
#~ "Теперь вы можете создать своего первого пользователя в Wavelog. Заполните "
|
||||
#~ "все поля и нажмите продолжить.<br>Убедитесь, что вы используете "
|
||||
#~ "безопасный пароль."
|
||||
|
||||
#~ msgid "Error: All fields are required."
|
||||
#~ msgstr "Ошибка: Все поля обязательны для заполнения."
|
||||
|
||||
#~ msgid "Connection was successful and your database should be compatible"
|
||||
#~ msgstr ""
|
||||
#~ "Соединение было успешным, и ваша база данных должна быть совместимой"
|
||||
|
||||
#~ msgid "The E-Mail Address is not valid"
|
||||
#~ msgstr "Адрес электронной почты недействителен"
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
msgstr ""
|
||||
"Пожалуйста, сделайте каталог %s доступным для записи. <strong>Пример</"
|
||||
"strong>:<br /><br /><code>chmod -R 777 %s</code><br /><br /><i> Не забудьте "
|
||||
"восстановить права доступа после этого.</i>"
|
||||
#~ msgid ""
|
||||
#~ "The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
#~ "you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
#~ "here</a>!"
|
||||
#~ msgstr ""
|
||||
#~ "Локатор недействителен. Используйте 6-символьный локатор, например "
|
||||
#~ "HA44AA. Если вы не знаете свой квадрат, то <a href='%s' "
|
||||
#~ "target='_blank'>нажмите здесь</a>!"
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
msgstr "Болгарский"
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "Китайский (упрощённый)"
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
msgstr "Чешский"
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
msgstr "Голландский"
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
msgstr "Английский"
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
msgstr "Финский"
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
msgstr "Французский"
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr "Немецкий"
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr "Греческий"
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr "Итальянский"
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr "Польский"
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr "Русский"
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr "Испанский"
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr "Шведский"
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
msgstr "Турецкий"
|
||||
#, php-format
|
||||
#~ msgid ""
|
||||
#~ "Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
#~ "><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
#~ "permissions afterwards.</i>"
|
||||
#~ msgstr ""
|
||||
#~ "Пожалуйста, сделайте каталог %s доступным для записи. <strong>Пример</"
|
||||
#~ "strong>:<br /><br /><code>chmod -R 777 %s</code><br /><br /><i> Не "
|
||||
#~ "забудьте восстановить права доступа после этого.</i>"
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-06-05 15:15+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
@@ -16,39 +16,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 3.4.4\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -56,129 +140,143 @@ msgid ""
|
||||
"Wavelog on your server."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
"(%s) or community forum (%s) on Github for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -187,33 +285,23 @@ msgid ""
|
||||
"Don't forget to include the directory from above."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -222,273 +310,370 @@ msgid ""
|
||||
"an XML subscription. HamQTH does not always provide the locator information."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1442
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
Binary file not shown.
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-07-26 09:13+0000\n"
|
||||
"Last-Translator: Halil AYYILDIZ <ta2lghalil@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/"
|
||||
@@ -18,39 +18,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr "Bulgarca"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "Çince (Basitleştirilmiş)"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr "Çek"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr "Flemenkçe"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr "İngilizce"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr "Fince"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr "Fransızca"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr "Almanca"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr "Yunanca"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr "İtalyanca"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr "Portekizce"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr "Polonyaca"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr "Rusça"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr "İspanyolca"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr "İsveççe"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr "Türkçe"
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr "Kurulum | Wavelog"
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr "1. Hoş Geldiniz"
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr "2. Ön Kontroller"
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr "3. Yapılandırma"
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr "4. Veritabanı"
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr "5. İlk Kullanıcı"
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr "6. Bitiş"
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr "Wavelog Yükleyicisine Hoş Geldiniz"
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -62,11 +146,11 @@ msgstr ""
|
||||
"Wavelog'u sunucunuza yapılandırmak ve yüklemek için her sekmedeki adımları "
|
||||
"izleyin."
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr "Tartışmalar"
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
@@ -75,94 +159,104 @@ msgstr ""
|
||||
"Herhangi bir sorunla karşılaşırsanız veya sorularınız varsa yardım için "
|
||||
"belgelere (%s) veya Github'daki topluluk forumuna (%s) bakın."
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr "Wiki"
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr "Wavelog'u yüklediğiniz için teşekkür ederiz!"
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr "Dil"
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr "Bir dil seç"
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr "Kapalı"
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr "PHP Modülleri"
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr "Sürüm"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr "Kurulmuş"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr "Kurulu Değil"
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr "PHP Ayarları"
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
msgstr "Açık"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
msgstr "Kapalı"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
msgstr "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
msgstr "En az MySQL Sürümü:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
msgstr "veya"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
msgstr "En az MariaDB Versiyonu:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
msgstr "MySQL/MariaDB Sürümünüzü 4. Adımda test edebilirsiniz"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr "Bazı Kontroller Başarısız Oldu!"
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr "PHP ayarlarınızı kontrol edin ve gerekirse eksik modülleri yükleyin."
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr ""
|
||||
"Daha sonra web sunucunuzu yeniden başlatmanız ve yükleyiciyi tekrar "
|
||||
"başlatmanız gerekiyor."
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr "Bazı uyarılarınız var!"
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
@@ -170,11 +264,11 @@ msgstr ""
|
||||
"Bazı ayarlar optimum değil. Yükleyiciyle devam edebilirsiniz ancak Wavelog "
|
||||
"kullanırken sorunlarla karşılaşabileceğinizi unutmayın."
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr "Tüm kontroller tamam. Devam edebilirsiniz."
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
@@ -182,11 +276,11 @@ msgstr ""
|
||||
"wavelog örneğiniz için bazı temel parametreleri yapılandırın. Bunları daha "
|
||||
"sonra 'application/config/config.php'de değiştirebilirsiniz"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr "Dizin"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
@@ -194,7 +288,11 @@ msgstr ""
|
||||
"'Dizin' temel olarak webroot'unuzun alt klasörüdür. Normal koşullarda "
|
||||
"önceden doldurulmuş değer işini yapmaktadır. Boş da olabilir."
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -204,38 +302,26 @@ msgid ""
|
||||
msgstr ""
|
||||
"Bu, Wavelog Instance'ınızın mevcut olacağı tam URL'dir. Bu yükleyiciyi yerel "
|
||||
"olarak çalıştırıyorsanız ancak Wavelog'u SSL'li bir Ters Proxy'nin arkasına "
|
||||
"yerleştirmek istiyorsanız buraya yeni URL'yi yazmalısınız (ör. %s yerine %s)"
|
||||
". Yukarıdaki dizini eklemeyi unutmayın."
|
||||
"yerleştirmek istiyorsanız buraya yeni URL'yi yazmalısınız (ör. %s yerine "
|
||||
"%s). Yukarıdaki dizini eklemeyi unutmayın."
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr "Web Sitesi URL'si"
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr "Bu alan boş bırakılamaz!"
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr "Varsayılan Gridsquare/Konum Belirleyici"
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
"Bu, geri donus olarak kullanilan varsayilan konum belirleyicisidir. Ana "
|
||||
"QTH'nizin konum belirleyicisini kullanabilirsiniz."
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr "Geçerli bir konum belirleyici yazın"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr "İsteğe bağlı: Global Çağrı İşareti Arama"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -250,23 +336,66 @@ msgstr ""
|
||||
"Bulucu'yu da almak için bir XML aboneliğine ihtiyacınız olacak. HamQTH her "
|
||||
"zaman bulucu bilgilerini sağlamaz."
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr "Kullanıcı adı"
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr "Şifre"
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr "Çağrı Defteri Kullanıcı Adı"
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr "Çağrı Defteri Şifresi"
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
@@ -274,163 +403,196 @@ msgstr ""
|
||||
"Wavelog'u düzgün bir şekilde kurmak için halihazırda bir mariadb/mysql "
|
||||
"veritabanı kurmuş olmanız gerekir. Parametreleri buraya girin."
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr "Ana bilgisayar adı veya IP"
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
"Genellikle 'localhost'. '...:[port]' ile isteğe bağlı. Varsayılan Port: 3306"
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr "Veri tabanı ismi"
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr "Veritabanının Adı"
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr ""
|
||||
"Veritabanına tam erişim yetkisine sahip olan Veritabanı Kullanıcısının "
|
||||
"Kullanıcı Adı."
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr "Veritabanı Kullanıcısının Şifresi"
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr "Bağlantı Testi"
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
"Artık Wavelog'da ilk kullanıcınızı oluşturabilirsiniz. Tüm alanları doldurun "
|
||||
"ve devam'a tıklayın.<br>Güvenli bir parola kullandığınızdan emin olun."
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr "Adı"
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr "Soyadı"
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr "Çağrı işareti"
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr "Şifreyi Onayla"
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr "Şehir"
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr "E-posta Adresi"
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr "Konum Belirteci"
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr "Saat dilimi"
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr "DXCC"
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr "- Hiçbiri -"
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr "Silinmiş DXCC"
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr "Kontrol listesi"
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr "Yapılandırma"
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr "Veri tabanı"
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr "Adı"
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr "Neredeyse bitti!"
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr "Gerekli tüm adımları hazırladınız."
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr "Artık Wavelog'u yükleyebiliriz. Bu işlem birkaç dakika sürebilir."
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
msgstr "Şimdi Yükle"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr "Geri"
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr "Devam"
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
msgstr "Hata: Tüm alanların doldurulması zorunludur."
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr "Bağlanıyor..."
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
msgstr "Bağlantı başarılı oldu ve veritabanınız uyumlu olmalı"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
@@ -438,100 +600,191 @@ msgstr ""
|
||||
"Bağlantı başarılı oldu ancak veritabanınız Wavelog için çok eski görünüyor. "
|
||||
"Devam etmeyi deneyebilirsiniz ancak sorunlarla karşılaşabilirsiniz."
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr "Şifre en az 8 karakter uzunluğunda olmalıdır"
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr "Şifreler eşleşmiyor"
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
msgstr "Email adresi geçerli değil"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr "Şimdi Yükle"
|
||||
|
||||
#: install/index.php:1442
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
"konum belirteci geçerli değil. 6 karakterli bir konum belirteci kullanın, "
|
||||
"örneğin HA44AA. Konum belirtecinizi bilmiyorsanız <a href='%s' "
|
||||
"target='_blank'>buraya tıklayın</a>!"
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
"Lütfen %s klasörünü yazılabilir yapın. <strong>Örnek</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Daha sonra izinleri geri "
|
||||
"yüklemeyi unutmayın.</i>"
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
msgstr "Bulgarca"
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "Çince (Basitleştirilmiş)"
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
msgstr "Çek"
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
msgstr "Flemenkçe"
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
msgstr "İngilizce"
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
msgstr "Fince"
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
msgstr "Fransızca"
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr "Almanca"
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr "Yunanca"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr "İtalyanca"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr "Polonyaca"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr "Portekizce"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr "Rusça"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr "İspanyolca"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr "İsveççe"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
msgstr "Türkçe"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "On"
|
||||
#~ msgstr "Açık"
|
||||
|
||||
#~ msgid "Off"
|
||||
#~ msgstr "Kapalı"
|
||||
|
||||
#~ msgid "MySQL / MariaDB"
|
||||
#~ msgstr "MySQL / MariaDB"
|
||||
|
||||
#~ msgid "Min. MySQL Version:"
|
||||
#~ msgstr "En az MySQL Sürümü:"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "veya"
|
||||
|
||||
#~ msgid "Min. MariaDB Version:"
|
||||
#~ msgstr "En az MariaDB Versiyonu:"
|
||||
|
||||
#~ msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#~ msgstr "MySQL/MariaDB Sürümünüzü 4. Adımda test edebilirsiniz"
|
||||
|
||||
#~ msgid "This field can't be empty!"
|
||||
#~ msgstr "Bu alan boş bırakılamaz!"
|
||||
|
||||
#~ msgid "Default Gridsquare/Locator"
|
||||
#~ msgstr "Varsayılan Gridsquare/Konum Belirleyici"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This is the default maidenhead locator which is used as falback. You can "
|
||||
#~ "use the locator of your Home QTH."
|
||||
#~ msgstr ""
|
||||
#~ "Bu, geri donus olarak kullanilan varsayilan konum belirleyicisidir. Ana "
|
||||
#~ "QTH'nizin konum belirleyicisini kullanabilirsiniz."
|
||||
|
||||
#~ msgid "Type in a valid locator"
|
||||
#~ msgstr "Geçerli bir konum belirleyici yazın"
|
||||
|
||||
#~ msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#~ msgstr ""
|
||||
#~ "Genellikle 'localhost'. '...:[port]' ile isteğe bağlı. Varsayılan Port: "
|
||||
#~ "3306"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Now you can create your first user in Wavelog. Fill out all fields and "
|
||||
#~ "click continue.<br>Make sure you use a safe password."
|
||||
#~ msgstr ""
|
||||
#~ "Artık Wavelog'da ilk kullanıcınızı oluşturabilirsiniz. Tüm alanları "
|
||||
#~ "doldurun ve devam'a tıklayın.<br>Güvenli bir parola kullandığınızdan emin "
|
||||
#~ "olun."
|
||||
|
||||
#~ msgid "Error: All fields are required."
|
||||
#~ msgstr "Hata: Tüm alanların doldurulması zorunludur."
|
||||
|
||||
#~ msgid "Connection was successful and your database should be compatible"
|
||||
#~ msgstr "Bağlantı başarılı oldu ve veritabanınız uyumlu olmalı"
|
||||
|
||||
#~ msgid "The E-Mail Address is not valid"
|
||||
#~ msgstr "Email adresi geçerli değil"
|
||||
|
||||
#, php-format
|
||||
#~ msgid ""
|
||||
#~ "The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
#~ "you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
#~ "here</a>!"
|
||||
#~ msgstr ""
|
||||
#~ "konum belirteci geçerli değil. 6 karakterli bir konum belirteci kullanın, "
|
||||
#~ "örneğin HA44AA. Konum belirtecinizi bilmiyorsanız <a href='%s' "
|
||||
#~ "target='_blank'>buraya tıklayın</a>!"
|
||||
|
||||
#, php-format
|
||||
#~ msgid ""
|
||||
#~ "Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
#~ "><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
#~ "permissions afterwards.</i>"
|
||||
#~ msgstr ""
|
||||
#~ "Lütfen %s klasörünü yazılabilir yapın. <strong>Örnek</strong>:<br /><br /"
|
||||
#~ "><code>chmod -R 777 %s</code><br /><br /><i>Daha sonra izinleri geri "
|
||||
#~ "yüklemeyi unutmayın.</i>"
|
||||
|
||||
Binary file not shown.
@@ -6,7 +6,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: translations@wavelog.org\n"
|
||||
"POT-Creation-Date: 2024-07-22 18:23+0000\n"
|
||||
"POT-Creation-Date: 2024-07-28 17:38+0000\n"
|
||||
"PO-Revision-Date: 2024-07-23 10:31+0000\n"
|
||||
"Last-Translator: Karuru <karuru@aerodefense.co.uk>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://translate.wavelog.org/projects/"
|
||||
@@ -18,39 +18,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: install/index.php:215
|
||||
#: install/includes/core/database_class.php:59
|
||||
msgid "Connection Error: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:63
|
||||
msgid "Unable to create database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:68
|
||||
msgid "Unable to select database: "
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/core/database_class.php:74
|
||||
msgid "Database is not empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/install_config/install_lib.php:123
|
||||
msgid "not detected"
|
||||
msgstr ""
|
||||
|
||||
#: install/includes/interface_assets/footer.php:49
|
||||
msgid "Bulgarian"
|
||||
msgstr "保加利亚语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:50
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "中文(简体)"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:51
|
||||
msgid "Czech"
|
||||
msgstr "捷克语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:52
|
||||
msgid "Dutch"
|
||||
msgstr "荷兰语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:53
|
||||
msgid "English"
|
||||
msgstr "英语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:54
|
||||
msgid "Finnish"
|
||||
msgstr "芬兰语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:55
|
||||
msgid "French"
|
||||
msgstr "法语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:56
|
||||
msgid "German"
|
||||
msgstr "德语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:57
|
||||
msgid "Greek"
|
||||
msgstr "希腊语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:58
|
||||
msgid "Italian"
|
||||
msgstr "意大利语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:59
|
||||
msgid "Portuguese"
|
||||
msgstr "葡萄牙语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:60
|
||||
msgid "Polish"
|
||||
msgstr "波兰语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:61
|
||||
msgid "Russian"
|
||||
msgstr "俄语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:62
|
||||
msgid "Spanish"
|
||||
msgstr "西班牙语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:63
|
||||
msgid "Swedish"
|
||||
msgstr "瑞典语"
|
||||
|
||||
#: install/includes/interface_assets/footer.php:64
|
||||
msgid "Turkish"
|
||||
msgstr "土耳其语"
|
||||
|
||||
#: install/includes/interface_assets/header.php:94
|
||||
msgid "Install | Wavelog"
|
||||
msgstr "安装 | Wavelog"
|
||||
|
||||
#: install/index.php:239
|
||||
#: install/index.php:25
|
||||
msgid "1. Welcome"
|
||||
msgstr "1. 欢迎"
|
||||
|
||||
#: install/index.php:242
|
||||
#: install/index.php:28
|
||||
msgid "2. Pre Checks"
|
||||
msgstr "2. 安装前检查"
|
||||
|
||||
#: install/index.php:245
|
||||
#: install/index.php:31
|
||||
msgid "3. Configuration"
|
||||
msgstr "3. 配置信息"
|
||||
|
||||
#: install/index.php:248
|
||||
#: install/index.php:34
|
||||
msgid "4. Database"
|
||||
msgstr "4. 数据库"
|
||||
|
||||
#: install/index.php:251
|
||||
#: install/index.php:37
|
||||
msgid "5. First User"
|
||||
msgstr "5. 初始用户"
|
||||
|
||||
#: install/index.php:254
|
||||
#: install/index.php:40
|
||||
msgid "6. Finish"
|
||||
msgstr "6. 完成"
|
||||
|
||||
#: install/index.php:271
|
||||
#: install/index.php:57
|
||||
msgid "Welcome to the Wavelog Installer"
|
||||
msgstr "欢迎使用 Wavelog 安装程序"
|
||||
|
||||
#: install/index.php:272
|
||||
#: install/index.php:58
|
||||
msgid ""
|
||||
"This installer will guide you through the necessary steps for the "
|
||||
"installation of Wavelog. <br>Wavelog is a powerful web-based amateur radio "
|
||||
@@ -61,11 +145,11 @@ msgstr ""
|
||||
"于网络的业余无线电日志记录软件,请按照每个选项卡中的步骤在服务器上安装和配置 "
|
||||
"Wavelog。"
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Discussions"
|
||||
msgstr "交流"
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you encounter any issues or have questions, refer to the documentation "
|
||||
@@ -74,103 +158,113 @@ msgstr ""
|
||||
"如果您遇到问题或有疑问,请查看文档(%s)或 Github 上的社区门户(%s)以获得帮"
|
||||
"助。"
|
||||
|
||||
#: install/index.php:273
|
||||
#: install/index.php:59
|
||||
msgid "Wiki"
|
||||
msgstr "Wiki"
|
||||
|
||||
#: install/index.php:274
|
||||
#: install/index.php:60
|
||||
msgid "Thank you for installing Wavelog!"
|
||||
msgstr "感谢安装 Wavelog!"
|
||||
|
||||
#: install/index.php:275 install/index.php:278 install/index.php:1125
|
||||
#: install/index.php:61 install/index.php:64 install/index.php:1031
|
||||
msgid "Language"
|
||||
msgstr "语言"
|
||||
|
||||
#: install/index.php:288
|
||||
#: install/index.php:74
|
||||
msgid "Select a language"
|
||||
msgstr "选择语言"
|
||||
|
||||
#: install/index.php:301
|
||||
#: install/index.php:86 install/index.php:415
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
#: install/index.php:311
|
||||
#: install/index.php:96
|
||||
msgid "PHP Modules"
|
||||
msgstr "PHP 模块"
|
||||
|
||||
#: install/index.php:318
|
||||
#: install/index.php:103
|
||||
msgid "Version"
|
||||
msgstr "版本"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:104
|
||||
#, php-format
|
||||
msgctxt "PHP Version"
|
||||
msgid "min. %s (recommended %s+)"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:131
|
||||
msgid "Installed"
|
||||
msgstr "已安装"
|
||||
|
||||
#: install/index.php:340
|
||||
#: install/index.php:131
|
||||
msgid "Not Installed"
|
||||
msgstr "未安装"
|
||||
|
||||
#: install/index.php:348
|
||||
#: install/index.php:139
|
||||
msgid "PHP Settings"
|
||||
msgstr "PHP 设置"
|
||||
|
||||
#: install/index.php:412
|
||||
msgid "On"
|
||||
msgstr "开启"
|
||||
#: install/index.php:229
|
||||
msgid "Folder Write Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:415
|
||||
msgid "Off"
|
||||
msgstr "关闭"
|
||||
#: install/index.php:235 install/index.php:246 install/index.php:257
|
||||
#: install/index.php:268 install/index.php:279
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:423
|
||||
msgid "MySQL / MariaDB"
|
||||
msgstr "MySQL / MariaDB"
|
||||
#: install/index.php:238 install/index.php:249 install/index.php:260
|
||||
#: install/index.php:271 install/index.php:282
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:426
|
||||
msgid "Min. MySQL Version:"
|
||||
msgstr "MySQL 最低版本:"
|
||||
#: install/index.php:289
|
||||
msgid "Web Server"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:430
|
||||
msgid "or"
|
||||
msgstr "或者"
|
||||
#: install/index.php:292
|
||||
msgid "Version:"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:434
|
||||
msgid "Min. MariaDB Version:"
|
||||
msgstr "MariaDB 最低版本:"
|
||||
#: install/index.php:299
|
||||
msgid "Important note for nginx users!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:438
|
||||
msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
msgstr "您可在第 4 步中测试 MySQL/MariaDB 的版本"
|
||||
#: install/index.php:300
|
||||
msgid ""
|
||||
"Since you are using nginx as web server please make sure that you have made "
|
||||
"the changes described in the Wiki before continuing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:442
|
||||
#: install/index.php:309
|
||||
msgid "Some Checks have failed!"
|
||||
msgstr "部分检查出现了问题!"
|
||||
|
||||
#: install/index.php:443
|
||||
#: install/index.php:310
|
||||
msgid "Check your PHP settings and install missing modules if necessary."
|
||||
msgstr "请检查 PHP 配置,或安装缺失的必要模块。"
|
||||
|
||||
#: install/index.php:444
|
||||
#: install/index.php:311
|
||||
msgid ""
|
||||
"After that, you have to restart your webserver and start the installer again."
|
||||
msgstr "在这之后,您需要重启服务器,重新启动安装程序。"
|
||||
|
||||
#: install/index.php:448
|
||||
#: install/index.php:317
|
||||
msgid "You have some warnings!"
|
||||
msgstr "有一些警告内容!"
|
||||
|
||||
#: install/index.php:449
|
||||
#: install/index.php:318
|
||||
msgid ""
|
||||
"Some of the settings are not optimal. You can proceed with the installer but "
|
||||
"be aware that you could run into problems while using Wavelog."
|
||||
msgstr ""
|
||||
"这些设置项不是最完美的,虽然可以跑起来,但 Wavelog 在运行中可能会出现问题。"
|
||||
|
||||
#: install/index.php:453
|
||||
#: install/index.php:325
|
||||
msgid "All Checks are OK. You can continue."
|
||||
msgstr "所有检查都通过了,您可以继续。"
|
||||
|
||||
#: install/index.php:467
|
||||
#: install/index.php:339
|
||||
msgid ""
|
||||
"Configure some basic parameters for your wavelog instance. You can change "
|
||||
"them later in 'application/config/config.php'"
|
||||
@@ -178,17 +272,21 @@ msgstr ""
|
||||
"为 Wavelog 实例配置一些基本参数。您可以稍后在 \"application/config/config."
|
||||
"php \"中修改它们"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid "Directory"
|
||||
msgstr "目录"
|
||||
|
||||
#: install/index.php:469
|
||||
#: install/index.php:341
|
||||
msgid ""
|
||||
"The 'Directory' is basically your subfolder of the webroot In normal "
|
||||
"conditions the prefilled value is doing it's job. It also can be empty."
|
||||
msgstr "通常是 Web 根目录下的某个子目录,通常为空。"
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:346
|
||||
msgid "No slash before or after the directory. Just the name of the folder."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the complete URL where your Wavelog Instance will be available. If "
|
||||
@@ -200,33 +298,23 @@ msgstr ""
|
||||
"理后面,则应在此处键入新 URL(例如,用 %s 代替 %s),不要忘记包含上面的目录"
|
||||
"(如有)。"
|
||||
|
||||
#: install/index.php:476
|
||||
#: install/index.php:351
|
||||
msgid "Website URL"
|
||||
msgstr "网站 URL"
|
||||
|
||||
#: install/index.php:479
|
||||
msgid "This field can't be empty!"
|
||||
msgstr "该字段不能为空!"
|
||||
|
||||
#: install/index.php:483
|
||||
msgid "Default Gridsquare/Locator"
|
||||
msgstr "默认网格地址"
|
||||
|
||||
#: install/index.php:483
|
||||
#: install/index.php:354
|
||||
msgid ""
|
||||
"This is the default maidenhead locator which is used as falback. You can use "
|
||||
"the locator of your Home QTH."
|
||||
msgstr "默认的梅登黑德网格,可以使用基地台的 QTH。"
|
||||
"This field<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- can't be empty<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to end with a slash 'example/'<br>\n"
|
||||
"\t\t\t\t\t\t\t\t\t\t\t\t- have to start with 'http'"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:486
|
||||
msgid "Type in a valid locator"
|
||||
msgstr "输入有效的网格"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid "Optional: Global Callbook Lookup"
|
||||
msgstr "可选:全局日志查询"
|
||||
|
||||
#: install/index.php:490
|
||||
#: install/index.php:361
|
||||
msgid ""
|
||||
"This configuration is optional. The callsign lookup will be available for "
|
||||
"all users of this installation. You can choose between QRZ.com and HamQTH. "
|
||||
@@ -238,279 +326,442 @@ msgstr ""
|
||||
"联对象的信息,HamQTH 不需要额外配置信息即可使用,QRZ.com 为其需要配置登录信息"
|
||||
"(如需要获取网格地址,请购买 QRZ.com 的 XML 订阅)。"
|
||||
|
||||
#: install/index.php:499 install/index.php:542 install/index.php:574
|
||||
#: install/index.php:370 install/index.php:447 install/index.php:480
|
||||
msgid "Username"
|
||||
msgstr "用户名"
|
||||
|
||||
#: install/index.php:502 install/index.php:546 install/index.php:584
|
||||
#: install/index.php:373 install/index.php:451 install/index.php:490
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
#: install/index.php:507
|
||||
#: install/index.php:378
|
||||
msgid "Callbook Username"
|
||||
msgstr "日志簿用户名"
|
||||
|
||||
#: install/index.php:510
|
||||
#: install/index.php:381
|
||||
msgid "Callbook Password"
|
||||
msgstr "日志簿密码"
|
||||
|
||||
#: install/index.php:526
|
||||
#: install/index.php:383
|
||||
#, php-format
|
||||
msgid "Password can't contain %s or be empty"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:388 install/index.php:393
|
||||
msgid "Advanced Settings"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:396
|
||||
msgid "These settings should only be set if you know what you're doing."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:399
|
||||
msgid "Error Logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:400
|
||||
msgid ""
|
||||
"Optional: Enable Error Logging by setting the log threshold bigger then 0. "
|
||||
"Only enable this if you really need it."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:405
|
||||
msgid "0 - No logs"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:406
|
||||
msgid "1 - Error messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:407
|
||||
msgid "2 - Debug messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:408
|
||||
msgid "3 - Info messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:409
|
||||
msgid "4 - All messages"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:431
|
||||
msgid ""
|
||||
"To properly install Wavelog you already should have setup a mariadb/mysql "
|
||||
"database. Provide the parameters here."
|
||||
msgstr "要正确安装 Wavelog,请准备好 mariadb/mysql 数据库,在此输入连接信息。"
|
||||
|
||||
#: install/index.php:530
|
||||
#: install/index.php:435
|
||||
msgid "Hostname or IP"
|
||||
msgstr "主机名或 IP"
|
||||
|
||||
#: install/index.php:530
|
||||
msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
msgstr "通常是 'localhost',或加上端口 '....:[3306]',默认端口:3306"
|
||||
#: install/index.php:435
|
||||
msgid ""
|
||||
"Usually 'localhost'.<br>Optional with '[host]:[port]'. Default port: 3306."
|
||||
"<br>In a docker compose install type 'wavelog-db'."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Database Name"
|
||||
msgstr "数据库名称"
|
||||
|
||||
#: install/index.php:536
|
||||
#: install/index.php:441
|
||||
msgid "Name of the Database"
|
||||
msgstr "数据库名"
|
||||
|
||||
#: install/index.php:542
|
||||
#: install/index.php:447
|
||||
msgid "Username of the Database User which has full access to the database."
|
||||
msgstr "对该数据库有完整权限的用户名。"
|
||||
|
||||
#: install/index.php:546
|
||||
#: install/index.php:451
|
||||
msgid "Password of the Database User"
|
||||
msgstr "用户密码"
|
||||
|
||||
#: install/index.php:550
|
||||
#: install/index.php:455
|
||||
msgid "Connection Test"
|
||||
msgstr "测试连接"
|
||||
|
||||
#: install/index.php:561
|
||||
#: install/index.php:466
|
||||
msgid ""
|
||||
"Now you can create your first user in Wavelog. Fill out all fields and click "
|
||||
"continue.<br>Make sure you use a safe password."
|
||||
"continue. Make sure you use a safe password."
|
||||
msgstr ""
|
||||
"现在您可以创建第一个 Wavelog 上的用户了,请填写全部字段并点击继续。<br>请使用"
|
||||
"安全密码。"
|
||||
|
||||
#: install/index.php:570
|
||||
#: install/index.php:467
|
||||
msgid "All fields are required!"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:476
|
||||
msgid "First Name"
|
||||
msgstr "名"
|
||||
|
||||
#: install/index.php:580
|
||||
#: install/index.php:486
|
||||
msgid "Last Name"
|
||||
msgstr "姓"
|
||||
|
||||
#: install/index.php:590
|
||||
#: install/index.php:496
|
||||
msgid "Callsign"
|
||||
msgstr "呼号"
|
||||
|
||||
#: install/index.php:594
|
||||
#: install/index.php:500
|
||||
msgid "Confirm Password"
|
||||
msgstr "确认密码"
|
||||
|
||||
#: install/index.php:600
|
||||
#: install/index.php:506
|
||||
msgid "City"
|
||||
msgstr "城市"
|
||||
|
||||
#: install/index.php:604
|
||||
#: install/index.php:510
|
||||
msgid "E-Mail Address"
|
||||
msgstr "Email 地址"
|
||||
|
||||
#: install/index.php:610
|
||||
#: install/index.php:516
|
||||
msgid "Gridsquare/Locator"
|
||||
msgstr "网格地址"
|
||||
|
||||
#: install/index.php:614
|
||||
#: install/index.php:520
|
||||
msgid "Timezone"
|
||||
msgstr "时区"
|
||||
|
||||
#: install/index.php:717
|
||||
#: install/index.php:623
|
||||
msgid "DXCC"
|
||||
msgstr "DXCC"
|
||||
|
||||
#: install/index.php:719
|
||||
#: install/index.php:625
|
||||
msgctxt "No DXCC"
|
||||
msgid "- None -"
|
||||
msgstr "- 无 -"
|
||||
|
||||
#: install/index.php:720 install/index.php:726 install/index.php:750
|
||||
#: install/index.php:762 install/index.php:765 install/index.php:770
|
||||
#: install/index.php:771 install/index.php:780 install/index.php:784
|
||||
#: install/index.php:799 install/index.php:812 install/index.php:813
|
||||
#: install/index.php:817 install/index.php:838 install/index.php:845
|
||||
#: install/index.php:847 install/index.php:848 install/index.php:850
|
||||
#: install/index.php:854 install/index.php:855 install/index.php:856
|
||||
#: install/index.php:860 install/index.php:861 install/index.php:880
|
||||
#: install/index.php:888 install/index.php:894 install/index.php:901
|
||||
#: install/index.php:902 install/index.php:908 install/index.php:910
|
||||
#: install/index.php:912 install/index.php:930 install/index.php:935
|
||||
#: install/index.php:936 install/index.php:950 install/index.php:965
|
||||
#: install/index.php:966 install/index.php:970 install/index.php:981
|
||||
#: install/index.php:982 install/index.php:987 install/index.php:991
|
||||
#: install/index.php:993 install/index.php:994 install/index.php:1001
|
||||
#: install/index.php:1016 install/index.php:1018 install/index.php:1035
|
||||
#: install/index.php:1038 install/index.php:1043 install/index.php:1046
|
||||
#: install/index.php:1049 install/index.php:1059 install/index.php:1065
|
||||
#: install/index.php:1069 install/index.php:1075 install/index.php:1078
|
||||
#: install/index.php:1081 install/index.php:1086 install/index.php:1112
|
||||
#: install/index.php:1118 install/index.php:1120
|
||||
#: install/index.php:626 install/index.php:632 install/index.php:656
|
||||
#: install/index.php:668 install/index.php:671 install/index.php:676
|
||||
#: install/index.php:677 install/index.php:686 install/index.php:690
|
||||
#: install/index.php:705 install/index.php:718 install/index.php:719
|
||||
#: install/index.php:723 install/index.php:744 install/index.php:751
|
||||
#: install/index.php:753 install/index.php:754 install/index.php:756
|
||||
#: install/index.php:760 install/index.php:761 install/index.php:762
|
||||
#: install/index.php:766 install/index.php:767 install/index.php:786
|
||||
#: install/index.php:794 install/index.php:800 install/index.php:807
|
||||
#: install/index.php:808 install/index.php:814 install/index.php:816
|
||||
#: install/index.php:818 install/index.php:836 install/index.php:841
|
||||
#: install/index.php:842 install/index.php:856 install/index.php:871
|
||||
#: install/index.php:872 install/index.php:876 install/index.php:887
|
||||
#: install/index.php:888 install/index.php:893 install/index.php:897
|
||||
#: install/index.php:899 install/index.php:900 install/index.php:907
|
||||
#: install/index.php:922 install/index.php:924 install/index.php:941
|
||||
#: install/index.php:944 install/index.php:949 install/index.php:952
|
||||
#: install/index.php:955 install/index.php:965 install/index.php:971
|
||||
#: install/index.php:975 install/index.php:981 install/index.php:984
|
||||
#: install/index.php:987 install/index.php:992 install/index.php:1018
|
||||
#: install/index.php:1024 install/index.php:1026
|
||||
msgid "Deleted DXCC"
|
||||
msgstr "已选择的 DXCC"
|
||||
|
||||
#: install/index.php:1143
|
||||
#: install/index.php:1049
|
||||
msgid "Checklist"
|
||||
msgstr "检查单"
|
||||
|
||||
#: install/index.php:1144
|
||||
#: install/index.php:1054
|
||||
msgid "Pre-Checks"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1063
|
||||
msgid "Configuration"
|
||||
msgstr "配置"
|
||||
|
||||
#: install/index.php:1146
|
||||
#: install/index.php:1072
|
||||
msgid "Database"
|
||||
msgstr "数据库"
|
||||
|
||||
#: install/index.php:1148
|
||||
#: install/index.php:1081
|
||||
msgid "First User"
|
||||
msgstr "初始用户"
|
||||
|
||||
#: install/index.php:1155
|
||||
#: install/index.php:1091
|
||||
msgid "Nearly done!"
|
||||
msgstr "马上完成!"
|
||||
|
||||
#: install/index.php:1156
|
||||
#: install/index.php:1093
|
||||
msgid "You prepared all neccessary steps."
|
||||
msgstr "您已准备好全部步骤。"
|
||||
|
||||
#: install/index.php:1157
|
||||
#: install/index.php:1094
|
||||
msgid "We now can install Wavelog. This process can take a few minutes."
|
||||
msgstr "现在可以安装 Wavelog 了,需要几分钟的时间。"
|
||||
|
||||
#: install/index.php:1158
|
||||
msgid "Install Now"
|
||||
msgstr "现在安装"
|
||||
#: install/index.php:1100
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1167
|
||||
#: install/index.php:1105
|
||||
msgid "Installer Reset"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1108
|
||||
msgid "Do you really want to reset all data and start from scratch?"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1111
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1112
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1122
|
||||
msgid "Back"
|
||||
msgstr "后退"
|
||||
|
||||
#: install/index.php:1168
|
||||
#: install/index.php:1123
|
||||
msgid "Continue"
|
||||
msgstr "继续"
|
||||
|
||||
#: install/index.php:1193
|
||||
msgid "Error: All fields are required."
|
||||
msgstr "错误:请填写全部表单。"
|
||||
#: install/index.php:1201
|
||||
msgid ""
|
||||
"You can't continue. Solve the red marked issues, restart the webserver and "
|
||||
"reload this page."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1199
|
||||
#: install/index.php:1328
|
||||
msgid "Password can't contain ' / \\ < >"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1495
|
||||
msgid "Error: At least Hostname/IP, Database Name and Username are required."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1505
|
||||
msgid "Connecting..."
|
||||
msgstr "连接中…"
|
||||
|
||||
#: install/index.php:1224
|
||||
msgid "Connection was successful and your database should be compatible"
|
||||
msgstr "连接成功,数据库满足要求"
|
||||
#: install/index.php:1529
|
||||
msgid "Connection was successful and your database should be compatible."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1230
|
||||
#: install/index.php:1533
|
||||
msgid ""
|
||||
"Connection was successful but your database seems too old for Wavelog. You "
|
||||
"can try to continue but you could run into issues."
|
||||
msgstr "连接成功,但数据库版本有一些老,您可以继续安装但是可能会出现使用问题。"
|
||||
|
||||
#: install/index.php:1384
|
||||
#: install/index.php:1533
|
||||
#, php-format
|
||||
msgid "The min. version for MySQL is %s, for MariaDB it's %s."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1645
|
||||
msgid "At least one field is empty."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1675
|
||||
msgid ""
|
||||
"The locator seems to be not in the correct format. Should look like AA11AA "
|
||||
"(6-char grid locator)."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1689
|
||||
msgid ""
|
||||
"The e-mail adress does not look correct. Make sure it's a valid e-mail "
|
||||
"address"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1716
|
||||
msgid "Password should be at least 8 characters long"
|
||||
msgstr "密码需要至少 8 位长"
|
||||
|
||||
#: install/index.php:1400
|
||||
#: install/index.php:1725
|
||||
msgid "Passwords do not match"
|
||||
msgstr "密码不匹配"
|
||||
|
||||
#: install/index.php:1418
|
||||
msgid "The E-Mail Address is not valid"
|
||||
msgstr "Email 地址无效"
|
||||
#: install/index.php:1772
|
||||
msgid "Install Now"
|
||||
msgstr "现在安装"
|
||||
|
||||
#: install/index.php:1442
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
"you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
"here</a>!"
|
||||
#: install/index.php:1776
|
||||
msgid "Install not possible. Checklist incomplete."
|
||||
msgstr ""
|
||||
"网格地址无效,请使用 6 位地址如 HA44AA,如果不清楚请在 <a href='%s' "
|
||||
"target='_blank'>这里</a> 查看!"
|
||||
|
||||
#: install/index.php:1549
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
"><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
"permissions afterwards.</i>"
|
||||
#: install/run.php:10
|
||||
msgid "Installation"
|
||||
msgstr ""
|
||||
"请确认 %s 文件夹可写。 <strong>举例</strong>:<br /><br /><code>chmod -R 777 "
|
||||
"%s</code><br /><br /><i>⬅️请测试后及时回滚权限。</i>"
|
||||
|
||||
#: install/index.php:1564
|
||||
msgid "Bulgarian"
|
||||
msgstr "保加利亚语"
|
||||
#: install/run.php:12
|
||||
msgid "Please wait..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1565
|
||||
msgid "Chinese (Simplified)"
|
||||
msgstr "中文(简体)"
|
||||
#: install/run.php:15
|
||||
msgid "Copy config.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1566
|
||||
msgid "Czech"
|
||||
msgstr "捷克语"
|
||||
#: install/run.php:18
|
||||
msgid "Copy database.php to application/config/"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1567
|
||||
msgid "Dutch"
|
||||
msgstr "荷兰语"
|
||||
#: install/run.php:21
|
||||
msgid "Creating database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1568
|
||||
msgid "English"
|
||||
msgstr "英语"
|
||||
#: install/run.php:24
|
||||
msgid "Running database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1569
|
||||
msgid "Finnish"
|
||||
msgstr "芬兰语"
|
||||
#: install/run.php:27
|
||||
msgid "Updating DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1570
|
||||
msgid "French"
|
||||
msgstr "法语"
|
||||
#: install/run.php:35
|
||||
msgid "Lock the installer"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1571
|
||||
msgid "German"
|
||||
msgstr "德语"
|
||||
#: install/run.php:39
|
||||
#, php-format
|
||||
msgid "All install steps went through. Redirect to user login in %s seconds..."
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1572
|
||||
msgid "Greek"
|
||||
msgstr "希腊语"
|
||||
#: install/run.php:42
|
||||
msgid "Done. Go to the user login ->"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1573
|
||||
msgid "Italian"
|
||||
msgstr "意大利语"
|
||||
#: install/run.php:46 install/run.php:125
|
||||
msgid "Show detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1574
|
||||
msgid "Polish"
|
||||
msgstr "波兰语"
|
||||
#: install/run.php:127
|
||||
msgid "Hide detailled debug log"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1575
|
||||
msgid "Portuguese"
|
||||
msgstr "葡萄牙语"
|
||||
#: install/run.php:182
|
||||
msgid "Could not create application/config/config.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1576
|
||||
msgid "Russian"
|
||||
msgstr "俄语"
|
||||
#: install/run.php:217
|
||||
msgid "Could not create application/config/database.php"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1577
|
||||
msgid "Spanish"
|
||||
msgstr "西班牙语"
|
||||
#: install/run.php:251
|
||||
msgid "Could not create database tables"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1578
|
||||
msgid "Swedish"
|
||||
msgstr "瑞典语"
|
||||
#: install/run.php:281
|
||||
msgid "Could not run database migrations"
|
||||
msgstr ""
|
||||
|
||||
#: install/index.php:1579
|
||||
msgid "Turkish"
|
||||
msgstr "土耳其语"
|
||||
#: install/run.php:309
|
||||
msgid "Could not update DXCC data"
|
||||
msgstr ""
|
||||
|
||||
#: install/run.php:341
|
||||
msgid "Could not create install/.lock file"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "On"
|
||||
#~ msgstr "开启"
|
||||
|
||||
#~ msgid "Off"
|
||||
#~ msgstr "关闭"
|
||||
|
||||
#~ msgid "MySQL / MariaDB"
|
||||
#~ msgstr "MySQL / MariaDB"
|
||||
|
||||
#~ msgid "Min. MySQL Version:"
|
||||
#~ msgstr "MySQL 最低版本:"
|
||||
|
||||
#~ msgid "or"
|
||||
#~ msgstr "或者"
|
||||
|
||||
#~ msgid "Min. MariaDB Version:"
|
||||
#~ msgstr "MariaDB 最低版本:"
|
||||
|
||||
#~ msgid "You can test your MySQL/MariaDB Version in Step 4"
|
||||
#~ msgstr "您可在第 4 步中测试 MySQL/MariaDB 的版本"
|
||||
|
||||
#~ msgid "This field can't be empty!"
|
||||
#~ msgstr "该字段不能为空!"
|
||||
|
||||
#~ msgid "Default Gridsquare/Locator"
|
||||
#~ msgstr "默认网格地址"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "This is the default maidenhead locator which is used as falback. You can "
|
||||
#~ "use the locator of your Home QTH."
|
||||
#~ msgstr "默认的梅登黑德网格,可以使用基地台的 QTH。"
|
||||
|
||||
#~ msgid "Type in a valid locator"
|
||||
#~ msgstr "输入有效的网格"
|
||||
|
||||
#~ msgid "Usually 'localhost'. Optional with '...:[port]'. Default Port: 3306"
|
||||
#~ msgstr "通常是 'localhost',或加上端口 '....:[3306]',默认端口:3306"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Now you can create your first user in Wavelog. Fill out all fields and "
|
||||
#~ "click continue.<br>Make sure you use a safe password."
|
||||
#~ msgstr ""
|
||||
#~ "现在您可以创建第一个 Wavelog 上的用户了,请填写全部字段并点击继续。<br>请"
|
||||
#~ "使用安全密码。"
|
||||
|
||||
#~ msgid "Error: All fields are required."
|
||||
#~ msgstr "错误:请填写全部表单。"
|
||||
|
||||
#~ msgid "Connection was successful and your database should be compatible"
|
||||
#~ msgstr "连接成功,数据库满足要求"
|
||||
|
||||
#~ msgid "The E-Mail Address is not valid"
|
||||
#~ msgstr "Email 地址无效"
|
||||
|
||||
#, php-format
|
||||
#~ msgid ""
|
||||
#~ "The grid locator is not valid. Use a 6-character locator, e.g. HA44AA. If "
|
||||
#~ "you don't know your grid square then <a href='%s' target='_blank'>click "
|
||||
#~ "here</a>!"
|
||||
#~ msgstr ""
|
||||
#~ "网格地址无效,请使用 6 位地址如 HA44AA,如果不清楚请在 <a href='%s' "
|
||||
#~ "target='_blank'>这里</a> 查看!"
|
||||
|
||||
#, php-format
|
||||
#~ msgid ""
|
||||
#~ "Please make the %s folder writable. <strong>Example</strong>:<br /><br /"
|
||||
#~ "><code>chmod -R 777 %s</code><br /><br /><i>Don't forget to restore the "
|
||||
#~ "permissions afterwards.</i>"
|
||||
#~ msgstr ""
|
||||
#~ "请确认 %s 文件夹可写。 <strong>举例</strong>:<br /><br /><code>chmod -R "
|
||||
#~ "777 %s</code><br /><br /><i>⬅️请测试后及时回滚权限。</i>"
|
||||
|
||||
41
install/includes/install_config/install_config.php
Normal file
41
install/includes/install_config/install_config.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* PRECONFIGURATION
|
||||
*/
|
||||
$http_scheme = is_https() ? "https" : "http";
|
||||
|
||||
// Config Paths
|
||||
$db_config_path = '../application/config/';
|
||||
if (isset($_ENV['CI_ENV'])) {
|
||||
$db_config_path = '../application/config/' . $_ENV['CI_ENV'] . '/';
|
||||
}
|
||||
$db_file_path = $db_config_path . "database.php";
|
||||
|
||||
// Logfile Path
|
||||
global $logfile;
|
||||
$logfile = '../application/logs/installer_debug.log';
|
||||
|
||||
// Wanted Pre-Check Parameters
|
||||
// PHP
|
||||
$min_php_version = '7.4.0'; // below this version is no install possible
|
||||
$min_php_version_warning = '8.0.0'; // below this version some features may not available (e.g. Cronmanager)
|
||||
$max_execution_time = 600; // Seconds
|
||||
$upload_max_filesize = 8; // Megabyte
|
||||
$memory_limit = 256; // Megabyte
|
||||
$post_max_size = 8; // Megabyte
|
||||
$req_allow_url_fopen = '1'; // 1 = on
|
||||
|
||||
// Array of PHP modules to check
|
||||
global $required_php_modules;
|
||||
$required_php_modules = [
|
||||
'php-curl' => ['condition' => isExtensionInstalled('curl')],
|
||||
'php-mysql' => ['condition' => isExtensionInstalled('mysqli')],
|
||||
'php-mbstring' => ['condition' => isExtensionInstalled('mbstring')],
|
||||
'php-xml' => ['condition' => isExtensionInstalled('xml')],
|
||||
'php-zip' => ['condition' => isExtensionInstalled('zip')],
|
||||
];
|
||||
|
||||
// MariaDB / MySQL
|
||||
$mariadb_version = 10.1;
|
||||
$mysql_version = 5.7;
|
||||
135
install/includes/install_config/install_lib.php
Normal file
135
install/includes/install_config/install_lib.php
Normal file
@@ -0,0 +1,135 @@
|
||||
<?php
|
||||
|
||||
// Function to check if a PHP extension is installed
|
||||
function isExtensionInstalled($extensionName) {
|
||||
return in_array($extensionName, get_loaded_extensions());
|
||||
}
|
||||
|
||||
// function to switch the language based on the user selection
|
||||
function switch_lang($new_language) {
|
||||
global $gt_conf;
|
||||
setcookie($gt_conf['lang_cookie'], $new_language);
|
||||
}
|
||||
|
||||
// check if page is called with https or not
|
||||
function is_https() {
|
||||
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') {
|
||||
return true;
|
||||
}
|
||||
if (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') {
|
||||
return true;
|
||||
}
|
||||
if (!empty($_SERVER['HTTP_X_FORWARDED_SSL']) && $_SERVER['HTTP_X_FORWARDED_SSL'] === 'on') {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// Folder permission checks
|
||||
function is_really_writable($path) {
|
||||
|
||||
// Check if the folder exists
|
||||
if (!file_exists($path)) {
|
||||
log_message('error', 'is_really_writable(): File "'.$path.'" does not exist.');
|
||||
return false;
|
||||
}
|
||||
|
||||
// Check if the folder is writable
|
||||
try {
|
||||
if (is_writable($path)) {
|
||||
// Check if the subdirectories are writable (recursive check)
|
||||
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path));
|
||||
foreach ($iterator as $item) {
|
||||
if ($item->isDir() && basename($item->getPathName()) != '..') {
|
||||
if (!is_writable($item->getRealPath())) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
log_message('error', 'is_really_writable(): Something went wrong while testing write permissions.');
|
||||
return false;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function verify_log() {
|
||||
global $logfile;
|
||||
|
||||
if (!file_exists($logfile)) {
|
||||
if (touch($logfile)) {
|
||||
if(is_writable($logfile)) {
|
||||
$log_header = "Wavelog Installer Debug Log\n-------\nLog Location: $logfile\n\n";
|
||||
file_put_contents($logfile, $log_header, FILE_APPEND);
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
return is_writable($logfile);
|
||||
}
|
||||
}
|
||||
|
||||
function country2flag($code) {
|
||||
$code = strtoupper($code);
|
||||
|
||||
$offset = 0x1F1E6;
|
||||
$code_p1 = $offset + ord($code[0]) - ord('A');
|
||||
$code_p2 = $offset + ord($code[1]) - ord('A');
|
||||
|
||||
$flag = mb_chr($code_p1, 'UTF-8') . mb_chr($code_p2, 'UTF-8');
|
||||
return $flag;
|
||||
}
|
||||
|
||||
// Function to read the debug logfile
|
||||
function read_logfile() {
|
||||
if (verify_log()) {
|
||||
global $logfile;
|
||||
$file_content = file_get_contents($logfile);
|
||||
echo $file_content;
|
||||
} else {
|
||||
echo "Log file is not available.";
|
||||
}
|
||||
}
|
||||
|
||||
// Function to log messages in the installer logfile
|
||||
function log_message($level, $message) {
|
||||
if (verify_log()) {
|
||||
global $logfile;
|
||||
$level = strtoupper($level);
|
||||
$timestamp = date("Y-m-d H:i:s");
|
||||
$logMessage = $level . " - " . $timestamp . " --> " . $message . PHP_EOL;
|
||||
file_put_contents($logfile, $logMessage, FILE_APPEND);
|
||||
} else {
|
||||
echo "Log file is not available or not writable.";
|
||||
}
|
||||
}
|
||||
|
||||
// Custom error handler
|
||||
function customError($errno, $errstr, $errfile, $errline) {
|
||||
$message = "[$errno] $errstr in $errfile on line $errline";
|
||||
log_message('error', $message);
|
||||
}
|
||||
|
||||
// Detect webserver and version
|
||||
function detect_webserver() {
|
||||
return $_SERVER['SERVER_SOFTWARE'] ?? __("not detected");
|
||||
}
|
||||
|
||||
// Detect nginx setting for PHP file processing
|
||||
function detect_nginx_php_setting($http_scheme) {
|
||||
$ch = curl_init($http_scheme.'://'.$_SERVER['HTTP_HOST'].'/install/nginx.php/test');
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($ch, CURLOPT_HEADER, 0);
|
||||
$data = curl_exec($ch);
|
||||
$code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
||||
curl_close($ch);
|
||||
return $code;
|
||||
}
|
||||
66
install/includes/interface_assets/footer.php
Normal file
66
install/includes/interface_assets/footer.php
Normal file
@@ -0,0 +1,66 @@
|
||||
<footer>
|
||||
<script>
|
||||
// restore data from the localstorage if available
|
||||
$('#install_form input').each(function() {
|
||||
var inputId = $(this).attr('id');
|
||||
if (localStorage.getItem(inputId)) {
|
||||
$(this).val(localStorage.getItem(inputId));
|
||||
}
|
||||
});
|
||||
$('#install_form select').each(function() {
|
||||
var inputId = $(this).attr('id');
|
||||
if (localStorage.getItem(inputId)) {
|
||||
$(this).val(localStorage.getItem(inputId));
|
||||
}
|
||||
});
|
||||
|
||||
// save data in the localstorage
|
||||
$('#install_form input').on('input', function() {
|
||||
var inputId = $(this).attr('id');
|
||||
var inputValue = $(this).val();
|
||||
localStorage.setItem(inputId, inputValue);
|
||||
});
|
||||
$('#install_form select').on('input', function() {
|
||||
var inputId = $(this).attr('id');
|
||||
var inputValue = $(this).val();
|
||||
localStorage.setItem(inputId, inputValue);
|
||||
});
|
||||
|
||||
// delete all data in localStorage and reload page
|
||||
$('#resetInstaller').click(function() {
|
||||
localStorage.clear();
|
||||
location.reload();
|
||||
});
|
||||
</script>
|
||||
<script type="module" defer>
|
||||
import {
|
||||
polyfillCountryFlagEmojis
|
||||
} from "../assets/js/country-flag-emoji-polyfill.js";
|
||||
polyfillCountryFlagEmojis();
|
||||
</script>
|
||||
<?php
|
||||
/**
|
||||
* Hidden field to be able to translate the language names
|
||||
* Add english Language Name here if you add new languages to application/config/gettext.php
|
||||
* This helps the po scanner to make them translatable
|
||||
*/
|
||||
?>
|
||||
<div style="display: none">
|
||||
<?= __("Bulgarian"); ?>
|
||||
<?= __("Chinese (Simplified)"); ?>
|
||||
<?= __("Czech"); ?>
|
||||
<?= __("Dutch"); ?>
|
||||
<?= __("English"); ?>
|
||||
<?= __("Finnish"); ?>
|
||||
<?= __("French"); ?>
|
||||
<?= __("German"); ?>
|
||||
<?= __("Greek"); ?>
|
||||
<?= __("Italian"); ?>
|
||||
<?= __("Portuguese"); ?>
|
||||
<?= __("Polish"); ?>
|
||||
<?= __("Russian"); ?>
|
||||
<?= __("Spanish"); ?>
|
||||
<?= __("Swedish"); ?>
|
||||
<?= __("Turkish"); ?>
|
||||
</div>
|
||||
</footer>
|
||||
105
install/includes/interface_assets/header.php
Normal file
105
install/includes/interface_assets/header.php
Normal file
@@ -0,0 +1,105 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Includes needed stuff
|
||||
*/
|
||||
|
||||
require_once('includes/install_config/install_lib.php');
|
||||
require_once('includes/install_config/install_config.php');
|
||||
|
||||
require_once('includes/gettext/gettext.php');
|
||||
require_once('includes/gettext/gettext_conf.php');
|
||||
|
||||
require_once('includes/core/core_class.php');
|
||||
require_once('includes/core/database_class.php');
|
||||
|
||||
$core = new Core();
|
||||
$database = new Database();
|
||||
|
||||
include('includes/interface_assets/triggers.php');
|
||||
|
||||
// Configure PHP to log errors
|
||||
set_error_handler("customError");
|
||||
ini_set('error_reporting', E_ALL);
|
||||
|
||||
/**
|
||||
* Gettext Implementation
|
||||
*/
|
||||
|
||||
/**
|
||||
* save all available languages
|
||||
* @var array $languages
|
||||
*/
|
||||
$languages = $gt_conf['languages'];
|
||||
|
||||
// if we come with a get call we can switch the language cookie
|
||||
if (isset($_GET['lang'])) {
|
||||
switch_lang($_GET['lang']);
|
||||
log_message('info', 'Manually switched language to "' . find_by('gettext', $_GET['lang'])['name_en'] . '"');
|
||||
header("Location: " . strtok($_SERVER['REQUEST_URI'], '?'));
|
||||
exit();
|
||||
}
|
||||
|
||||
// get the browsers language if no cookie exists and set one
|
||||
if (!isset($_COOKIE[$gt_conf['lang_cookie']])) {
|
||||
|
||||
log_message('info', 'Called Installer index.php');
|
||||
log_message('info', 'With URL: ' . $http_scheme . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . '/');
|
||||
log_message('info', 'From IP: ' . $_SERVER['REMOTE_ADDR']);
|
||||
|
||||
$browser_language = _get_client_language();
|
||||
setcookie($gt_conf['lang_cookie'], $browser_language['gettext']);
|
||||
log_message('info', 'Set language cookie to "' . $browser_language['name_en'] . '"');
|
||||
header("Location: " . $_SERVER['REQUEST_URI']);
|
||||
exit();
|
||||
}
|
||||
// get the language from the cookie
|
||||
$language = $_COOKIE[$gt_conf['lang_cookie']];
|
||||
|
||||
// and set the locale for gettext
|
||||
T_setlocale(LC_MESSAGES, $language);
|
||||
|
||||
$websiteurl = $http_scheme . '://' . str_replace("index.php", "", $_SERVER['HTTP_HOST'] . str_replace("/install/", "", $_SERVER['REQUEST_URI'])) . '/';
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html lang="<?= $language; ?>">
|
||||
|
||||
<script>
|
||||
function log_message(level, message) {
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php',
|
||||
data: {
|
||||
write_to_logfile: 1,
|
||||
log_level: level,
|
||||
log_message: message
|
||||
},
|
||||
success: function(response) {
|
||||
resolve();
|
||||
},
|
||||
error: function(error) {
|
||||
console.error("log_message (js) failed: ", error);
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
|
||||
<title><?= __("Install | Wavelog"); ?></title>
|
||||
<link rel="icon" type="image/x-icon" href="../favicon.ico">
|
||||
|
||||
<link rel="stylesheet" href="../assets/css/darkly/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="assets/css/installer.css">
|
||||
<link rel="stylesheet" href="../assets/fontawesome/css/all.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/ldbtn.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/loading.min.css">
|
||||
|
||||
<script type="text/javascript" src="../assets/js/bootstrap.bundle.min.js"></script>
|
||||
<script type="text/javascript" src="../assets/js/jquery-3.3.1.min.js"></script>
|
||||
</head>
|
||||
110
install/includes/interface_assets/triggers.php
Normal file
110
install/includes/interface_assets/triggers.php
Normal file
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Triggers for Ajax Calls
|
||||
*/
|
||||
|
||||
// Database Check
|
||||
if ($_POST['database_check'] ?? false == true) {
|
||||
|
||||
$result = $database->database_check($_POST);
|
||||
echo $result;
|
||||
exit;
|
||||
|
||||
}
|
||||
|
||||
if ($_POST['read_logfile'] ?? false == true) {
|
||||
|
||||
$result = read_logfile();
|
||||
echo $result;
|
||||
exit;
|
||||
|
||||
}
|
||||
|
||||
if ($_POST['write_to_logfile'] ?? false == true) {
|
||||
|
||||
$level = $_POST['log_level'];
|
||||
$message = $_POST['log_message'];
|
||||
|
||||
if(log_message($level, $message)) {
|
||||
$result = 'success';
|
||||
} else {
|
||||
$result = 'error';
|
||||
}
|
||||
echo $result;
|
||||
exit;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Install Triggers
|
||||
*
|
||||
*/
|
||||
|
||||
if ($_POST['check_lockfile'] ?? false == true) {
|
||||
|
||||
$lockfile = '../install/.lock';
|
||||
|
||||
if (file_exists($lockfile)) {
|
||||
$result = 'installer_locked';
|
||||
} else {
|
||||
$result = 'no_lockfile';
|
||||
}
|
||||
echo $result;
|
||||
exit;
|
||||
}
|
||||
|
||||
// config_file()
|
||||
if ($_POST['run_config_file'] ?? false == true) {
|
||||
sleep(1);
|
||||
$data = $_POST['data'];
|
||||
if ($core->validate_post($data)) {
|
||||
if($core->write_configfile($data)) {
|
||||
$result = 'success';
|
||||
} else {
|
||||
$result = 'error';
|
||||
}
|
||||
} else {
|
||||
$result = 'error';
|
||||
}
|
||||
echo $result;
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($_POST['run_database_file'] ?? false == true) {
|
||||
sleep(1);
|
||||
$data = $_POST['data'];
|
||||
if ($core->validate_post($data)) {
|
||||
if($core->write_config($data)) {
|
||||
$result = 'success';
|
||||
} else {
|
||||
$result = 'error';
|
||||
}
|
||||
} else {
|
||||
$result = 'error';
|
||||
}
|
||||
echo $result;
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($_POST['run_database_tables'] ?? false == true) {
|
||||
$data = $_POST['data'];
|
||||
if ($core->validate_post($data)) {
|
||||
$result = $database->create_tables($data);
|
||||
} else {
|
||||
$result = 'error';
|
||||
}
|
||||
echo $result ? 'success' : 'error';
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($_POST['run_installer_lock'] ?? false == true) {
|
||||
exec('touch .lock', $output, $return_var);
|
||||
if ($return_var === 0 && file_exists('.lock')) {
|
||||
echo 'success';
|
||||
} else {
|
||||
echo 'error';
|
||||
}
|
||||
exit;
|
||||
}
|
||||
1575
install/index.php
1575
install/index.php
File diff suppressed because it is too large
Load Diff
9
install/nginx.php
Normal file
9
install/nginx.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/*
|
||||
This file is just for testing purposes to detect the correct
|
||||
PHP settings for nginx web servers with php-fpm
|
||||
Please ignore.
|
||||
*/
|
||||
|
||||
echo "success";
|
||||
?>
|
||||
377
install/run.php
Normal file
377
install/run.php
Normal file
@@ -0,0 +1,377 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<?php include 'includes/interface_assets/header.php'; ?>
|
||||
|
||||
<body>
|
||||
<div class="container" style="max-width: 1200px; margin-top: 8rem; ">
|
||||
<div class="card mt-4" style="min-height: 750px; margin: 0 auto;">
|
||||
<div class="card-body text-center">
|
||||
<h3 style="margin-top: 150px;"><?= __("Installation"); ?></h3>
|
||||
|
||||
<p style="margin-bottom: 60px;"><?= __("Please wait..."); ?></p>
|
||||
|
||||
<div class="mb-3" id="config_file" style="opacity: 50%;">
|
||||
<i id="config_file_spinner" class="ld-ext-right"><?= __("Copy config.php to application/config/") ?><div class="ld ld-ring ld-spin"></div></i><i id="config_file_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
|
||||
</div>
|
||||
<div class="mb-3" id="database_file" style="opacity: 50%;">
|
||||
<i id="database_file_spinner" class="ld-ext-right"><?= __("Copy database.php to application/config/") ?><div class="ld ld-ring ld-spin"></div></i><i id="database_file_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
|
||||
</div>
|
||||
<div class="mb-3" id="database_tables" style="opacity: 50%;">
|
||||
<i id="database_tables_spinner" class="ld-ext-right"><?= __("Creating database tables") ?><div class="ld ld-ring ld-spin"></div></i><i id="database_tables_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
|
||||
</div>
|
||||
<div class="mb-3" id="database_migrations" style="opacity: 50%;">
|
||||
<i id="database_migrations_spinner" class="ld-ext-right"><?= __("Running database migrations") ?><div class="ld ld-ring ld-spin"></div></i><i id="database_migrations_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
|
||||
</div>
|
||||
<div class="mb-3" id="update_dxcc" style="opacity: 50%;">
|
||||
<i id="update_dxcc_spinner" class="ld-ext-right"><?= __("Updating DXCC data") ?><div class="ld ld-ring ld-spin"></div></i><i id="update_dxcc_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
// we can easily add more steps here if necessary
|
||||
?>
|
||||
|
||||
<div class="mb-3" id="installer_lock" style="opacity: 50%;">
|
||||
<i id="installer_lock_spinner" class="ld-ext-right"><?= __("Lock the installer") ?><div class="ld ld-ring ld-spin"></div></i><i id="installer_lock_check" class="ms-2 fas fa-check-circle" style="display: none;"></i>
|
||||
</div>
|
||||
|
||||
<div class="mb-3" id="success_message" style="display: none;">
|
||||
<p><?= sprintf(__("All install steps went through. Redirect to user login in %s seconds..."), "<span id='countdown'>4</span>"); ?></p>
|
||||
</div>
|
||||
<div class="mb-3" id="success_button" style="display: none;">
|
||||
<a class="btn btn-primary" href="<?php echo $_POST['websiteurl'] ?? $websiteurl; ?>index.php/user/login/1"><?= __("Done. Go to the user login ->"); ?></a>
|
||||
</div>
|
||||
<div id="error_message"></div>
|
||||
<div class="container mt-5">
|
||||
<button id="toggleLogButton" class="btn btn-sm btn-secondary mb-3"><?= __("Show detailled debug log"); ?></button>
|
||||
<div id="logContainer">
|
||||
<pre>
|
||||
<code id="debuglog">
|
||||
<!-- Log Content -->
|
||||
</code>
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
<script>
|
||||
let _POST = <?php echo json_encode($_POST); ?>;
|
||||
|
||||
$(document).ready(async function() {
|
||||
init_read_log();
|
||||
try {
|
||||
await check_lockfile();
|
||||
|
||||
await config_file();
|
||||
await database_file();
|
||||
await database_tables();
|
||||
await database_migrations();
|
||||
await update_dxcc();
|
||||
await installer_lock();
|
||||
|
||||
await log_message('info', 'Finish. Installer went through successfully.');
|
||||
|
||||
if ($('#logContainer').css('display') == 'none') {
|
||||
// after all install steps went through we can show a success message and redirect to the user/login
|
||||
$("#success_message").show();
|
||||
|
||||
// Initialize the countdown
|
||||
var countdown = 4;
|
||||
var countdownInterval = setInterval(function() {
|
||||
countdown--;
|
||||
$("#countdown").text(countdown);
|
||||
if (countdown <= 0) {
|
||||
clearInterval(countdownInterval);
|
||||
window.location.href = _POST.websiteurl + "index.php/user/login/1";
|
||||
}
|
||||
}, 1000);
|
||||
} else {
|
||||
// after all install steps went through we can show the redirect button
|
||||
$("#success_button").show();
|
||||
}
|
||||
} catch (error) {
|
||||
var errormsg = '';
|
||||
if (typeof error === 'object') {
|
||||
errormsg = error.statusText;
|
||||
} else {
|
||||
errormsg = error;
|
||||
}
|
||||
$("#error_message").text("Installation failed: " + errormsg).show();
|
||||
}
|
||||
});
|
||||
|
||||
function init_read_log() {
|
||||
setInterval(function() {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php',
|
||||
data: {
|
||||
read_logfile: 1
|
||||
},
|
||||
success: function(response) {
|
||||
$("#debuglog").text(response);
|
||||
}
|
||||
});
|
||||
}, 500);
|
||||
}
|
||||
|
||||
$('#toggleLogButton').on('click', function() {
|
||||
var logContainer = $('#logContainer');
|
||||
logContainer.toggle();
|
||||
if (logContainer.css('display') == 'none') {
|
||||
$('#toggleLogButton').text("<?= __("Show detailled debug log"); ?>");
|
||||
} else {
|
||||
$('#toggleLogButton').text("<?= __("Hide detailled debug log"); ?>");
|
||||
}
|
||||
});
|
||||
|
||||
// if a user goes back to the installer we need to redirect him
|
||||
async function check_lockfile() {
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php',
|
||||
data: {
|
||||
check_lockfile: 1
|
||||
},
|
||||
success: async function(response) {
|
||||
if (response != 'installer_locked') {
|
||||
resolve();
|
||||
} else {
|
||||
await log_message('error', 'Attention: Installer is locked. Redirect to user/login.');
|
||||
reject(response);
|
||||
window.location.href = "<?php echo str_replace('run.php', '', $websiteurl); ?>" + "index.php/user/login";
|
||||
}
|
||||
},
|
||||
error: async function(error) {
|
||||
await log_message('error', "Install Lock Check went wrong...");
|
||||
reject(error);
|
||||
window.location.href = "<?php echo str_replace('run.php', '', $websiteurl); ?>" + "index.php/user/login";
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
async function config_file() {
|
||||
|
||||
var field = '#config_file';
|
||||
|
||||
running(field, true);
|
||||
await log_message('debug', 'Start writing config.php');
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php',
|
||||
data: {
|
||||
data: _POST,
|
||||
run_config_file: 1
|
||||
},
|
||||
success: async function(response) {
|
||||
if (response == 'success') {
|
||||
running(field, false);
|
||||
await log_message('debug', 'File: config.php successfully written');
|
||||
resolve();
|
||||
} else {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'File: Could not write file. Check Permissions.');
|
||||
reject("<?= __("Could not create application/config/config.php"); ?>");
|
||||
}
|
||||
},
|
||||
error: async function(error) {
|
||||
await log_message('error', 'File: Could not write file. Ajax failed.');
|
||||
running(field, false, true);
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
async function database_file() {
|
||||
|
||||
var field = '#database_file';
|
||||
|
||||
running(field, true);
|
||||
await log_message('debug', 'Start writing database.php');
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php',
|
||||
data: {
|
||||
data: _POST,
|
||||
run_database_file: 1
|
||||
},
|
||||
success: async function(response) {
|
||||
if (response == 'success') {
|
||||
running(field, false);
|
||||
await log_message('debug', 'File: database.php successfully written');
|
||||
resolve();
|
||||
} else {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'File: Could not write file. Check Permissions.');
|
||||
reject("<?= __("Could not create application/config/database.php"); ?>");
|
||||
}
|
||||
},
|
||||
error: async function(error) {
|
||||
await log_message('error', 'File: Could not write file. Ajax failed.');
|
||||
running(field, false, true);
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
async function database_tables() {
|
||||
var field = '#database_tables';
|
||||
|
||||
running(field, true);
|
||||
await log_message('debug', 'Start creating database structure with assets/install.sql');
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php',
|
||||
data: {
|
||||
data: _POST,
|
||||
run_database_tables: 1
|
||||
},
|
||||
success: async function(response) {
|
||||
if (response == 'success') {
|
||||
await log_message('debug', 'Tables successfully created');
|
||||
running(field, false);
|
||||
resolve();
|
||||
} else {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Creating database tables from assets/install.sql failed. Response: ' + response);
|
||||
reject("<?= __("Could not create database tables"); ?>");
|
||||
}
|
||||
},
|
||||
error: async function(error) {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Creating database tables failed. Ajax crashed.');
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
async function database_migrations() {
|
||||
var field = '#database_migrations';
|
||||
|
||||
running(field, true);
|
||||
await log_message('debug', 'Start migrating database to the newest version.');
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
url: "<?php echo $_POST['websiteurl'] ?? $websiteurl; ?>" + "index.php/migrate",
|
||||
dataType: 'json',
|
||||
success: async function(response) {
|
||||
if (response.status == 'success') {
|
||||
running(field, false);
|
||||
await log_message('debug', 'Database successfully migrated. Latest Version: ' + response.version);
|
||||
resolve();
|
||||
} else {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Could not migrate database. Response: ' + response.status);
|
||||
reject("<?= __("Could not run database migrations"); ?>");
|
||||
}
|
||||
},
|
||||
error: async function(error) {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Could not migrate database. Ajax crashed.');
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
async function update_dxcc() {
|
||||
var field = '#update_dxcc';
|
||||
await log_message('debug', 'Start updating DXCC database. This can take a moment or two... Please wait');
|
||||
running(field, true);
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
url: "<?php echo $_POST['websiteurl'] ?? $websiteurl; ?>" + "index.php/update/dxcc",
|
||||
success: async function(response) {
|
||||
if (response == 'success') {
|
||||
running(field, false);
|
||||
await log_message('debug', 'Successfully update DXCC database');
|
||||
resolve();
|
||||
} else {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Could not update DXCC data.');
|
||||
reject("<?= __("Could not update DXCC data"); ?>");
|
||||
}
|
||||
},
|
||||
error: async function(error) {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Could not update DXCC data. Ajax crashed.');
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
async function installer_lock() {
|
||||
var field = '#installer_lock';
|
||||
await log_message('debug', 'Try to create .lock file for the installer');
|
||||
|
||||
running(field, true);
|
||||
return new Promise((resolve, reject) => {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: 'ajax.php',
|
||||
data: {
|
||||
run_installer_lock: 1
|
||||
},
|
||||
success: async function(response) {
|
||||
if (response == 'success') {
|
||||
running(field, false);
|
||||
await log_message('debug', 'Successfully created .lock file in folder /install');
|
||||
resolve();
|
||||
} else {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Could not create .lock file.');
|
||||
reject("<?= __("Could not create install/.lock file"); ?>");
|
||||
}
|
||||
},
|
||||
error: async function(error) {
|
||||
running(field, false, true);
|
||||
await log_message('error', 'Could not create .lock file. Ajax crashed');
|
||||
reject(error);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
//
|
||||
|
||||
function running(field, running, failure = false) {
|
||||
|
||||
if (running) {
|
||||
$(field).css('opacity', '100%');
|
||||
$(field + '_spinner').addClass("running");
|
||||
} else {
|
||||
$(field + '_spinner').removeClass("running");
|
||||
if (failure) {
|
||||
$(field + '_check').addClass('fa-times-circle');
|
||||
$(field + '_check').css('color', 'red');
|
||||
} else {
|
||||
$(field + '_check').addClass('fa-check-circle');
|
||||
$(field + '_check').css('color', '#04a004');
|
||||
}
|
||||
$(field + '_check').css('display', 'inline');
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<?php include 'includes/interface_assets/footer.php'; ?>
|
||||
|
||||
</html>
|
||||
@@ -235,7 +235,7 @@ class CI_Migration {
|
||||
else
|
||||
{
|
||||
// Well, there's nothing to migrate then ...
|
||||
return TRUE;
|
||||
return $current_version;
|
||||
}
|
||||
|
||||
// Validate all available migrations within our target range.
|
||||
|
||||
Reference in New Issue
Block a user