diff options
author | filip <filip.komar@gmail.com> | 2015-08-28 19:37:24 +0200 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2015-08-28 19:37:24 +0200 |
commit | ac717cf9eb58af871b73267a664018b3c2efac38 (patch) | |
tree | 743e2ce1258dc551641b88cad9b8a100444acf48 /en/downloads | |
parent | 390b183c0f2285ef1b2210450da29fdfbd321d5b (diff) | |
download | www-ac717cf9eb58af871b73267a664018b3c2efac38.tar www-ac717cf9eb58af871b73267a664018b3c2efac38.tar.gz www-ac717cf9eb58af871b73267a664018b3c2efac38.tar.bz2 www-ac717cf9eb58af871b73267a664018b3c2efac38.tar.xz www-ac717cf9eb58af871b73267a664018b3c2efac38.zip |
bugfix for mga#16602
Diffstat (limited to 'en/downloads')
-rw-r--r-- | en/downloads/get/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/en/downloads/get/index.php b/en/downloads/get/index.php index 247b7321c..0e07d7c6f 100644 --- a/en/downloads/get/index.php +++ b/en/downloads/get/index.php @@ -210,14 +210,14 @@ if (!isset($_SERVER['APP_MODE']) || $_SERVER['APP_MODE'] == 'prod') { || (isset($product['sha1'])) && strlen($product['sha1']) > 0) && !$torrent ): ?> - <p><?php _g('As soon as your download is complete, you should check that the signatures match:') ?></p> + <p><?php _g('As soon as your download is complete, you should check that the checksums match:') ?></p> <div id="check-signs"> <pre class="term"> <?php if (strlen($product['md5'])): ?>$ md5sum <?php echo basename($download), "\n<strong>", $product['md5'], "</strong>\n"; endif; ?> <?php if (strlen($product['sha1'])): ?>$ sha1sum <?php echo basename($download), "\n<strong>", $product['sha1'], "</strong>\n"; endif; ?> </pre> - <p><?php _g('If signatures do not match, <strong>DO NOT use this ISO</strong>. Double-check and try to download again.'); ?></p> + <p><?php _g('If checksums do not match, <strong>DO NOT use this ISO</strong>. Double-check and try to download again.'); ?></p> <!-- TODO (rda): add direct download links to checksum and signature files as a backup. --> </div> <?php endif; ?> |