diff options
author | Mario Vavti <mario@mariovavti.com> | 2021-09-30 17:50:36 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2021-09-30 17:50:36 +0200 |
commit | 6ed160e4fa05e880bc81720b626f2bdc68a20db8 (patch) | |
tree | 7bd05c047ca494e56b1c42b19862286b8bed7b7b | |
parent | d462230b820c4f349dcd0fb4202745d018551120 (diff) | |
download | volse-hubzilla-6ed160e4fa05e880bc81720b626f2bdc68a20db8.tar.gz volse-hubzilla-6ed160e4fa05e880bc81720b626f2bdc68a20db8.tar.bz2 volse-hubzilla-6ed160e4fa05e880bc81720b626f2bdc68a20db8.zip |
wording
-rw-r--r-- | Zotlabs/Module/Import_progress.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Module/Import_progress.php b/Zotlabs/Module/Import_progress.php index 40cddd4a8..f255dcbe9 100644 --- a/Zotlabs/Module/Import_progress.php +++ b/Zotlabs/Module/Import_progress.php @@ -22,7 +22,7 @@ class Import_progress extends \Zotlabs\Web\Controller { $c = PConfig::Get(local_channel(), 'import', 'content_progress'); if (!$c) { - $co = 'Status items: waiting to start...'; + $co = 'Item sync status: waiting to start...'; } else { $total_cpages = floor(intval($c['items_total']) / intval($c['items_page'])); @@ -31,14 +31,14 @@ class Import_progress extends \Zotlabs\Web\Controller { $cpage = $c['last_page'] + 1; // because page count start at 0 - $co = 'Status items: ' . floor((intval($cpage) * 100) / $total_cpages) . '%'; + $co = 'Item sync status: ' . floor((intval($cpage) * 100) / $total_cpages) . '%'; } // files $f = PConfig::Get(local_channel(), 'import', 'files_progress'); if (!$f) { - $fo = 'Status files: waiting to start...'; + $fo = 'File sync status: waiting to start...'; } else { $total_fpages = floor(intval($f['files_total']) / intval($f['files_page'])); @@ -47,7 +47,7 @@ class Import_progress extends \Zotlabs\Web\Controller { $fpage = $f['last_page'] + 1; - $fo = 'Status files: ' . floor((intval($fpage) * 100) / $total_fpages) . '%'; + $fo = 'File sync status: ' . floor((intval($fpage) * 100) / $total_fpages) . '%'; } $o .= '<h3>' . $co . '</h3>'; |