mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
@@ -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 */
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Bulgarian <https://translate.wavelog.org/projects/wavelog/"
|
||||
@@ -502,42 +502,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 ""
|
||||
|
||||
@@ -909,7 +909,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
|
||||
@@ -1183,7 +1183,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
|
||||
@@ -2511,7 +2511,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
|
||||
@@ -2553,7 +2553,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
|
||||
@@ -2579,7 +2579,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
|
||||
@@ -2630,8 +2630,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
|
||||
@@ -4798,10 +4798,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 ""
|
||||
|
||||
@@ -5254,242 +5254,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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 <michal.siman@gmail.com>\n"
|
||||
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/"
|
||||
"main-translation/cs/>\n"
|
||||
"Language-Team: Czech <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
"translation/cs/>\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 <u><a href='%s' target='_blank'>here</a></u> for "
|
||||
"more information."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "You are using"
|
||||
#~ msgstr "Je využito"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -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 <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -510,35 +510,35 @@ msgstr "Dashboard"
|
||||
msgid "Number of days with QSOs each year"
|
||||
msgstr "Anzahl der Tage mit QSOs pro Jahr"
|
||||
|
||||
#: application/controllers/Debug.php:91
|
||||
#: application/controllers/Debug.php:93
|
||||
msgid "Debug"
|
||||
msgstr "Debug"
|
||||
|
||||
#: application/controllers/Debug.php:130
|
||||
#: application/controllers/Debug.php:132
|
||||
msgid "Migrate data now"
|
||||
msgstr "Daten jetzt migrieren"
|
||||
|
||||
#: application/controllers/Debug.php:133
|
||||
#: application/controllers/Debug.php:135
|
||||
msgid "Migration already done. Run again?"
|
||||
msgstr "Migration wurde bereits durchgeführt. Nochmal ausführen?"
|
||||
|
||||
#: application/controllers/Debug.php:137
|
||||
#: application/controllers/Debug.php:139
|
||||
msgid "No data to migrate"
|
||||
msgstr "Keine Daten die migriert werden müssen"
|
||||
|
||||
#: 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 "Migration nicht möglich"
|
||||
|
||||
#: application/controllers/Debug.php:211
|
||||
#: application/controllers/Debug.php:213
|
||||
msgid "Wavelog was updated successfully!"
|
||||
msgstr "Wavelog wurde erfolgreich aktualisiert!"
|
||||
|
||||
#: application/controllers/Debug.php:229
|
||||
#: application/controllers/Debug.php:231
|
||||
msgid "Selfupdate() not available. Check the Error Log."
|
||||
msgstr "Selfupdate() nicht verfügbar. Überprüfe das Fehlerprotokoll."
|
||||
|
||||
#: 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 "
|
||||
@@ -548,7 +548,7 @@ msgstr ""
|
||||
"Sofern keine Probleme ersichtlich sind, kannst du die beiden Ordner 'assets/"
|
||||
"qslcard' und 'images/eqsl_card_images' löschen."
|
||||
|
||||
#: application/controllers/Debug.php:276
|
||||
#: application/controllers/Debug.php:278
|
||||
msgid "File Migration failed. Please check the Error Log."
|
||||
msgstr "Datenmigration fehlgeschlagen! Bitte das Fehlerprotokoll prüfen."
|
||||
|
||||
@@ -926,7 +926,7 @@ msgstr "Clublog"
|
||||
#: 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
|
||||
@@ -1200,7 +1200,7 @@ msgstr "Distanz"
|
||||
#: 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
|
||||
@@ -2553,7 +2553,7 @@ msgstr "Die Informationen zum DOK im Logbuch weichen von denen im DCL ab"
|
||||
#: 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
|
||||
@@ -2595,7 +2595,7 @@ msgstr "Datum"
|
||||
#: 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
|
||||
@@ -2621,7 +2621,7 @@ msgstr "Zeit"
|
||||
#: 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
|
||||
@@ -2672,8 +2672,8 @@ msgid "Maximum file upload size is "
|
||||
msgstr "Die max. Dateigröße für Uploads beträgt "
|
||||
|
||||
#: 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
|
||||
@@ -5054,10 +5054,10 @@ msgid "disabled"
|
||||
msgstr "ausgeschaltet"
|
||||
|
||||
#: 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 "nie"
|
||||
|
||||
@@ -5523,63 +5523,65 @@ msgstr "Migration ist veraltet und gesperrt!"
|
||||
#, 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 ""
|
||||
"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."
|
||||
|
||||
#: application/views/debug/index.php:47
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Check this wiki article <u><a href='%s' target='_blank'>here</a></u> 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)"
|
||||
|
||||
|
||||
@@ -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 <hb9hil@wavelog.org>\n"
|
||||
"Language-Team: Greek <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -503,42 +503,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 ""
|
||||
|
||||
@@ -912,7 +912,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
|
||||
@@ -1186,7 +1186,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
|
||||
@@ -2514,7 +2514,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
|
||||
@@ -2556,7 +2556,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
|
||||
@@ -2582,7 +2582,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
|
||||
@@ -2633,8 +2633,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
|
||||
@@ -4801,10 +4801,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 ""
|
||||
|
||||
@@ -5257,242 +5257,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Spanish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -503,42 +503,42 @@ msgstr "Panel de control"
|
||||
msgid "Number of days with QSOs each year"
|
||||
msgstr "Número de días con QSOs cada año"
|
||||
|
||||
#: application/controllers/Debug.php:91
|
||||
#: application/controllers/Debug.php:93
|
||||
msgid "Debug"
|
||||
msgstr "Depuración"
|
||||
|
||||
#: 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 ""
|
||||
|
||||
@@ -912,7 +912,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
|
||||
@@ -1186,7 +1186,7 @@ msgstr "Distancia"
|
||||
#: 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
|
||||
@@ -2520,7 +2520,7 @@ msgstr "Hay datos diferentes para DOKs en su libro comparados con DCL"
|
||||
#: 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
|
||||
@@ -2562,7 +2562,7 @@ msgstr "Fecha"
|
||||
#: 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
|
||||
@@ -2588,7 +2588,7 @@ msgstr "Tiempo Test"
|
||||
#: 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
|
||||
@@ -2639,8 +2639,8 @@ msgid "Maximum file upload size is "
|
||||
msgstr "El tamaño máximo del archivo subido es "
|
||||
|
||||
#: 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
|
||||
@@ -4834,10 +4834,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 ""
|
||||
|
||||
@@ -5292,242 +5292,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Finnish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -502,42 +502,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 ""
|
||||
|
||||
@@ -909,7 +909,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
|
||||
@@ -1183,7 +1183,7 @@ msgstr "Etäisyys"
|
||||
#: 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
|
||||
@@ -2511,7 +2511,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
|
||||
@@ -2553,7 +2553,7 @@ msgstr "Päivä"
|
||||
#: 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
|
||||
@@ -2579,7 +2579,7 @@ msgstr "Aika"
|
||||
#: 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
|
||||
@@ -2630,8 +2630,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
|
||||
@@ -4798,10 +4798,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 ""
|
||||
|
||||
@@ -5254,242 +5254,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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)\" <kikosgc@users.noreply.github.com>\n"
|
||||
"Language-Team: French <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -506,35 +506,35 @@ msgstr "Tableau de bord"
|
||||
msgid "Number of days with QSOs each year"
|
||||
msgstr "Nombre de jours par an avec les QSO"
|
||||
|
||||
#: application/controllers/Debug.php:91
|
||||
#: application/controllers/Debug.php:93
|
||||
msgid "Debug"
|
||||
msgstr "Debug"
|
||||
|
||||
#: application/controllers/Debug.php:130
|
||||
#: application/controllers/Debug.php:132
|
||||
msgid "Migrate data now"
|
||||
msgstr "Migrer les données maintenant"
|
||||
|
||||
#: application/controllers/Debug.php:133
|
||||
#: application/controllers/Debug.php:135
|
||||
msgid "Migration already done. Run again?"
|
||||
msgstr "Migration déjà effectuée. Recommencer ?"
|
||||
|
||||
#: application/controllers/Debug.php:137
|
||||
#: application/controllers/Debug.php:139
|
||||
msgid "No data to migrate"
|
||||
msgstr "Aucune donnée à migrer"
|
||||
|
||||
#: 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 "Aucune migration possible"
|
||||
|
||||
#: 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 "
|
||||
@@ -544,7 +544,7 @@ msgstr ""
|
||||
"manuellement. Si tout vous semble correct, vous pouvez supprimer les "
|
||||
"dossiers 'assets/qslcard' et 'images/eqsl_card_images'."
|
||||
|
||||
#: application/controllers/Debug.php:276
|
||||
#: application/controllers/Debug.php:278
|
||||
msgid "File Migration failed. Please check the Error Log."
|
||||
msgstr ""
|
||||
"La migration des fichiers a échoué. Veuillez vérifier le journal des erreurs."
|
||||
@@ -925,7 +925,7 @@ msgstr "Clublog"
|
||||
#: 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
|
||||
@@ -1199,7 +1199,7 @@ msgstr "Distance"
|
||||
#: 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
|
||||
@@ -2543,7 +2543,7 @@ msgstr "Différence de données DOK entre votre journal de travail et DCL"
|
||||
#: 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
|
||||
@@ -2585,7 +2585,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
|
||||
@@ -2611,7 +2611,7 @@ msgstr "Heure"
|
||||
#: 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
|
||||
@@ -2662,8 +2662,8 @@ msgid "Maximum file upload size is "
|
||||
msgstr "La taille maximum d'un fichier à télécharger est "
|
||||
|
||||
#: 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
|
||||
@@ -4856,10 +4856,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 ""
|
||||
|
||||
@@ -5315,242 +5315,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Italian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -502,42 +502,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 ""
|
||||
|
||||
@@ -911,7 +911,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
|
||||
@@ -1185,7 +1185,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
|
||||
@@ -2513,7 +2513,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
|
||||
@@ -2555,7 +2555,7 @@ msgstr "Data"
|
||||
#: 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
|
||||
@@ -2581,7 +2581,7 @@ msgstr "Orario"
|
||||
#: 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
|
||||
@@ -2632,8 +2632,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
|
||||
@@ -4800,10 +4800,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 ""
|
||||
|
||||
@@ -5256,242 +5256,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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 <pa7dx@yahoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -503,42 +503,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 ""
|
||||
|
||||
@@ -910,7 +910,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
|
||||
@@ -1184,7 +1184,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
|
||||
@@ -2512,7 +2512,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
|
||||
@@ -2554,7 +2554,7 @@ msgstr "Datum"
|
||||
#: 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
|
||||
@@ -2580,7 +2580,7 @@ msgstr "Tijd"
|
||||
#: 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
|
||||
@@ -2631,8 +2631,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
|
||||
@@ -4799,10 +4799,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 ""
|
||||
|
||||
@@ -5255,242 +5255,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Polish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -503,42 +503,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 ""
|
||||
|
||||
@@ -911,7 +911,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
|
||||
@@ -1185,7 +1185,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
|
||||
@@ -2513,7 +2513,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
|
||||
@@ -2555,7 +2555,7 @@ msgstr "Data"
|
||||
#: 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
|
||||
@@ -2581,7 +2581,7 @@ msgstr "Godzina"
|
||||
#: 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
|
||||
@@ -2632,8 +2632,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
|
||||
@@ -4800,10 +4800,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 ""
|
||||
|
||||
@@ -5257,242 +5257,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -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)\" <kikosgc@users.noreply.github.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) <https://translate.wavelog.org/projects/"
|
||||
@@ -505,35 +505,35 @@ msgstr "Dashboard"
|
||||
msgid "Number of days with QSOs each year"
|
||||
msgstr "Número de dias com QSOs por ano"
|
||||
|
||||
#: application/controllers/Debug.php:91
|
||||
#: application/controllers/Debug.php:93
|
||||
msgid "Debug"
|
||||
msgstr "Debug"
|
||||
|
||||
#: application/controllers/Debug.php:130
|
||||
#: application/controllers/Debug.php:132
|
||||
msgid "Migrate data now"
|
||||
msgstr "Migrar dados agora"
|
||||
|
||||
#: application/controllers/Debug.php:133
|
||||
#: application/controllers/Debug.php:135
|
||||
msgid "Migration already done. Run again?"
|
||||
msgstr "A migração já foi efectuada. Executar novamente?"
|
||||
|
||||
#: application/controllers/Debug.php:137
|
||||
#: application/controllers/Debug.php:139
|
||||
msgid "No data to migrate"
|
||||
msgstr "Não há dados a migrar"
|
||||
|
||||
#: 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 "Não é possível efetuar a migração"
|
||||
|
||||
#: application/controllers/Debug.php:211
|
||||
#: application/controllers/Debug.php:213
|
||||
msgid "Wavelog was updated successfully!"
|
||||
msgstr "Wavelog foi atualizado com sucesso!"
|
||||
|
||||
#: application/controllers/Debug.php:229
|
||||
#: application/controllers/Debug.php:231
|
||||
msgid "Selfupdate() not available. Check the Error Log."
|
||||
msgstr "Selfupdate() não disponível. Verifique o log de Erros."
|
||||
|
||||
#: 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 "
|
||||
@@ -543,7 +543,7 @@ msgstr ""
|
||||
"Se tudo parecer correto, pode apagar as pastas 'assets/qslcard' e 'images/"
|
||||
"eqsl_card_images'."
|
||||
|
||||
#: application/controllers/Debug.php:276
|
||||
#: application/controllers/Debug.php:278
|
||||
msgid "File Migration failed. Please check the Error Log."
|
||||
msgstr "A migração de ficheiros falhou. Verifique o registo de erros."
|
||||
|
||||
@@ -922,7 +922,7 @@ msgstr "Clublog"
|
||||
#: 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
|
||||
@@ -1196,7 +1196,7 @@ msgstr "Distância"
|
||||
#: 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
|
||||
@@ -2552,7 +2552,7 @@ msgstr "Há dados diferentes para DOK no teu log em comparação com DCL."
|
||||
#: 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
|
||||
@@ -2594,7 +2594,7 @@ msgstr "Data"
|
||||
#: 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
|
||||
@@ -2620,7 +2620,7 @@ msgstr "Tempo"
|
||||
#: 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
|
||||
@@ -2671,8 +2671,8 @@ msgid "Maximum file upload size is "
|
||||
msgstr "O tamanho máximo de upload de ficheiro é "
|
||||
|
||||
#: 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
|
||||
@@ -5042,10 +5042,10 @@ msgid "disabled"
|
||||
msgstr "desativado"
|
||||
|
||||
#: 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 "nunca"
|
||||
|
||||
@@ -5509,62 +5509,65 @@ msgstr "A migração está desatualizada e bloqueada!"
|
||||
#, 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 ""
|
||||
"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."
|
||||
|
||||
#: application/views/debug/index.php:47
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Check this wiki article <u><a href='%s' target='_blank'>here</a></u> 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)"
|
||||
|
||||
Binary file not shown.
@@ -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 <r1blh@yandex.ru>\n"
|
||||
"Language-Team: Russian <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -506,35 +506,35 @@ msgstr "Панель управления"
|
||||
msgid "Number of days with QSOs each year"
|
||||
msgstr "Количество дней с QSO в каждом году"
|
||||
|
||||
#: 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 "Wavelog был успешно обновлен!"
|
||||
|
||||
#: application/controllers/Debug.php:229
|
||||
#: application/controllers/Debug.php:231
|
||||
msgid "Selfupdate() not available. Check the Error Log."
|
||||
msgstr "Selfupdate() недоступен. Проверьте журнал ошибок."
|
||||
|
||||
#: 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 "
|
||||
@@ -544,7 +544,7 @@ msgstr ""
|
||||
"Если все в порядке, можете удалить папки 'assets/qslcard' и 'images/"
|
||||
"eqsl_card_images'."
|
||||
|
||||
#: application/controllers/Debug.php:276
|
||||
#: application/controllers/Debug.php:278
|
||||
msgid "File Migration failed. Please check the Error Log."
|
||||
msgstr ""
|
||||
"Не удалось выполнить миграцию файлов. Пожалуйста, проверьте журнал ошибок."
|
||||
@@ -924,7 +924,7 @@ msgstr "Clublog"
|
||||
#: 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
|
||||
@@ -1198,7 +1198,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
|
||||
@@ -2545,7 +2545,7 @@ msgstr "Данные DOK в вашем логе отличаются от DCL"
|
||||
#: 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
|
||||
@@ -2587,7 +2587,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
|
||||
@@ -2613,7 +2613,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
|
||||
@@ -2664,8 +2664,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
|
||||
@@ -5033,10 +5033,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 "никогда"
|
||||
|
||||
@@ -5501,63 +5501,65 @@ 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 ""
|
||||
"Текущая версия миграции не является той, которой она должна быть. "
|
||||
"Перезагрузите эту страницу. Если это предупреждение сохраняется, ваша "
|
||||
"миграция, вероятно, заблокирована из-за предыдущего неудачного процесса. "
|
||||
"Проверьте папку %s на наличие файла с именем %s и удалите этот файл, чтобы "
|
||||
"принудительно запустить миграцию снова."
|
||||
|
||||
#: application/views/debug/index.php:47
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Check this wiki article <u><a href='%s' target='_blank'>here</a></u> 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)"
|
||||
|
||||
|
||||
@@ -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 <noreply@weblate.org>\n"
|
||||
"Language-Team: Swedish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -502,42 +502,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 ""
|
||||
|
||||
@@ -911,7 +911,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
|
||||
@@ -1185,7 +1185,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
|
||||
@@ -2513,7 +2513,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
|
||||
@@ -2555,7 +2555,7 @@ msgstr "Datum"
|
||||
#: 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
|
||||
@@ -2581,7 +2581,7 @@ msgstr "Tid"
|
||||
#: 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
|
||||
@@ -2632,8 +2632,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
|
||||
@@ -4800,10 +4800,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 ""
|
||||
|
||||
@@ -5256,242 +5256,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 <u><a href='%s' target='_blank'>here</a></u> 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 ""
|
||||
|
||||
|
||||
@@ -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 <ta2lghalil@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://translate.wavelog.org/projects/wavelog/main-"
|
||||
@@ -503,35 +503,35 @@ msgstr "Kontrol Paneli"
|
||||
msgid "Number of days with QSOs each year"
|
||||
msgstr "Her yıl QSO'lu gün sayısı"
|
||||
|
||||
#: application/controllers/Debug.php:91
|
||||
#: application/controllers/Debug.php:93
|
||||
msgid "Debug"
|
||||
msgstr "Hata ayıklama"
|
||||
|
||||
#: application/controllers/Debug.php:130
|
||||
#: application/controllers/Debug.php:132
|
||||
msgid "Migrate data now"
|
||||
msgstr "Verileri şimdi taşıyın"
|
||||
|
||||
#: application/controllers/Debug.php:133
|
||||
#: application/controllers/Debug.php:135
|
||||
msgid "Migration already done. Run again?"
|
||||
msgstr "Görev zaten tamamlandı. Tekrar çalıştırılsın mı?"
|
||||
|
||||
#: application/controllers/Debug.php:137
|
||||
#: application/controllers/Debug.php:139
|
||||
msgid "No data to migrate"
|
||||
msgstr "Taşınacak veri yok"
|
||||
|
||||
#: 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 "Taşınma mümkün değil"
|
||||
|
||||
#: 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 "
|
||||
@@ -541,7 +541,7 @@ msgstr ""
|
||||
"edin. Her şey doğru görünüyorsa 'assets/qslcard' ve 'images/"
|
||||
"eqsl_card_images' klasörlerini silebilirsiniz."
|
||||
|
||||
#: application/controllers/Debug.php:276
|
||||
#: application/controllers/Debug.php:278
|
||||
msgid "File Migration failed. Please check the Error Log."
|
||||
msgstr ""
|
||||
"Dosya Taşıma işlemi başarısız oldu. Lütfen Hata Günlüğünü kontrol edin."
|
||||
@@ -916,7 +916,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
|
||||
@@ -1190,7 +1190,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
|
||||
@@ -2518,7 +2518,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
|
||||
@@ -2560,7 +2560,7 @@ msgstr "Tarih"
|
||||
#: 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
|
||||
@@ -2586,7 +2586,7 @@ msgstr "Saat"
|
||||
#: 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
|
||||
@@ -2637,8 +2637,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
|
||||
@@ -4805,10 +4805,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 ""
|
||||
|
||||
@@ -5261,242 +5261,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 <u><a href='%s' target='_blank'>here</a></u> 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"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -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 <karuru@aerodefense.co.uk>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://translate.wavelog.org/projects/"
|
||||
@@ -504,35 +504,35 @@ msgstr "仪表板"
|
||||
msgid "Number of days with QSOs each year"
|
||||
msgstr "本年QSO总数"
|
||||
|
||||
#: application/controllers/Debug.php:91
|
||||
#: application/controllers/Debug.php:93
|
||||
msgid "Debug"
|
||||
msgstr "Debug"
|
||||
|
||||
#: 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 "Wavelog已更新成功!"
|
||||
|
||||
#: application/controllers/Debug.php:229
|
||||
#: application/controllers/Debug.php:231
|
||||
msgid "Selfupdate() not available. Check the Error Log."
|
||||
msgstr "Selfupdate()不可用。请检查错误日志。"
|
||||
|
||||
#: 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 "
|
||||
@@ -541,7 +541,7 @@ msgstr ""
|
||||
"文件迁移成功,请手动检查是否完整。如果一切正常,您可以删除文件夹“assets/"
|
||||
"qslcard”和“images/eqsl_card_images”。"
|
||||
|
||||
#: application/controllers/Debug.php:276
|
||||
#: application/controllers/Debug.php:278
|
||||
msgid "File Migration failed. Please check the Error Log."
|
||||
msgstr "文件迁移失败。请检查错误日志。"
|
||||
|
||||
@@ -912,7 +912,7 @@ msgstr "Clublog"
|
||||
#: 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
|
||||
@@ -1186,7 +1186,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
|
||||
@@ -2516,7 +2516,7 @@ msgstr "与 DCL 相比,日志中 DOK 的数据不同"
|
||||
#: 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
|
||||
@@ -2558,7 +2558,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
|
||||
@@ -2584,7 +2584,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
|
||||
@@ -2635,8 +2635,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
|
||||
@@ -4891,10 +4891,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 "从不"
|
||||
|
||||
@@ -5346,120 +5346,124 @@ 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 ""
|
||||
"当前的迁移版本不正确。请重新加载此页面。如果警告仍然存在,可能是由于之前的失"
|
||||
"败进程导致迁移被锁定。请检查文件夹%s中的%s文件并删除该文件以强制迁移重新运"
|
||||
"行。"
|
||||
|
||||
#: application/views/debug/index.php:47
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Check this wiki article <u><a href='%s' target='_blank'>here</a></u> 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)"
|
||||
|
||||
|
||||
@@ -40,14 +40,15 @@
|
||||
<td><?php echo (isset($migration_version) ? $migration_version : "<span class='badge text-bg-danger'>". __("There is something wrong with your Migration in Database!") . "</span>"); ?></td>
|
||||
</tr>
|
||||
<?php if (!$migration_is_uptodate) { ?>
|
||||
</table>
|
||||
<div class="alert alert-danger mt-3 mb-3">
|
||||
<h5><?= __("Migration is outdated and locked!"); ?></h5>
|
||||
<p><?= sprintf(__("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."), "'application/cache/'", "'.migration_running'"); ?></p>
|
||||
<p><?= sprintf(__("Current migration is %s"), $migration_version); ?><br>
|
||||
<?= sprintf(__("Migration should be %s"), $migration_config); ?></p>
|
||||
</div>
|
||||
<table>
|
||||
</table>
|
||||
<div class="alert alert-danger mt-3 mb-3">
|
||||
<h5><?= __("Migration is outdated and locked!"); ?></h5>
|
||||
<p><?= sprintf(__("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."), $miglock_lifetime, $migration_lockfile); ?></p>
|
||||
<p><?= sprintf(__("Check this wiki article <u><a href='%s' target='_blank'>here</a></u> for more information."), "https://github.com/wavelog/wavelog/wiki/Migration-is-locked"); ?></p>
|
||||
<p><?= sprintf(__("Current migration is %s"), $migration_version); ?><br>
|
||||
<?= sprintf(__("Migration should be %s"), $migration_config); ?></p>
|
||||
</div>
|
||||
<table>
|
||||
<?php } ?>
|
||||
<tr>
|
||||
<td><?= __("Environment"); ?></td>
|
||||
|
||||
Reference in New Issue
Block a user