diff --git a/application/config/migration.php b/application/config/migration.php index 03983d214..d0dbce0ab 100644 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -37,5 +37,20 @@ $config['migration_version'] = 211; $config['migration_path'] = APPPATH . 'migrations/'; +/* +|-------------------------------------------------------------------------- +| Migration Lockfile +|-------------------------------------------------------------------------- +| +| Path to the migration lockfile. +| This lockfile prevents migrations from running twice +| +*/ +$config['migration_lockfile'] = sys_get_temp_dir() . '/.migration_running'; + +// the maximum age of the lockfile in seconds +$config['migration_lf_maxage'] = 300; + + /* End of file migration.php */ /* Location: ./application/config/migration.php */ diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index 54115cb98..e9af0827a 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -42,9 +42,11 @@ class Debug extends CI_Controller // get mig version from config file $this->load->config('migration'); $data['migration_config'] = $this->config->item('migration_version'); + $data['migration_lockfile'] = $this->config->item('migration_lockfile'); + $data['miglock_lifetime'] = $this->config->item('migration_lf_maxage'); // compare mig versions - if ($data['migration_version'] !== $data['migration_config'] && file_exists('application/cache/.migration_running')) { + if ($data['migration_version'] != $data['migration_config'] && file_exists($data['migration_lockfile'])) { $data['migration_is_uptodate'] = false; } else { $data['migration_is_uptodate'] = true; diff --git a/application/controllers/Migrate.php b/application/controllers/Migrate.php index 65bf69dba..d1da26609 100644 --- a/application/controllers/Migrate.php +++ b/application/controllers/Migrate.php @@ -3,6 +3,7 @@ class Migrate extends CI_Controller { public function index() { $this->load->library('Migration'); + $this->load->config('migration'); $result = array(); $latest = $this->migration->latest(); @@ -12,7 +13,7 @@ class Migrate extends CI_Controller { log_message('error', 'Migration failed'); $result['status'] = 'error'; } else { - while (file_exists(APPPATH . 'cache/.migration_running')) { + while (file_exists($this->config->item('migration_lockfile'))) { sleep(1); } $result['status'] = 'success'; diff --git a/application/locale/bg_BG/LC_MESSAGES/messages.po b/application/locale/bg_BG/LC_MESSAGES/messages.po index 3bd1bb442..9d0508acf 100644 --- a/application/locale/bg_BG/LC_MESSAGES/messages.po +++ b/application/locale/bg_BG/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Bulgarian here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5497,7 +5504,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5507,88 +5514,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/cs_CZ/LC_MESSAGES/messages.po b/application/locale/cs_CZ/LC_MESSAGES/messages.po index dbaccc213..0d91f58f6 100644 --- a/application/locale/cs_CZ/LC_MESSAGES/messages.po +++ b/application/locale/cs_CZ/LC_MESSAGES/messages.po @@ -10,8 +10,8 @@ msgstr "" "POT-Creation-Date: 2024-08-05 13:04+0000\n" "PO-Revision-Date: 2024-08-06 09:50+0000\n" "Last-Translator: Michal Šiman \n" -"Language-Team: Czech \n" +"Language-Team: Czech \n" "Language: cs_CZ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -504,42 +504,43 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:91 application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:130 application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:133 application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:137 application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" #: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:211 application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:229 application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: application/controllers/Debug.php:273 application/controllers/Debug.php:275 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " "'images/eqsl_card_images'." msgstr "" -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:276 application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -958,7 +959,7 @@ msgstr "" #: application/views/view_log/partial/log.php:9 #: application/views/view_log/partial/log_ajax.php:4 #: application/views/view_log/qso.php:104 application/views/visitor/index.php:6 -#: application/views/widgets/qsos.php:29 +#: application/views/widgets/qsos.php:29 application/views/debug/index.php:548 msgid "Mode" msgstr "Režim" @@ -1231,7 +1232,7 @@ msgstr "Vzdálenost" #: application/views/view_log/partial/log.php:12 #: application/views/view_log/partial/log_ajax.php:15 #: application/views/view_log/qso.php:87 application/views/visitor/index.php:33 -#: application/views/widgets/qsos.php:32 +#: application/views/widgets/qsos.php:32 application/views/debug/index.php:549 msgid "Band" msgstr "Pásmo" @@ -2545,7 +2546,7 @@ msgstr "" #: application/views/view_log/partial/log.php:4 #: application/views/view_log/partial/log_ajax.php:57 #: application/views/visitor/index.php:147 -#: application/views/widgets/qsos.php:24 +#: application/views/widgets/qsos.php:24 application/views/debug/index.php:545 msgid "Date" msgstr "Datum" @@ -2575,7 +2576,7 @@ msgstr "Datum" #: application/views/view_log/partial/log.php:6 #: application/views/view_log/partial/log_ajax.php:59 #: application/views/visitor/index.php:150 -#: application/views/widgets/qsos.php:26 +#: application/views/widgets/qsos.php:26 application/views/debug/index.php:546 msgid "Time" msgstr "Čas" @@ -2596,7 +2597,8 @@ msgstr "Čas" #: application/views/view_log/partial/log.php:8 #: application/views/view_log/partial/log_ajax.php:61 #: application/views/visitor/index.php:152 -#: application/views/widgets/qsos.php:28 +#: application/views/widgets/qsos.php:28 application/views/debug/index.php:547 +#: application/views/debug/index.php:582 msgid "Call" msgstr "Značka" @@ -2645,6 +2647,8 @@ msgstr "" #: application/views/view_log/qso.php:622 #: application/views/webadif/export.php:34 #: application/views/webadif/export.php:94 +#: application/views/debug/index.php:175 application/views/debug/index.php:192 +#: application/views/debug/index.php:537 msgid "Warning" msgstr "" @@ -4806,6 +4810,10 @@ msgstr "" #: application/views/debug/index.php:499 application/views/debug/index.php:504 #: application/views/debug/index.php:509 application/views/debug/index.php:514 #: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/debug/index.php:494 application/views/debug/index.php:500 +#: application/views/debug/index.php:505 application/views/debug/index.php:510 +#: application/views/debug/index.php:515 application/views/debug/index.php:520 +#: application/views/debug/index.php:525 msgid "never" msgstr "" @@ -5264,53 +5272,53 @@ msgid "" "this file to force the migration to run again." msgstr "" -#: application/views/debug/index.php:47 +#: application/views/debug/index.php:47 application/views/debug/index.php:48 #, php-format msgid "Current migration is %s" msgstr "" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:48 application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:53 application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:61 application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:69 application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:73 application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:78 application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:84 application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:91 application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:95 application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:103 application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:105 application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5318,143 +5326,155 @@ msgstr "" #: application/views/debug/index.php:111 application/views/debug/index.php:122 #: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:156 application/views/debug/index.php:112 +#: application/views/debug/index.php:123 application/views/debug/index.php:134 +#: application/views/debug/index.php:145 application/views/debug/index.php:157 msgid "Success" msgstr "" #: application/views/debug/index.php:113 application/views/debug/index.php:124 #: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:158 application/views/debug/index.php:114 +#: application/views/debug/index.php:125 application/views/debug/index.php:136 +#: application/views/debug/index.php:147 application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:168 application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:174 application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" #: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:177 application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:178 application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:184 application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" #: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:191 application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:194 application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:195 application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:201 application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:208 application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:210 application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:223 application/views/debug/index.php:224 msgid "Modules" msgstr "" #: application/views/debug/index.php:229 application/views/debug/index.php:240 #: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:273 application/views/debug/index.php:230 +#: application/views/debug/index.php:241 application/views/debug/index.php:252 +#: application/views/debug/index.php:263 application/views/debug/index.php:274 msgid "Installed" msgstr "" #: application/views/debug/index.php:231 application/views/debug/index.php:242 #: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:275 application/views/debug/index.php:232 +#: application/views/debug/index.php:243 application/views/debug/index.php:254 +#: application/views/debug/index.php:265 application/views/debug/index.php:276 msgid "Not Installed" msgstr "" #: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:411 application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:415 application/views/debug/index.php:416 msgid "Branch" msgstr "" #: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:447 application/views/debug/index.php:427 +#: application/views/debug/index.php:438 application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:432 application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:442 application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:452 application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:464 application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:465 application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:483 application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:487 application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:488 application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:492 application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" @@ -5463,38 +5483,42 @@ msgstr "" #: application/views/debug/index.php:515 application/views/debug/index.php:520 #: application/views/debug/index.php:525 #: application/views/station_profile/edit.php:22 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:498 application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:503 application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:508 application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:513 application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:518 application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:523 application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:532 application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:536 application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5510,91 +5534,93 @@ msgstr[2] "" #: application/views/station_profile/index.php:42 #: application/views/stationsetup/linkedlocations.php:32 #: application/views/stationsetup/stationsetup.php:123 +#: application/views/debug/index.php:550 msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:574 application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:582 application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" #: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:603 application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:603 application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:628 application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:629 application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:630 application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:631 application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:632 application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:633 application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:634 application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:635 application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:636 application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:637 application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:638 application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:639 application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:640 application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:641 application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:642 application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:643 application/views/debug/index.php:644 msgid "Turkish" msgstr "" @@ -10409,6 +10435,22 @@ msgstr "" msgid "Submit Request" msgstr "" +#: application/views/debug/index.php:46 +#, php-format +msgid "" +"The current migration is not the version it is supposed to be. Reload this " +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." +msgstr "" + +#: application/views/debug/index.php:47 +#, php-format +msgid "" +"Check this wiki article here for " +"more information." +msgstr "" + #~ msgid "You are using" #~ msgstr "Je využito" diff --git a/application/locale/de_DE/LC_MESSAGES/messages.mo b/application/locale/de_DE/LC_MESSAGES/messages.mo index 492e9e0e8..1a3fb7420 100644 Binary files a/application/locale/de_DE/LC_MESSAGES/messages.mo and b/application/locale/de_DE/LC_MESSAGES/messages.mo differ diff --git a/application/locale/de_DE/LC_MESSAGES/messages.po b/application/locale/de_DE/LC_MESSAGES/messages.po index 1acb62b4f..b48c2e0e0 100644 --- a/application/locale/de_DE/LC_MESSAGES/messages.po +++ b/application/locale/de_DE/LC_MESSAGES/messages.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-08-01 15:51+0000\n" "Last-Translator: Fabian Berg <80885850+HB9HIL@users.noreply.github.com>\n" "Language-Team: German here for " +"more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "Aktuelle Migration ist %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "Migration sollte sein %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Umgebung" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "QSOs auf dieser Instanz" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Server-Information" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "Server-Software" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "PHP-Version" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Veraltet" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "MySQL-Version" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Codeigniter Version" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Ordnerberechtigungen" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5587,32 +5589,32 @@ msgstr "" "Dies verifiziert, dass die von Wavelog verwendeten Ordner Schreib- und Lese-" "Rechte durch PHP haben." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "Erfolgreich" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "Fehlgeschlagen" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Konfigurations-Wartung" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Dein Authentifizierungsmodus ist veraltet und möglicherweise unsicher" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Bitte bearbeite deine %s Datei:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5620,30 +5622,30 @@ msgstr "" "Gehe in den application/config Ordner und vergleiche die config.sample.php " "mit deiner config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Ändere %s zu dem Wert %s (Stark empfohlen)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "Der Authentifizierungsmodus ist korrekt eingestellt" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "OK" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" "Du verwendest den Standardschlüssel zur Verschlüsselung. Du solltest ihn " "ändern!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Dies wird auch die Funktion 'Angemeldet bleiben' aktivieren." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5653,15 +5655,15 @@ msgstr "" "'flossie1234555541' ist. Es wird dringend empfohlen ein sicheres und langes " "Passwort zu wählen." -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Du verwendest nicht den Standardschlüssel für die Verschlüsselung" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Benutzerdaten migrieren" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5669,112 +5671,112 @@ msgstr "" "Hier kannst du bestehende QSL-Karten und eQSL-Karten in den neuen " "Benutzerdaten-Ordner migrieren." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Module" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Installiert" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Nicht installiert" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "Einstellungen" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Git Informationen" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Branch" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Letzter Abruf" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Nach neuer Version suchen" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Jetzt aktualisieren" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Datum des Datei-Downloads" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Datei" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Letzte Aktualisierung" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "DXCC-Update von Club Log" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Aktualisierung" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "DOK-Datei Download" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "LoTW-Benutzer Download" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "POTA-Datei Download" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "SCP-Datei Download" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "SOTA-Datei Download" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "WWFF-Datei Download" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "QSO-DB Wartung" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5782,7 +5784,7 @@ msgid_plural "" msgstr[0] "Die Datenbank enthält %d QSO ohne Stationsprofil (Standort)" msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5792,90 +5794,90 @@ msgstr[1] "Die Datenbank enthält %d QSOs ohne Stationsprofil (Standort)" msgid "Station Callsign" msgstr "Stationsrufzeichen" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Bitte markiere die QSOs und weise sie einem vorhandenen Stationsstandort zu:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Zielstandort" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Neu zuweisen" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Jedes QSO in deiner Datenbank ist einem Stationsprofil (Standort) zugeordnet" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Alles in Ordnung" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Bulgarisch" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Chinesisch (Vereinfacht)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Tschechisch" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Niederländisch" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "Englisch" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Finnisch" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Französisch" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Deutsch" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Griechisch" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "Italienisch" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Polnisch" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Portugiesisch" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Russisch" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "Spanisch" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "Schwedisch" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Türkisch" @@ -10977,6 +10979,19 @@ msgstr "Dein Rufzeichen:" msgid "Submit Request" msgstr "Anfrage senden" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "Die aktuelle Migration ist nicht die Version, die sie sein sollte. Lade " +#~ "diese Seite neu. Wenn diese Warnung weiterhin besteht, ist deine " +#~ "Migration wahrscheinlich aufgrund eines früheren fehlgeschlagenen " +#~ "Prozesses gesperrt. Überprüfe den Ordner %s auf eine Datei namens %s und " +#~ "entferne diese Datei, um die Migration erneut zu erzwingen." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" diff --git a/application/locale/el_GR/LC_MESSAGES/messages.po b/application/locale/el_GR/LC_MESSAGES/messages.po index 506042605..a2fb81c95 100644 --- a/application/locale/el_GR/LC_MESSAGES/messages.po +++ b/application/locale/el_GR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Fabian Berg \n" "Language-Team: Greek here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5500,7 +5507,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5510,88 +5517,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/es_ES/LC_MESSAGES/messages.po b/application/locale/es_ES/LC_MESSAGES/messages.po index 46b865b9a..7e0f6268a 100644 --- a/application/locale/es_ES/LC_MESSAGES/messages.po +++ b/application/locale/es_ES/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Actualizar" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5535,7 +5542,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5545,88 +5552,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "Indicativo de la Estación" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/fi_FI/LC_MESSAGES/messages.po b/application/locale/fi_FI/LC_MESSAGES/messages.po index 89196a2b4..ea766cbba 100644 --- a/application/locale/fi_FI/LC_MESSAGES/messages.po +++ b/application/locale/fi_FI/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-09 13:25+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Finnish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5497,7 +5504,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5507,88 +5514,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/fr_FR/LC_MESSAGES/messages.po b/application/locale/fr_FR/LC_MESSAGES/messages.po index 238a945f4..9302edd8e 100644 --- a/application/locale/fr_FR/LC_MESSAGES/messages.po +++ b/application/locale/fr_FR/LC_MESSAGES/messages.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-29 12:05+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: French here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Mettre à jour" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5558,7 +5565,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5568,88 +5575,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/it_IT/LC_MESSAGES/messages.po b/application/locale/it_IT/LC_MESSAGES/messages.po index 1f6c61db9..90ce4e42a 100644 --- a/application/locale/it_IT/LC_MESSAGES/messages.po +++ b/application/locale/it_IT/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Italian here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5499,7 +5506,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5509,88 +5516,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/nl_NL/LC_MESSAGES/messages.po b/application/locale/nl_NL/LC_MESSAGES/messages.po index 0ad401c45..de5fbc96f 100644 --- a/application/locale/nl_NL/LC_MESSAGES/messages.po +++ b/application/locale/nl_NL/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-25 07:32+0000\n" "Last-Translator: Casper van Lieburg \n" "Language-Team: Dutch here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5498,7 +5505,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5508,88 +5515,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/pl_PL/LC_MESSAGES/messages.po b/application/locale/pl_PL/LC_MESSAGES/messages.po index 0e72a2159..4df6089a0 100644 --- a/application/locale/pl_PL/LC_MESSAGES/messages.po +++ b/application/locale/pl_PL/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Polish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5501,7 +5508,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5511,88 +5518,88 @@ msgstr[2] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.mo b/application/locale/pt_PT/LC_MESSAGES/messages.mo index 7085948dd..37c8ac3c8 100644 Binary files a/application/locale/pt_PT/LC_MESSAGES/messages.mo and b/application/locale/pt_PT/LC_MESSAGES/messages.mo differ diff --git a/application/locale/pt_PT/LC_MESSAGES/messages.po b/application/locale/pt_PT/LC_MESSAGES/messages.po index 0d8de2c4b..8c1541f4f 100644 --- a/application/locale/pt_PT/LC_MESSAGES/messages.po +++ b/application/locale/pt_PT/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-08-02 07:38+0000\n" "Last-Translator: \"Francisco (F4VSE)\" \n" "Language-Team: Portuguese (Portugal) here for " +"more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "A migração atual é %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "A migração deveria ser %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Ambiente" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "Total de QSO nesta instância" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Informação do Servidor" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "Software do Servidor" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "Versão PHP" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Obsoleto" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "Versão do MySQL" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Versão do Codeigniter" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Permissões das Pastas" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5572,33 +5575,33 @@ msgstr "" "Isto verifica se as pastas usadas pelo Wavelog têm permissões de leitura e " "gravação pelo PHP." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "Sucesso" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "Falhou" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Manutenção da Configuração" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" "O seu modo de autenticação está desatualizado e possivelmente não é seguro" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Por favor, edite o seu ficheiro %s:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5606,28 +5609,28 @@ msgstr "" "Vá para sua pasta application/config e compare config.sample.php com seu " "config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Alterar %s para o valor %s (fortemente recomendado)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "O modo de autenticação está definido corretamente" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "Ok" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "Está a utilizar a chave de encriptação predefinida. Deveria alterá-la!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Isto também activará a funcionalidade “Manter-me conectado”." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5637,15 +5640,15 @@ msgstr "" "'flossie1234555541'. Escolha uma palavra-passe segura e longa. (Fortemente " "recomendado)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Você não utiliza a chave de encriptação predefinida" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Migrar dados dos utilizadores" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5653,112 +5656,112 @@ msgstr "" "Aqui pode migrar os cartões QSL e os cartões eQSL existentes para a nova " "pasta userdata." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Módulos" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Instalado" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Não instalado" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "Configurações" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Informação do Git" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Ramo" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "n/d" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Tag" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Último Fetch" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Verifica se há uma nova versão" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Atualizar agora" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Data de transferência do ficheiro" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Ficheiro" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Última atualização" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "Atualização do DXCC via Club Log" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Atualização" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "Descarregar ficheiro DOK" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "Descarregamento dos utilizadores de LoTW" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "Descarregamento do ficheiro POTA" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "Descarregamento de ficheiros SCP" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "Descarregamento do ficheiro SOTA" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "Descarregamento do ficheiro WWFF" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "Manutenção da QSO-DB" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5768,7 +5771,7 @@ msgstr[0] "" msgstr[1] "" "A base de dados contém %d contactos sem um perfil de estação (localização)" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5778,92 +5781,92 @@ msgstr[1] "" msgid "Station Callsign" msgstr "Indicativo da Estação" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" "Por favor marque os contactos e reatribua-os a uma localização de estação " "existente:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Localização do objetivo" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Reatribuir" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Cada contacto na sua base de dados é atribuído a um perfil de estação " "(localização)" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Tudo ok" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Búlgaro" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Chinês (simplificado)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Checo" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Holandês" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "Inglês" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Finlandês" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Francês" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Alemão" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Grego" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "Italiano" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Polaco" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Português" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Russo" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "Espanhol" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "Sueco" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Turco" @@ -10970,5 +10973,18 @@ msgstr "O seu indicativo:" msgid "Submit Request" msgstr "Submeter pedido" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "A migração atual não é a versão que deveria ser. Recarrege esta página. " +#~ "Se este aviso persistir, a sua migração provavelmente está bloqueada " +#~ "devido a um processo anteriormente falhado. Verifique a pasta %s para um " +#~ "ficheiro chamado %s e remova este ficheiro para forçar a migração a " +#~ "correr novamente." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.mo b/application/locale/ru_RU/LC_MESSAGES/messages.mo index 175c2bc5a..797547500 100644 Binary files a/application/locale/ru_RU/LC_MESSAGES/messages.mo and b/application/locale/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/application/locale/ru_RU/LC_MESSAGES/messages.po b/application/locale/ru_RU/LC_MESSAGES/messages.po index 8c58352c9..5266acb53 100644 --- a/application/locale/ru_RU/LC_MESSAGES/messages.po +++ b/application/locale/ru_RU/LC_MESSAGES/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-08-02 19:03+0000\n" "Last-Translator: Michael Skolsky \n" "Language-Team: Russian here for " +"more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "Текущая миграция - %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "Миграция должна быть %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "Окружение" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "Всего QSO на этом инстансе" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "Информация о сервере" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "ПО сервера" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "Версия PHP" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "Устарело" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "Версия MySQL" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Версия Codeigniter" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "Права доступа к каталогам" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." @@ -5565,32 +5567,32 @@ msgstr "" "Это проверяет, что папки, используемые Wavelog, имеют права на чтение и " "запись в PHP." -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "Успешно" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "Ошибка" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "Настройка режима обслуживания" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "Ваш режим аутентификации устарел и, возможно, небезопасен" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "Пожалуйста, отредактируйте ваш %s файл:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" @@ -5598,28 +5600,28 @@ msgstr "" "Перейдите в папку application/config и сравните config.sample.php с вашим " "config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "Замените %s на значение %s (настоятельно рекомендуется)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "Режим аутентификации установлен правильно" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "ОК" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "Вы используете ключ шифрования по умолчанию. Вам следует его изменить!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "Это также включит функцию «Оставаться в системе»." -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5629,15 +5631,15 @@ msgstr "" "'flossie1234555541'. Выберите безопасный и длинный пароль. (Настоятельно " "рекомендуется)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "Вы не используете ключ шифрования по умолчанию" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "Перенести пользовательский данные" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." @@ -5645,112 +5647,112 @@ msgstr "" "Здесь вы можете перенести существующие QSL-карточки и eQSL-карточки в новую " "папку userdata." -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "Модули" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Установленные" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Не установленные" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "Настройки" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Информация Git" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "Ветка" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "недоступно" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Коммит" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "Тэг" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "Последнее обновление" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "Проверить наличие новой версии" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "Обновить сейчас" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "Дата скачивания файла" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "Файл" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "Последнее обновление" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "Обновление DXCC из Clublog" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "Обновить" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "Скачать файл DOK" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "Скачать список пользователей LoTW" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "Скачать файл POTA" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "Скачать файл SCP" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "Скачать файл SOTA" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "Скачать файл WWFF" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "Обслуживание БД QSO" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5759,7 +5761,7 @@ msgstr[0] "База данных содержит %d QSO без привязан msgstr[1] "База данных содержит %d QSO без привязанного профиля QTH" msgstr[2] "База данных содержит %d QSO без привязанного профиля QTH" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5769,89 +5771,89 @@ msgstr[2] "База данных содержит %d QSO без привязан msgid "Station Callsign" msgstr "Позывной" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "Пожалуйста, отметьте QSO и привяжите их к существующему профилю QTH:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "Целевой профиль QTH" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "Переназначить" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" "Каждое QSO в вашей базе данных привязано к соответствующему профилю QTH" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "Всё ОК" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Болгарский" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Китайский (упрощённый)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Чешский" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Голландский" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "Английский" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Финский" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Французский" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Немецкий" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Греческий" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "Итальянский" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Польский" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Португальский" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Русский" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "Испанский" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "Шведский" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Турецкий" @@ -10919,6 +10921,19 @@ msgstr "Ваш позывной:" msgid "Submit Request" msgstr "Отправить запрос" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "Текущая версия миграции не является той, которой она должна быть. " +#~ "Перезагрузите эту страницу. Если это предупреждение сохраняется, ваша " +#~ "миграция, вероятно, заблокирована из-за предыдущего неудачного процесса. " +#~ "Проверьте папку %s на наличие файла с именем %s и удалите этот файл, " +#~ "чтобы принудительно запустить миграцию снова." + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF / UHF Century Club (VUCC)" diff --git a/application/locale/sv_SE/LC_MESSAGES/messages.po b/application/locale/sv_SE/LC_MESSAGES/messages.po index 24955e617..80094a51a 100644 --- a/application/locale/sv_SE/LC_MESSAGES/messages.po +++ b/application/locale/sv_SE/LC_MESSAGES/messages.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-09 13:26+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Swedish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5499,7 +5506,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5509,88 +5516,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/application/locale/tr_TR/LC_MESSAGES/messages.po b/application/locale/tr_TR/LC_MESSAGES/messages.po index ff841aae9..c69aeba26 100644 --- a/application/locale/tr_TR/LC_MESSAGES/messages.po +++ b/application/locale/tr_TR/LC_MESSAGES/messages.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-07-26 14:02+0000\n" "Last-Translator: Halil AYYILDIZ \n" "Language-Team: Turkish here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "Kurulmuş" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "Kurulu Değil" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5504,7 +5511,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5514,88 +5521,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "Bulgarca" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "Çince (Basitleştirilmiş)" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "Çek" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "Flemenkçe" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "İngilizce" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "Fince" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "Fransızca" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "Almanca" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "Yunanca" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "İtalyanca" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "Polonyaca" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "Portekizce" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "Rusça" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "İspanyolca" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "İsveççe" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "Türkçe" diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.mo b/application/locale/zh_CN/LC_MESSAGES/messages.mo index 6060c7da0..b13e21596 100644 Binary files a/application/locale/zh_CN/LC_MESSAGES/messages.mo and b/application/locale/zh_CN/LC_MESSAGES/messages.mo differ diff --git a/application/locale/zh_CN/LC_MESSAGES/messages.po b/application/locale/zh_CN/LC_MESSAGES/messages.po index ad74180c9..724378343 100644 --- a/application/locale/zh_CN/LC_MESSAGES/messages.po +++ b/application/locale/zh_CN/LC_MESSAGES/messages.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 13:04+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: 2024-08-04 19:40+0000\n" "Last-Translator: Karuru \n" "Language-Team: Chinese (Simplified) here for " +"more information." +msgstr "" + +#: application/views/debug/index.php:48 +#, php-format msgid "Current migration is %s" msgstr "当前迁移为 %s" -#: application/views/debug/index.php:48 +#: application/views/debug/index.php:49 #, php-format msgid "Migration should be %s" msgstr "迁移应该是 %s" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "环境" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "本站 QSO 总数量" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "服务器信息" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "服务器软件" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "PHP版本" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "已废弃" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "MySQL版本" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "Codeigniter 版本" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "文件夹权限" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "这验证了Wavelog使用的文件夹是否具有PHP的读写权限。" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "成功" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "失败" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "维护配置" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "您的认证方式已过时,可能存在风险隐患" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "请编辑您的%s文件:" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" "请前往 application/config 文件夹,根据 config.sample.php 修改成 config.php" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "将%s改为%s(强烈建议)" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "认证方式设置正确" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "好的" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "你使用了默认加密密钥。请修改它!" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "修改之后,“保持登录状态” 的功能将变为可用。" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " @@ -5468,133 +5472,133 @@ msgstr "" "将 %s 的值改为新的加密密钥,而非 “flossie1234555541”,选择一个安全的长密码。" "(强烈建议)" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "你没有使用默认加密密钥" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "迁移用户数据" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "您可以在此将现有的QSL卡和eQSL卡迁移到新的用户数据文件夹。" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "模块" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "已安装" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "未安装" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "设置" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "Git信息" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "分支" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "n/a" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "Commit" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "标签" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "上次抓取" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "检查新版本" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "现在升级" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "文件下载日期" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "文件" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "上次更新" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "DXCC 更新(ClubLog)" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "更新" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "下载 DOK 文件" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "下载 LoTW 用户状态" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "下载 POTA 文件" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "下载 SCP 文件" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "下载 SOTA 文件" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "下载 WWFF 文件" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "QSO-DB 维护" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" "The Database contains %d QSOs without a station-profile (location)" msgstr[0] "数据库中共有%d个没有台站信息(位置)的QSO" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5604,88 +5608,88 @@ msgstr[0] "数据库中共有%d个没有台站信息(位置)的QSO" msgid "Station Callsign" msgstr "电台呼号" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "请标记 QSO 并将其重新分配到现有的电台位置:" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "目标位置" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "重新分配" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "数据库中的所有 QSO 都有台站相关联" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "一切正常" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "保加利亚语" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "简体中文" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "捷克语" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "荷兰语" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "英语" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "芬兰语" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "法语" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "德语" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "希腊语" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "意大利语" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "波兰语" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "葡萄牙语" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "俄语" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "西班牙语" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "瑞典语" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "土耳其语" @@ -10550,6 +10554,17 @@ msgstr "您的呼号:" msgid "Submit Request" msgstr "提交请求" +#, php-format +#~ msgid "" +#~ "The current migration is not the version it is supposed to be. Reload " +#~ "this page. If this warning persists, your migration is probably locked " +#~ "due to a past failed process. Check the folder %s for a file called %s " +#~ "and remove this file to force the migration to run again." +#~ msgstr "" +#~ "当前的迁移版本不正确。请重新加载此页面。如果警告仍然存在,可能是由于之前的" +#~ "失败进程导致迁移被锁定。请检查文件夹%s中的%s文件并删除该文件以强制迁移重新" +#~ "运行。" + #~ msgid "VHF/UHF Century Club (VUCC)" #~ msgstr "VHF/UHF Century Club (VUCC)" diff --git a/application/views/debug/index.php b/application/views/debug/index.php index 22ec83cce..9e0642e2e 100644 --- a/application/views/debug/index.php +++ b/application/views/debug/index.php @@ -40,14 +40,15 @@ ". __("There is something wrong with your Migration in Database!") . ""); ?> - -
-
-

-


-

-
- +
+
+
+

+

here for more information."), "https://github.com/wavelog/wavelog/wiki/Migration-is-locked"); ?>

+


+

+
+ diff --git a/assets/lang_src/messages.pot b/assets/lang_src/messages.pot index a731d798f..ef028de0c 100644 --- a/assets/lang_src/messages.pot +++ b/assets/lang_src/messages.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: translations@wavelog.org\n" -"POT-Creation-Date: 2024-08-05 19:45+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -501,42 +501,42 @@ msgstr "" msgid "Number of days with QSOs each year" msgstr "" -#: application/controllers/Debug.php:91 +#: application/controllers/Debug.php:93 msgid "Debug" msgstr "" -#: application/controllers/Debug.php:130 +#: application/controllers/Debug.php:132 msgid "Migrate data now" msgstr "" -#: application/controllers/Debug.php:133 +#: application/controllers/Debug.php:135 msgid "Migration already done. Run again?" msgstr "" -#: application/controllers/Debug.php:137 +#: application/controllers/Debug.php:139 msgid "No data to migrate" msgstr "" -#: application/controllers/Debug.php:141 application/controllers/Debug.php:146 +#: application/controllers/Debug.php:143 application/controllers/Debug.php:148 msgid "No migration possible" msgstr "" -#: application/controllers/Debug.php:211 +#: application/controllers/Debug.php:213 msgid "Wavelog was updated successfully!" msgstr "" -#: application/controllers/Debug.php:229 +#: application/controllers/Debug.php:231 msgid "Selfupdate() not available. Check the Error Log." msgstr "" -#: application/controllers/Debug.php:273 +#: application/controllers/Debug.php:275 msgid "" "File Migration was successfull, but please check also manually. If " "everything seems right you can delete the folders 'assets/qslcard' and " "'images/eqsl_card_images'." msgstr "" -#: application/controllers/Debug.php:276 +#: application/controllers/Debug.php:278 msgid "File Migration failed. Please check the Error Log." msgstr "" @@ -908,7 +908,7 @@ msgstr "" #: application/views/contesting/index.php:203 #: application/views/continents/index.php:39 application/views/csv/index.php:42 #: application/views/dashboard/index.php:4 -#: application/views/debug/index.php:547 application/views/dxatlas/index.php:42 +#: application/views/debug/index.php:548 application/views/dxatlas/index.php:42 #: application/views/eqsl/analysis.php:39 #: application/views/eqsl/download.php:39 application/views/eqsl/result.php:36 #: application/views/eqslcard/index.php:29 @@ -1182,7 +1182,7 @@ msgstr "" #: application/views/contesting/index.php:202 #: application/views/continents/index.php:30 application/views/csv/index.php:31 #: application/views/dashboard/index.php:15 -#: application/views/debug/index.php:548 application/views/dxatlas/index.php:31 +#: application/views/debug/index.php:549 application/views/dxatlas/index.php:31 #: application/views/eqsl/download.php:41 #: application/views/eqslcard/index.php:32 #: application/views/gridmap/index.php:10 application/views/kml/index.php:19 @@ -2510,7 +2510,7 @@ msgstr "" #: application/views/contesting/index.php:42 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:147 -#: application/views/debug/index.php:544 application/views/eqsl/analysis.php:36 +#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:36 #: application/views/eqsl/download.php:36 application/views/eqsl/result.php:33 #: application/views/eqslcard/index.php:30 #: application/views/hamsat/index.php:28 @@ -2552,7 +2552,7 @@ msgstr "" #: application/views/contesting/index.php:47 #: application/views/contesting/index.php:200 #: application/views/dashboard/index.php:150 -#: application/views/debug/index.php:545 application/views/eqsl/analysis.php:37 +#: application/views/debug/index.php:546 application/views/eqsl/analysis.php:37 #: application/views/eqsl/download.php:37 application/views/eqsl/result.php:34 #: application/views/eqslcard/index.php:31 #: application/views/hamsat/index.php:29 application/views/oqrs/qsolist.php:8 @@ -2578,7 +2578,7 @@ msgstr "" #: application/views/awards/vucc/band.php:18 #: application/views/bandmap/list.php:111 #: application/views/contesting/index.php:201 -#: application/views/debug/index.php:546 application/views/debug/index.php:581 +#: application/views/debug/index.php:547 application/views/debug/index.php:582 #: application/views/dxcalendar/index.php:12 #: application/views/eqsl/analysis.php:38 #: application/views/eqsl/download.php:38 application/views/eqsl/result.php:35 @@ -2629,8 +2629,8 @@ msgid "Maximum file upload size is " msgstr "" #: application/views/adif/import.php:56 application/views/adif/import.php:220 -#: application/views/adif/import.php:258 application/views/debug/index.php:174 -#: application/views/debug/index.php:191 application/views/debug/index.php:536 +#: application/views/adif/import.php:258 application/views/debug/index.php:175 +#: application/views/debug/index.php:192 application/views/debug/index.php:537 #: application/views/hrdlog/export.php:25 #: application/views/hrdlog/export.php:74 #: application/views/interface_assets/footer.php:34 @@ -4797,10 +4797,10 @@ msgid "disabled" msgstr "" #: application/views/cron/index.php:79 application/views/cron/index.php:81 -#: application/views/cron/index.php:83 application/views/debug/index.php:493 -#: application/views/debug/index.php:499 application/views/debug/index.php:504 -#: application/views/debug/index.php:509 application/views/debug/index.php:514 -#: application/views/debug/index.php:519 application/views/debug/index.php:524 +#: application/views/cron/index.php:83 application/views/debug/index.php:494 +#: application/views/debug/index.php:500 application/views/debug/index.php:505 +#: application/views/debug/index.php:510 application/views/debug/index.php:515 +#: application/views/debug/index.php:520 application/views/debug/index.php:525 msgid "never" msgstr "" @@ -5253,242 +5253,249 @@ msgstr "" #, php-format msgid "" "The current migration is not the version it is supposed to be. Reload this " -"page. If this warning persists, your migration is probably locked due to a " -"past failed process. Check the folder %s for a file called %s and remove " -"this file to force the migration to run again." +"page after %s seconds. If this warning persists, your migration is likely " +"locked due to a previously failed process. Delete the file %s to force the " +"migration to run again." msgstr "" #: application/views/debug/index.php:47 #, php-format -msgid "Current migration is %s" +msgid "" +"Check this wiki article here for " +"more information." msgstr "" #: application/views/debug/index.php:48 #, php-format +msgid "Current migration is %s" +msgstr "" + +#: application/views/debug/index.php:49 +#, php-format msgid "Migration should be %s" msgstr "" -#: application/views/debug/index.php:53 +#: application/views/debug/index.php:54 msgid "Environment" msgstr "" -#: application/views/debug/index.php:61 +#: application/views/debug/index.php:62 msgid "Total QSO on this instance" msgstr "" -#: application/views/debug/index.php:69 +#: application/views/debug/index.php:70 msgid "Server Information" msgstr "" -#: application/views/debug/index.php:73 +#: application/views/debug/index.php:74 msgid "Server Software" msgstr "" -#: application/views/debug/index.php:78 +#: application/views/debug/index.php:79 msgid "PHP Version" msgstr "" -#: application/views/debug/index.php:84 +#: application/views/debug/index.php:85 msgid "Deprecated" msgstr "" -#: application/views/debug/index.php:91 +#: application/views/debug/index.php:92 msgid "MySQL Version" msgstr "" -#: application/views/debug/index.php:95 +#: application/views/debug/index.php:96 msgid "Codeigniter Version" msgstr "" -#: application/views/debug/index.php:103 +#: application/views/debug/index.php:104 msgid "Folder Permissions" msgstr "" -#: application/views/debug/index.php:105 +#: application/views/debug/index.php:106 msgid "" "This verifies that the folders used by Wavelog have read and write " "permissions by PHP." msgstr "" -#: application/views/debug/index.php:111 application/views/debug/index.php:122 -#: application/views/debug/index.php:133 application/views/debug/index.php:144 -#: application/views/debug/index.php:156 +#: application/views/debug/index.php:112 application/views/debug/index.php:123 +#: application/views/debug/index.php:134 application/views/debug/index.php:145 +#: application/views/debug/index.php:157 msgid "Success" msgstr "" -#: application/views/debug/index.php:113 application/views/debug/index.php:124 -#: application/views/debug/index.php:135 application/views/debug/index.php:146 -#: application/views/debug/index.php:158 +#: application/views/debug/index.php:114 application/views/debug/index.php:125 +#: application/views/debug/index.php:136 application/views/debug/index.php:147 +#: application/views/debug/index.php:159 msgid "Failed" msgstr "" -#: application/views/debug/index.php:168 +#: application/views/debug/index.php:169 msgid "Config Maintenance" msgstr "" -#: application/views/debug/index.php:174 +#: application/views/debug/index.php:175 msgid "Your authentication mode is outdated and possibly unsafe" msgstr "" -#: application/views/debug/index.php:176 application/views/debug/index.php:193 +#: application/views/debug/index.php:177 application/views/debug/index.php:194 #, php-format msgid "Please edit your %s File:" msgstr "" -#: application/views/debug/index.php:177 +#: application/views/debug/index.php:178 msgid "" "Go to your application/config Folder and compare config.sample.php with your " "config.php" msgstr "" -#: application/views/debug/index.php:178 +#: application/views/debug/index.php:179 #, php-format msgid "Change %s to the value %s (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:184 +#: application/views/debug/index.php:185 msgid "Authentication Mode is set correctly" msgstr "" -#: application/views/debug/index.php:184 application/views/debug/index.php:201 +#: application/views/debug/index.php:185 application/views/debug/index.php:202 msgid "Ok" msgstr "" -#: application/views/debug/index.php:191 +#: application/views/debug/index.php:192 msgid "You use the default encryption key. You should change it!" msgstr "" -#: application/views/debug/index.php:194 +#: application/views/debug/index.php:195 msgid "This will also enable the 'Keep me logged in' feature." msgstr "" -#: application/views/debug/index.php:195 +#: application/views/debug/index.php:196 #, php-format msgid "" "Change the value of %s to a new encryption key other then " "'flossie1234555541'. Choose a safe and long password. (Strongly recommended)" msgstr "" -#: application/views/debug/index.php:201 +#: application/views/debug/index.php:202 msgid "You do not use the default encryption key" msgstr "" -#: application/views/debug/index.php:208 +#: application/views/debug/index.php:209 msgid "Migrate Userdata" msgstr "" -#: application/views/debug/index.php:210 +#: application/views/debug/index.php:211 msgid "" "Here you can migrate existing QSL cards and eQSL cards to the new userdata " "folder." msgstr "" -#: application/views/debug/index.php:223 +#: application/views/debug/index.php:224 msgid "Modules" msgstr "" -#: application/views/debug/index.php:229 application/views/debug/index.php:240 -#: application/views/debug/index.php:251 application/views/debug/index.php:262 -#: application/views/debug/index.php:273 +#: application/views/debug/index.php:230 application/views/debug/index.php:241 +#: application/views/debug/index.php:252 application/views/debug/index.php:263 +#: application/views/debug/index.php:274 msgid "Installed" msgstr "" -#: application/views/debug/index.php:231 application/views/debug/index.php:242 -#: application/views/debug/index.php:253 application/views/debug/index.php:264 -#: application/views/debug/index.php:275 +#: application/views/debug/index.php:232 application/views/debug/index.php:243 +#: application/views/debug/index.php:254 application/views/debug/index.php:265 +#: application/views/debug/index.php:276 msgid "Not Installed" msgstr "" -#: application/views/debug/index.php:282 application/views/qso/index.php:654 +#: application/views/debug/index.php:283 application/views/qso/index.php:654 msgid "Settings" msgstr "" -#: application/views/debug/index.php:411 +#: application/views/debug/index.php:412 msgid "Git Information" msgstr "" -#: application/views/debug/index.php:415 +#: application/views/debug/index.php:416 msgid "Branch" msgstr "" -#: application/views/debug/index.php:426 application/views/debug/index.php:437 -#: application/views/debug/index.php:447 +#: application/views/debug/index.php:427 application/views/debug/index.php:438 +#: application/views/debug/index.php:448 msgid "n/a" msgstr "" -#: application/views/debug/index.php:432 +#: application/views/debug/index.php:433 msgid "Commit" msgstr "" -#: application/views/debug/index.php:442 +#: application/views/debug/index.php:443 msgid "Tag" msgstr "" -#: application/views/debug/index.php:452 +#: application/views/debug/index.php:453 msgid "Last Fetch" msgstr "" -#: application/views/debug/index.php:464 +#: application/views/debug/index.php:465 msgid "Check for new version" msgstr "" -#: application/views/debug/index.php:465 +#: application/views/debug/index.php:466 msgid "Update now" msgstr "" -#: application/views/debug/index.php:483 +#: application/views/debug/index.php:484 msgid "File download date" msgstr "" -#: application/views/debug/index.php:487 +#: application/views/debug/index.php:488 msgid "File" msgstr "" -#: application/views/debug/index.php:488 +#: application/views/debug/index.php:489 msgid "Last update" msgstr "" -#: application/views/debug/index.php:492 +#: application/views/debug/index.php:493 msgid "DXCC update from Club Log" msgstr "" -#: application/views/debug/index.php:494 application/views/debug/index.php:500 -#: application/views/debug/index.php:505 application/views/debug/index.php:510 -#: application/views/debug/index.php:515 application/views/debug/index.php:520 -#: application/views/debug/index.php:525 +#: application/views/debug/index.php:495 application/views/debug/index.php:501 +#: application/views/debug/index.php:506 application/views/debug/index.php:511 +#: application/views/debug/index.php:516 application/views/debug/index.php:521 +#: application/views/debug/index.php:526 #: application/views/station_profile/edit.php:22 msgid "Update" msgstr "" -#: application/views/debug/index.php:498 +#: application/views/debug/index.php:499 msgid "DOK file download" msgstr "" -#: application/views/debug/index.php:503 +#: application/views/debug/index.php:504 msgid "LoTW users download" msgstr "" -#: application/views/debug/index.php:508 +#: application/views/debug/index.php:509 msgid "POTA file download" msgstr "" -#: application/views/debug/index.php:513 +#: application/views/debug/index.php:514 msgid "SCP file download" msgstr "" -#: application/views/debug/index.php:518 +#: application/views/debug/index.php:519 msgid "SOTA file download" msgstr "" -#: application/views/debug/index.php:523 +#: application/views/debug/index.php:524 msgid "WWFF file download" msgstr "" -#: application/views/debug/index.php:532 +#: application/views/debug/index.php:533 msgid "QSO-DB Maintenance" msgstr "" -#: application/views/debug/index.php:536 +#: application/views/debug/index.php:537 #, php-format msgid "The Database contains %d QSO without a station-profile (location)" msgid_plural "" @@ -5496,7 +5503,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: application/views/debug/index.php:549 +#: application/views/debug/index.php:550 #: application/views/public_search/result.php:17 #: application/views/station_profile/create.php:57 #: application/views/station_profile/edit.php:46 @@ -5506,88 +5513,88 @@ msgstr[1] "" msgid "Station Callsign" msgstr "" -#: application/views/debug/index.php:574 +#: application/views/debug/index.php:575 msgid "Please mark QSOs and reassign them to an existing station location:" msgstr "" -#: application/views/debug/index.php:582 +#: application/views/debug/index.php:583 msgctxt "Stationlocation" msgid "Target Location" msgstr "" -#: application/views/debug/index.php:583 application/views/debug/index.php:594 +#: application/views/debug/index.php:584 application/views/debug/index.php:595 msgid "Reassign" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Every QSO in your Database is assigned to a station-profile (location)" msgstr "" -#: application/views/debug/index.php:603 +#: application/views/debug/index.php:604 msgid "Everything ok" msgstr "" -#: application/views/debug/index.php:628 +#: application/views/debug/index.php:629 msgid "Bulgarian" msgstr "" -#: application/views/debug/index.php:629 +#: application/views/debug/index.php:630 msgid "Chinese (Simplified)" msgstr "" -#: application/views/debug/index.php:630 +#: application/views/debug/index.php:631 msgid "Czech" msgstr "" -#: application/views/debug/index.php:631 +#: application/views/debug/index.php:632 msgid "Dutch" msgstr "" -#: application/views/debug/index.php:632 +#: application/views/debug/index.php:633 msgid "English" msgstr "" -#: application/views/debug/index.php:633 +#: application/views/debug/index.php:634 msgid "Finnish" msgstr "" -#: application/views/debug/index.php:634 +#: application/views/debug/index.php:635 msgid "French" msgstr "" -#: application/views/debug/index.php:635 +#: application/views/debug/index.php:636 msgid "German" msgstr "" -#: application/views/debug/index.php:636 +#: application/views/debug/index.php:637 msgid "Greek" msgstr "" -#: application/views/debug/index.php:637 +#: application/views/debug/index.php:638 msgid "Italian" msgstr "" -#: application/views/debug/index.php:638 +#: application/views/debug/index.php:639 msgid "Polish" msgstr "" -#: application/views/debug/index.php:639 +#: application/views/debug/index.php:640 msgid "Portuguese" msgstr "" -#: application/views/debug/index.php:640 +#: application/views/debug/index.php:641 msgid "Russian" msgstr "" -#: application/views/debug/index.php:641 +#: application/views/debug/index.php:642 msgid "Spanish" msgstr "" -#: application/views/debug/index.php:642 +#: application/views/debug/index.php:643 msgid "Swedish" msgstr "" -#: application/views/debug/index.php:643 +#: application/views/debug/index.php:644 msgid "Turkish" msgstr "" diff --git a/install/includes/gettext/lang_src/installer.pot b/install/includes/gettext/lang_src/installer.pot index ffe2399b8..f94d66887 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-08-05 19:45+0000\n" +"POT-Creation-Date: 2024-08-06 09:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php index d08f78b5e..256748747 100644 --- a/system/libraries/Migration.php +++ b/system/libraries/Migration.php @@ -91,7 +91,16 @@ class CI_Migration { * * @var string */ - protected $_migration_lockfile = APPPATH . 'cache/.migration_running'; + protected $_migration_lockfile = NULL; + + /** + * Max Age of the migration lockfile + * + * @var int + */ + + protected $_migration_lf_maxage = NULL; + /** * Whether to automatically run migrations @@ -147,6 +156,12 @@ class CI_Migration { // Add trailing slash if not set $this->_migration_path = rtrim($this->_migration_path, '/').'/'; + // If not set, set it + $this->_migration_lockfile !== '' OR $this->_migration_lockfile = '/tmp/.migration_running'; + + // selockfile maxage if not set in config file. Fallback is 480 seconds. + $this->_migration_lf_maxage !== '' OR $this->_migration_lf_maxage = 480; + // Load migration language $this->lang->load('migration'); @@ -341,7 +356,27 @@ class CI_Migration { } } else { - log_message('debug', 'Migration process is currently locked. Second migration attempt ignored.'); + + log_message('debug', 'There is a lockfile for migrations. Checking the age...'); + + // Get the file creation date + $lockfile_ctime = filemtime($this->_migration_lockfile); + + //compare to the current time + $tdiff = time() - $lockfile_ctime; + log_message('debug', 'Migration lockfile lifetime in seconds: '.$tdiff.'/'.$this->_migration_lf_maxage); + + // if the file is older then the configured limit, delete it + if ($tdiff > $this->_migration_lf_maxage) { + + unlink($this->_migration_lockfile); + log_message('debug', 'Deleted migration lockfile because it was older then maxage.'); + + } else { + + log_message('debug', 'Migration process is currently locked. Second migration attempt ignored.'); + + } } return $current_version;