From d4014e5ffb6c07db8cd52152f9ea6794bda44aae Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 11 Oct 2024 10:34:10 +0200 Subject: [PATCH 1/4] fix mig 215 for the installer in case the contest sessions are empty --- .../migrations/215_add_contest_settings.php | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/application/migrations/215_add_contest_settings.php b/application/migrations/215_add_contest_settings.php index c5c709c16..09ee51c3d 100644 --- a/application/migrations/215_add_contest_settings.php +++ b/application/migrations/215_add_contest_settings.php @@ -13,23 +13,28 @@ class Migration_add_contest_settings extends CI_Migration { ), ); - // Get the current data so we can add it back in - $data = array( - 'exchangetype' => $this->db->get('contest_session')->row()->exchangetype, - 'exchange_sequence' => 's-g-e', - 'copyexchangeto' => $this->db->get('contest_session')->row()->copytodok, - ); - // Add the settings field to the contest_session table if (!$this->db->field_exists('settings', 'contest_session')) { $this->dbforge->add_column('contest_session', $fields); + // if there is any existing data in the contest_session table, we need to move it to the new settings field + if ($this->db->get('contest_session')->row() > 0) { + + // Get the current data so we can add it back in + $data = array( + 'exchangetype' => $this->db->get('contest_session')->row()->exchangetype, + 'exchange_sequence' => 's-g-e', + 'copyexchangeto' => $this->db->get('contest_session')->row()->copytodok, + ); + + // Update the settings field with the old data + $this->db->update('contest_session', array('settings' => json_encode($data))); + + } + // We also can drop the now unused columns $this->dbforge->drop_column('contest_session', 'exchangetype'); $this->dbforge->drop_column('contest_session', 'copytodok'); - - // Update the settings field with the old data - $this->db->update('contest_session', array('settings' => json_encode($data))); } } From b10adb00548d641662279a3cd94089d7eb87235c Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 11 Oct 2024 10:36:47 +0200 Subject: [PATCH 2/4] store dxcc_id in localStorage aswell --- install/includes/interface_assets/footer.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/includes/interface_assets/footer.php b/install/includes/interface_assets/footer.php index 4bca02ee7..b01cb9d0b 100644 --- a/install/includes/interface_assets/footer.php +++ b/install/includes/interface_assets/footer.php @@ -25,6 +25,10 @@ var inputValue = $(this).val(); localStorage.setItem(inputId, inputValue); }); + $('#dxcc_id').change(function() { + var dxcc_id = $(this).val(); + localStorage.setItem('dxcc_id', dxcc_id); + }); // delete all data in localStorage and reload page $('#resetInstaller').click(function() { From 1fb287911e3398a905d450eee9c9bffaca64d126 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 11 Oct 2024 11:43:02 +0200 Subject: [PATCH 3/4] added new callsign checks and made functions more generic --- install/index.php | 64 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 51 insertions(+), 13 deletions(-) diff --git a/install/index.php b/install/index.php index f2efd1a68..179c5d970 100644 --- a/install/index.php +++ b/install/index.php @@ -1220,7 +1220,7 @@ if (!file_exists('.lock')) { if (!callbook_combination()) { return; } - pwdForbiddenChars($('#callbook_password')); + stringForbiddenChars($('#callbook_password')); if ($('#callbook_password').hasClass('is-invalid') && $('#callbook_password').val() != '') { return; } @@ -1248,6 +1248,9 @@ if (!file_exists('.lock')) { if (!user_pwd_check()) { return; } + if (!callsign_check()) { + return; + } checklist_configuration(); checklist_database(); checklist_firstuser(); @@ -1322,20 +1325,38 @@ if (!file_exists('.lock')) { console.error('input_is_valid(): Unknown status: ' + status); } - function pwdForbiddenChars(field) { - let pwd = field.val(); + function stringForbiddenChars(field) { + let string = field.val(); let specialChars = /['"\/\\<>]/; - if (pwd != '') { - if (specialChars.test(pwd)) { + if (string != '') { + if (specialChars.test(string)) { input_is_valid(field, 'is-invalid'); - if (field = passwordField) { + if (field == passwordField) { show_userformwarnings('danger', ""); ?>"); + return; + } + if (field == userCallsignField) { + show_userformwarnings('danger', ""); + return; } } else { input_is_valid(field, 'is-valid'); hide_userformwarnings(); } + + // we also test the userCallsignField for any special characters + if (field == userCallsignField) { + if (!/^[a-zA-Z0-9]+$/.test(string)) { + input_is_valid(field, 'is-invalid'); + show_userformwarnings('danger', ""); + return; + } else { + input_is_valid(field, 'is-valid'); + hide_userformwarnings(); + return; + } + } } else { field.removeClass('is-invalid'); field.removeClass('is-valid'); @@ -1369,7 +1390,7 @@ if (!file_exists('.lock')) { * Website-URL and Directory have to be green. No checks needed 'Advanced Settings'. * * Callbook Password: - * - do not allow specialchars defined in pwdForbiddenChars() (hard) + * - do not allow specialchars defined in stringForbiddenChars() (hard) * * Directory: * - no slash allowed (hard) @@ -1417,7 +1438,7 @@ if (!file_exists('.lock')) { if (callbook_username.val() == '') { callbook_username.removeClass('is-valid is-invalid'); } - pwdForbiddenChars(callbook_password); + stringForbiddenChars(callbook_password); }); }); @@ -1467,7 +1488,7 @@ if (!file_exists('.lock')) { } else if (a !== '' && b !== '') { input_is_valid(callbook_username, 'is-valid'); - pwdForbiddenChars(callbook_password); + stringForbiddenChars(callbook_password); } return check; @@ -1585,7 +1606,7 @@ if (!file_exists('.lock')) { * Tab 5 - First User * * Rules: - * - do not allow specialchars in userpassword defined in pwdForbiddenChars() (hard) + * - do not allow specialchars in userpassword defined in stringForbiddenChars() (hard) * - No input can be empty (hard) * - Locator have to match regex (hard) * - E-Mail have to match regex (hard) @@ -1613,6 +1634,7 @@ if (!file_exists('.lock')) { let emailField = $('#user_email'); let userLocatorField = $('#userlocator'); + let userCallsignField = $('#callsign'); let userFormWarnings = $('#userform_warnings'); @@ -1633,11 +1655,14 @@ if (!file_exists('.lock')) { isValidEmail(emailField); }); passwordField.on('change', function() { - pwdForbiddenChars(passwordField); + stringForbiddenChars(passwordField); }); if (passwordField !== '') { - pwdForbiddenChars(passwordField); + stringForbiddenChars(passwordField); } + userCallsignField.on('change', function() { + stringForbiddenChars(userCallsignField); + }); cnfmPasswordField.on('change', function() { user_pwd_check(); }); @@ -1755,7 +1780,7 @@ if (!file_exists('.lock')) { } function user_pwd_check() { - pwdForbiddenChars(passwordField); + stringForbiddenChars(passwordField); if (passwordField.hasClass('is-invalid')) { return false; } @@ -1788,6 +1813,15 @@ if (!file_exists('.lock')) { } } + function callsign_check() { + stringForbiddenChars(userCallsignField); + if (userCallsignField.hasClass('is-invalid')) { + return false; + } else { + return true; + } + } + /* * Tab 6 - Install * @@ -1901,6 +1935,7 @@ if (!file_exists('.lock')) { checklist_firstuser = false; } else { input_is_valid($(inputID), 'is-valid'); + stringForbiddenChars(userCallsignField); user_pwd_check(); } }); @@ -1918,6 +1953,9 @@ if (!file_exists('.lock')) { if (userLocatorField.hasClass('is-invalid')) { checklist_firstuser = false; } + if (userCallsignField.hasClass('is-invalid')) { + checklist_firstuser = false; + } if (checklist_firstuser) { if (passwordField.hasClass('has-warning') || $('#dxcc_button').hasClass('has-warning')) { From 5a95c06be1c79505a7f97ee1e9c1a7fd5f8c4d72 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 12 Oct 2024 16:00:25 +0000 Subject: [PATCH 4/4] po/mo updates --- .../includes/gettext/lang_src/installer.pot | 96 +++++++++++-------- .../locale/bg_BG/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/bs/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/cnr/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/cs_CZ/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/de_DE/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/el_GR/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/es_ES/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/fi_FI/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/fr_FR/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/hr/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/it_IT/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/nl_NL/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/pl_PL/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/pt_PT/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/ru_RU/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/sq/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/sr/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/sv_SE/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/tr_TR/LC_MESSAGES/installer.po | 96 +++++++++++-------- .../locale/zh_CN/LC_MESSAGES/installer.po | 96 +++++++++++-------- 21 files changed, 1134 insertions(+), 882 deletions(-) diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index 1379c3bc2..f9afa59b6 100644 --- a/install/includes/gettext/lang_src/installer.pot +++ b/install/includes/gettext/lang_src/installer.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,87 +35,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -473,7 +473,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -571,89 +571,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po b/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po index a59e791be..6f24b6ade 100644 --- a/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/bg_BG/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -36,87 +36,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -474,7 +474,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -572,89 +572,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/bs/LC_MESSAGES/installer.po b/install/includes/gettext/locale/bs/LC_MESSAGES/installer.po index ff92bc8ed..5d43b5f57 100644 --- a/install/includes/gettext/locale/bs/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/bs/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -35,87 +35,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -473,7 +473,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -571,89 +571,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.po b/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.po index 334247518..04865f617 100644 --- a/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/cnr/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -35,87 +35,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -473,7 +473,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -571,89 +571,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po b/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po index 1e67a295c..29e63c3e9 100644 --- a/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/cs_CZ/LC_MESSAGES/installer.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-08-26 12:58+0000\n" "Last-Translator: Petr OK1PTR \n" "Language-Team: Czech " msgstr "Heslo nesmí obsahovat '/\\<>" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "Minimální verze MySQL je%s, u MariaDB je to %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Hledat" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "Minimálně jedno pole je prázdné." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "Heslo musí obsahovat minimálně 8 znaků" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Hesla se neshodují" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Instalovat nyní" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "PHP modul chybí" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "Následující PHP moduly chybí:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Wavelog instalátor bez toho modulu nefunguje!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Prosím doinstalujte požadované moduly a restartujte webový server." diff --git a/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po b/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po index f17fe6089..18a3524c8 100644 --- a/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/de_DE/LC_MESSAGES/installer.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-09-27 16:01+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: German " msgstr "Passworte dürfen ' / \\ < > nicht enthalten" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" "Fehler: Mindestens Hostname/IP, Datenbankname und Benutzername werden " "benötigt." -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Verbinden..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "Verbindung war erfolgreich und die Datenbank sollte kompatibel sein." -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -660,20 +672,20 @@ msgstr "" "Verbindung war erfolgreich, aber deine Datenbank scheint zu alt für Wavelog " "zu sein. Du kannst es weiter versuchen, es könnten jedoch Probleme auftreten." -#: install/index.php:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "Die min. Version für MySQL ist %s, für MariaDB ist es %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Suche" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "Mindestens ein Feld ist leer." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -685,7 +697,7 @@ msgstr "" "'Federal Republic of Germany'. Wenn du dir sicher bist, ignoriere diese " "Warnung." -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." @@ -693,7 +705,7 @@ msgstr "" "Der Locator scheint nicht im richtigen Format zu sein. Sollte wie AA11AA " "aussehen (6-stelliger Grid-Locator)." -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" @@ -701,35 +713,35 @@ msgstr "" "Die E-Mail-Adresse sieht nicht korrekt aus. Stelle sicher, dass es eine " "gültige E-Mail-Adresse ist" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "Das Passwort sollte mindestens 8 Zeichen lang sein" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Passwörter stimmen nicht überein" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Jetzt installieren" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "Installation nicht möglich. Checkliste unvollständig." -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "PHP-Modul fehlt" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "Die folgenden PHP-Module fehlen:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Ohne dieses Modul funktioniert der Wavelog-Installer nicht!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Bitte installiere die benötigten Module und starte den Webserver neu." diff --git a/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po b/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po index 3f282a613..3a4c9c222 100644 --- a/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/el_GR/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-07-29 12:05+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek " msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po b/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po index 930207ff4..d93184c6e 100644 --- a/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/es_ES/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-10-05 21:22+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Spanish " msgstr "La contraseña no puede contener ' / \\ < >" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" "Error: Se requieren al menos el nombre de host/IP, el nombre de la base de " "datos y el nombre de usuario." -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Conectando..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "La conexión fue exitosa y tu base de datos debería ser compatible." -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -650,20 +662,20 @@ msgstr "" "La conexión fue exitosa, pero tu base de datos parece demasiado antigua para " "Wavelog. Puedes intentar continuar, pero podrías encontrarte con problemas." -#: install/index.php:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "La versión mínima para MySQL es %s, para MariaDB es %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Buscar" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "Al menos un campo está vacío." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -673,7 +685,7 @@ msgstr "" "Comprueba cuál es el DXCC correcto para esta localización en particular. Si " "está seguro, ignore esta advertencia." -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." @@ -681,7 +693,7 @@ msgstr "" "El localizador parece no estar en el formato correcto. Debería verse como " "AA11AA (localizador de cuadrícula de 6 caracteres)." -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" @@ -689,35 +701,35 @@ msgstr "" "La dirección de correo electrónico no parece correcta. Asegúrate de que sea " "una dirección de correo electrónico válida" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "La contraseña debe tener al menos 8 caracteres de longitud" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Instalar ahora" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "Instalación no posible. Lista de verificación incompleta." -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "Módulo PHP faltante" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "Faltan los siguientes módulos de PHP:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "¡Sin este módulo, el instalador de Wavelog no funciona!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Por favor, instala los módulos necesarios y reinicia el servidor web." diff --git a/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po b/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po index a25e2e81a..897ffae67 100644 --- a/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/fi_FI/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -36,87 +36,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -474,7 +474,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -572,89 +572,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po index 1ff559fc4..f8060e7d4 100644 --- a/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/fr_FR/LC_MESSAGES/installer.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-10-03 21:11+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: French " msgstr "Le mot de passe ne peut pas contenir ' / \\ < >" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" "Erreur : Au moins le nom d'hôte/IP, le nom de la base de données et le nom " "d'utilisateur sont requis." -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Connection..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" "La connexion a été réussie et votre base de données devrait être compatible." -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -661,20 +673,20 @@ msgstr "" "Wavelog. Vous pouvez essayer de continuer mais vous pourriez rencontrer des " "problèmes." -#: install/index.php:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "La version min. pour MySQL est %s, pour MariaDB c'est %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Chercher" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "Au moins un champ est vide." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -684,7 +696,7 @@ msgstr "" "valide. Vérifiez quel DXCC pour cet emplacement particulier est le bon. Si " "vous êtes sûr, ignorez cet avertissement." -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." @@ -692,7 +704,7 @@ msgstr "" "Le locator ne semble pas être au bon format. Il devrait ressembler à AA11AA " "(locator de grille à 6 caractères)." -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" @@ -700,35 +712,35 @@ msgstr "" "L'adresse e-mail ne semble pas correcte. Assurez-vous qu'il s'agit d'une " "adresse e-mail valide" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "Le mot de passe doit comporter au moins 8 caractères" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Les mots de passe ne correspondent pas" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Installer maintenant" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "Installation impossible. Liste de verification incomplète." -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "Module PHP manquant" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "Les modules PHP suivants sont manquants :" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Sans ce module, l'installateur Wavelog ne fonctionne pas !" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Veuillez installer les modules requis et redémarrer le serveur web." diff --git a/install/includes/gettext/locale/hr/LC_MESSAGES/installer.po b/install/includes/gettext/locale/hr/LC_MESSAGES/installer.po index 75e9ec842..b79c067ad 100644 --- a/install/includes/gettext/locale/hr/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/hr/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -35,87 +35,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -473,7 +473,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -571,89 +571,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po index dbd4d442d..172d2c984 100644 --- a/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/it_IT/LC_MESSAGES/installer.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-10-10 05:40+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Italian " msgstr "La password non può contenere ' / \\ < >" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" "Errore: Sono richiesti almeno Nome host/IP, Nome del database e Nome utente." -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Collegamento in corso..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" "La connessione è riuscita e il tuo database dovrebbe essere compatibile." -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -650,20 +662,20 @@ msgstr "" "La connessione è riuscita, ma il tuo database sembra troppo vecchio per " "Wavelog. Puoi provare a continuare, ma potresti incontrare problemi." -#: install/index.php:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "La versione minima per MySQL è %s, per MariaDB è %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Cerca" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "Almeno un campo è vuoto." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -673,7 +685,7 @@ msgstr "" "Controlla quale DXCC per questa particolare posizione è quello corretto. Se " "sei sicuro, ignora questo avviso." -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." @@ -681,7 +693,7 @@ msgstr "" "Il locator sembra non essere nel formato corretto. Dovrebbe essere simile a " "AA11AA (locator a 6 caratteri)." -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" @@ -689,35 +701,35 @@ msgstr "" "L'indirizzo e-mail non sembra corretto. Assicurati che sia un indirizzo e-" "mail valido" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "La password deve essere lunga almeno 8 caratteri" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Le password non corrispondono" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Installa ora" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "Installazione non possibile. Lista di controllo incompleta." -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "Modulo PHP mancante" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "I seguenti moduli PHP sono mancanti:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Senza questo modulo l'installatore di Wavelog non funziona!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Installa i moduli richiesti e riavvia il server web." diff --git a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po index a40d2c52e..2dceac193 100644 --- a/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/nl_NL/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-08-12 05:44+0000\n" "Last-Translator: Casper van Lieburg \n" "Language-Team: Dutch " msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po b/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po index 127909ff2..decdc1f5c 100644 --- a/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/pl_PL/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -36,87 +36,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -474,7 +474,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -572,89 +572,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po b/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po index 1bf2e14aa..999fe12ae 100644 --- a/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/pt_PT/LC_MESSAGES/installer.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-09-27 16:01+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Portuguese (Portugal) " msgstr "A palavra-passe não pode conter ' / \\ < >" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" "Erro: Pelo menos o Nome do Host/IP, Nome da Base de Dados e Nome de " "Utilizador são necessários." -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Ligação..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" "A ligação foi bem sucedida e a sua base de dados apararenta ser compatível." -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -654,20 +666,20 @@ msgstr "" "A ligação foi bem sucedida, mas a sua base de dados parece ser demasiado " "antiga para o Wavelog. Pode tentar continuar, mas poderá ter problemas." -#: install/index.php:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "A versão mínima para MySQL é %s, para MariaDB é %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Procurar" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "Pelo menos um campo está vazio." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -677,7 +689,7 @@ msgstr "" "qual é o DXCC correto para o local em questão. Se tiver a certeza, ignore " "este aviso." -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." @@ -685,7 +697,7 @@ msgstr "" "O locator parece não estar no formato correto. Deve ser algo tipo AA11AA " "(locator de 6 caracteres)." -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" @@ -693,35 +705,35 @@ msgstr "" "O endereço de e-mail não parece correto. Certifique-se de que é um endereço " "de e-mail válido" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "A palavra-passe deve ter pelo menos 8 caracteres" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "As palavras-passe não correspondem" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Instalar agora" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "Instalação não possível. Lista de verificação incompleta." -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "Módulo PHP em falta" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "Os seguintes módulos PHP estão em falta:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Sem este módulo, o Instalador do Wavelog não funciona!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Por favor, instale os módulos necessários e reinicie o servidor web." diff --git a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po index 9626c77ed..f1d8a9d5b 100644 --- a/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/ru_RU/LC_MESSAGES/installer.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-09-27 16:01+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Russian " msgstr "Пароль не может содержать ' / \\ < >" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" "Ошибка: Требуются как минимум имя хоста/IP, имя базы данных и имя " "пользователя." -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Подключение..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "Соединение было успешным, и ваша база данных должна быть совместимой." -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -652,20 +664,20 @@ msgstr "" "Соединение было успешным, но ваша база данных кажется слишком старой для " "Wavelog. Вы можете попробовать продолжить, но могут возникнуть проблемы." -#: install/index.php:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "Минимальная версия для MySQL - %s, для MariaDB - %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Поиск" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "По крайней мере одно поле пустое." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -675,7 +687,7 @@ msgstr "" "действителен. Проверьте, какой DXCC для данного конкретного места является " "правильным. Если вы уверены, проигнорируйте это предупреждение." -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." @@ -683,7 +695,7 @@ msgstr "" "Похоже, что локатор не в правильном формате. Должен выглядеть как AA11AA (6-" "символьный QTH-локатор)." -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" @@ -691,35 +703,35 @@ msgstr "" "Адрес электронной почты выглядит некорректным. Убедитесь, что это " "действительный адрес электронной почты" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "Длина пароля должна быть не менее 8 символов" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Пароли не совпадают" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Установить сейчас" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "Установка невозможна. Контрольный список не завершен." -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "Отсутствует модуль PHP" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "Отсутствуют следующие модули PHP:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Без этого модуля установщик Wavelog не работает!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Пожалуйста, установите необходимые модули и перезапустите веб-сервер." diff --git a/install/includes/gettext/locale/sq/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sq/LC_MESSAGES/installer.po index 6627f023a..47e3d1084 100644 --- a/install/includes/gettext/locale/sq/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/sq/LC_MESSAGES/installer.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-08-12 11:59+0000\n" "Last-Translator: Dren Imeraj \n" "Language-Team: Albanian " msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po index 4694d9195..cfdd044a8 100644 --- a/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/sr/LC_MESSAGES/installer.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-09-27 16:01+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Serbian " msgstr "Lozinka ne može sadržati znakove ' / \\ < >" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" "Greška: Najmanje što vam je potrebno je naziv hosta/IP, naziv baze podataka " "i korisničko ime." -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Povezivanje..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" "Povezivanje je bilo uspešno i trebalo bi da je vaša baza podataka " "kompatibilna." -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -650,20 +662,20 @@ msgstr "" "Povezivanje je bilo uspešno, ali izgleda da je vaša baza podataka isuviše " "stara za Wavelog. Možete nastaviti ali biste mogli naići na probleme." -#: install/index.php:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "Minimalna verzija za MySQL je %s, za MariaDB je %s." -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "Pretraga" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "Najmanje jedno polje je prazno." -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -673,7 +685,7 @@ msgstr "" "nije validna. Proverite koja DXCC je ispravna za ovu lokaciju. Ako ste " "sigurni da ste upisali tačne podatke, ignorišite ovo upozrenje." -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." @@ -681,42 +693,42 @@ msgstr "" "Izgleda da lokator nema ispravan format. Trebalo bi da liči na AA11AA " "(lokator polja sa 6 karaktera)." -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" "E-mail adresa ne izgleda tačno. Uverite se da je to ispravna e-mail adresa" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "Lozinka bi trebalo da je dugačka barem 8 znakova" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Lozinke se ne poklapaju" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Instalirajte sada" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "Instalacija nije moguća. Lista za proveru je nekompletna." -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "Nedostaje PHP modul" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "Sledeći PHP moduli nedostaju:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Bez ovih modula Wavelog instaler ne radi!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "Molimo instalirajte zahtevane module i restartujte web server." diff --git a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po index 3cc752df4..3c4c8319a 100644 --- a/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/sv_SE/LC_MESSAGES/installer.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-06-05 15:15+0200\n" "Last-Translator: \n" "Language-Team: \n" @@ -36,87 +36,87 @@ msgstr "" msgid "not detected" msgstr "" -#: install/includes/interface_assets/footer.php:50 +#: install/includes/interface_assets/footer.php:54 msgid "Albanian" msgstr "" -#: install/includes/interface_assets/footer.php:51 +#: install/includes/interface_assets/footer.php:55 msgid "Bosnian" msgstr "" -#: install/includes/interface_assets/footer.php:52 +#: install/includes/interface_assets/footer.php:56 msgid "Bulgarian" msgstr "" -#: install/includes/interface_assets/footer.php:53 +#: install/includes/interface_assets/footer.php:57 msgid "Chinese (Simplified)" msgstr "" -#: install/includes/interface_assets/footer.php:54 +#: install/includes/interface_assets/footer.php:58 msgid "Croatian" msgstr "" -#: install/includes/interface_assets/footer.php:55 +#: install/includes/interface_assets/footer.php:59 msgid "Czech" msgstr "" -#: install/includes/interface_assets/footer.php:56 +#: install/includes/interface_assets/footer.php:60 msgid "Dutch" msgstr "" -#: install/includes/interface_assets/footer.php:57 +#: install/includes/interface_assets/footer.php:61 msgid "English" msgstr "" -#: install/includes/interface_assets/footer.php:58 +#: install/includes/interface_assets/footer.php:62 msgid "Finnish" msgstr "" -#: install/includes/interface_assets/footer.php:59 +#: install/includes/interface_assets/footer.php:63 msgid "French" msgstr "" -#: install/includes/interface_assets/footer.php:60 +#: install/includes/interface_assets/footer.php:64 msgid "German" msgstr "" -#: install/includes/interface_assets/footer.php:61 +#: install/includes/interface_assets/footer.php:65 msgid "Greek" msgstr "" -#: install/includes/interface_assets/footer.php:62 +#: install/includes/interface_assets/footer.php:66 msgid "Italian" msgstr "" -#: install/includes/interface_assets/footer.php:63 +#: install/includes/interface_assets/footer.php:67 msgid "Montenegrin" msgstr "" -#: install/includes/interface_assets/footer.php:64 +#: install/includes/interface_assets/footer.php:68 msgid "Polish" msgstr "" -#: install/includes/interface_assets/footer.php:65 +#: install/includes/interface_assets/footer.php:69 msgid "Portuguese" msgstr "" -#: install/includes/interface_assets/footer.php:66 +#: install/includes/interface_assets/footer.php:70 msgid "Russian" msgstr "" -#: install/includes/interface_assets/footer.php:67 +#: install/includes/interface_assets/footer.php:71 msgid "Serbian" msgstr "" -#: install/includes/interface_assets/footer.php:68 +#: install/includes/interface_assets/footer.php:72 msgid "Spanish" msgstr "" -#: install/includes/interface_assets/footer.php:69 +#: install/includes/interface_assets/footer.php:73 msgid "Swedish" msgstr "" -#: install/includes/interface_assets/footer.php:70 +#: install/includes/interface_assets/footer.php:74 msgid "Turkish" msgstr "" @@ -474,7 +474,7 @@ msgstr "" #: install/index.php:817 install/index.php:827 install/index.php:833 #: install/index.php:837 install/index.php:843 install/index.php:846 #: install/index.php:849 install/index.php:854 install/index.php:880 -#: install/index.php:886 install/index.php:888 install/index.php:1708 +#: install/index.php:886 install/index.php:888 install/index.php:1733 msgid "Deleted DXCC" msgstr "" @@ -572,89 +572,101 @@ msgid "" "reload this page." msgstr "" -#: install/index.php:1333 +#: install/index.php:1336 msgid "Password can't contain ' / \\ < >" msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po b/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po index ea38b1d2c..ffba63b59 100644 --- a/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/tr_TR/LC_MESSAGES/installer.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-07-26 09:13+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish " msgstr "" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "Bağlanıyor..." -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "" -#: install/index.php:1538 +#: install/index.php:1559 msgid "" "Connection was successful but your database seems too old for Wavelog. You " "can try to continue but you could run into issues." @@ -626,67 +638,67 @@ 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " "sure, ignore this warning." msgstr "" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "Şifre en az 8 karakter uzunluğunda olmalıdır" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "Şifreler eşleşmiyor" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "Şimdi Yükle" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "" diff --git a/install/includes/gettext/locale/zh_CN/LC_MESSAGES/installer.po b/install/includes/gettext/locale/zh_CN/LC_MESSAGES/installer.po index 83c3fdd6b..f01dc8fe4 100644 --- a/install/includes/gettext/locale/zh_CN/LC_MESSAGES/installer.po +++ b/install/includes/gettext/locale/zh_CN/LC_MESSAGES/installer.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-10-10 16:37+0000\n" +"POT-Creation-Date: 2024-10-12 16:00+0000\n" "PO-Revision-Date: 2024-09-27 16:01+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Chinese (Simplified Han script) " msgstr "密码不能包含 '/?<>" -#: install/index.php:1500 +#: install/index.php:1340 +msgid "" +"The callsign should not contain any pre- or suffixes as it is used as " +"personal operator callsign." +msgstr "" + +#: install/index.php:1352 +msgid "" +"The callsign can not contain any special characters. It's your personal " +"callsign without any pre- or suffixes." +msgstr "" + +#: install/index.php:1521 msgid "Error: At least Hostname/IP, Database Name and Username are required." msgstr "错误:至少提供 主机名/IP、数据库名称和用户名。" -#: install/index.php:1510 +#: install/index.php:1531 msgid "Connecting..." msgstr "连接中…" -#: install/index.php:1534 +#: install/index.php:1555 msgid "Connection was successful and your database should be compatible." msgstr "连接成功,您的数据库兼容 Wavelog。" -#: install/index.php:1538 +#: install/index.php:1559 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:1538 +#: install/index.php:1559 #, php-format msgid "The min. version for MySQL is %s, for MariaDB it's %s." msgstr "MySQL 最低版本 %s,或 MariaDB 最低版本 %s。" -#: install/index.php:1654 +#: install/index.php:1679 msgid "Search" msgstr "搜索" -#: install/index.php:1691 +#: install/index.php:1716 msgid "At least one field is empty." msgstr "有字段未填写。" -#: install/index.php:1710 +#: install/index.php:1735 msgid "" "Stop here for a Moment. Your chosen DXCC is outdated and not valid anymore. " "Check which DXCC for this particular location is the correct one. If you are " @@ -643,47 +655,47 @@ msgstr "" "请稍等,您选择的 DXCC 已经不再有效,请重新查看该地区最新的 DXCC,如果您确定要" "继续,请忽略这个警告。" -#: install/index.php:1734 +#: install/index.php:1759 msgid "" "The locator seems to be not in the correct format. Should look like AA11AA " "(6-char grid locator)." msgstr "网格格式有误,例如 AA11AA(6位)。" -#: install/index.php:1748 +#: install/index.php:1773 msgid "" "The e-mail adress does not look correct. Make sure it's a valid e-mail " "address" msgstr "E-mail 地址有误,请重新检查" -#: install/index.php:1775 +#: install/index.php:1800 msgid "Password should be at least 8 characters long" msgstr "密码需要至少 8 位长" -#: install/index.php:1784 +#: install/index.php:1809 msgid "Passwords do not match" msgstr "密码不匹配" -#: install/index.php:1831 +#: install/index.php:1865 msgid "Install Now" msgstr "现在安装" -#: install/index.php:1835 +#: install/index.php:1869 msgid "Install not possible. Checklist incomplete." msgstr "无法安装,检查单无法通过。" -#: install/index.php:1951 +#: install/index.php:1989 msgid "PHP Module missing" msgstr "PHP 模块未安装" -#: install/index.php:1953 +#: install/index.php:1991 msgid "The following PHP modules are missing:" msgstr "缺少 PHP 模块:" -#: install/index.php:1954 +#: install/index.php:1992 msgid "Without this module the Wavelog Installer does not work!" msgstr "Wavelog 需要这个模块来运行!" -#: install/index.php:1955 +#: install/index.php:1993 msgid "Please install the required modules and restart the webserver." msgstr "请安装缺失的模块,并重启服务器。"