aboutsummaryrefslogtreecommitdiff
path: root/includes/archive
diff options
context:
space:
mode:
authorMinteck <46352972+Minteck@users.noreply.github.com>2021-08-01 22:28:15 +0200
committerMinteck <46352972+Minteck@users.noreply.github.com>2021-08-01 22:28:15 +0200
commit9852b6cd074cceec0d0b549bb6c9bd7fe50c86f2 (patch)
tree22d9b851864f9370282f21d10113afd5d565e4cf /includes/archive
parentb028da9fea70c65ccd52d1d478859739027d756a (diff)
downloadmain-9852b6cd074cceec0d0b549bb6c9bd7fe50c86f2.tar.gz
main-9852b6cd074cceec0d0b549bb6c9bd7fe50c86f2.tar.bz2
main-9852b6cd074cceec0d0b549bb6c9bd7fe50c86f2.zip
Update
Diffstat (limited to 'includes/archive')
-rw-r--r--includes/archive/main.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/archive/main.php b/includes/archive/main.php
index 4bd2cf7..28cb438 100644
--- a/includes/archive/main.php
+++ b/includes/archive/main.php
@@ -1,4 +1,4 @@
-<p>Download the old of the oldest software I made. Some of this software is <u>proprietary</u> and you can't change or distribute it without my consent. Active projects are not listed here and can be downloaded from their respective page.</p>
+<p><?= l("Download the old of the oldest software I made", "Téléchargez les plus vieux des vieux logiciels que j'ai créé") ?>. <?= l("Some of this software is", "Certains de ces logiciels sont") ?> <u><?= l("proprietary", "propriétaires") ?></u> <?= l("and you can't change or distribute it without my consent", "et vous ne pouvez pas les modifier ou les distribuer sans mon accord") ?>. <?= l("Active projects are not listed here and can be downloaded from their respective page", "Les projets en cours de développement ne sont pas listés ici et peuvent être téléchargés sur leur page respective") ?>.</p>
<div class="list-group">
<?php
@@ -10,7 +10,7 @@
$data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/archive/get/" . $file), true);
echo('<a href="/archive/get/'.substr($file, 0, -5).'.zip" class="list-group-item list-group-item-action"><span class="badge bg-secondary rounded-pill">'.$data['date'].'</span> '.$data['title']);
if ($data['unreleased']) {
- echo(' <span class="badge bg-warning">Unreleased</span>');
+ echo(' <span class="badge bg-warning">' . l("Unreleased", "Jamais sorti") . '</span>');
}
echo('</a>');
}
@@ -19,4 +19,4 @@
?>
</div>
<br>
-<small><p class="text-muted">Project start dates are estimated and cannot always be accurate</p></small> \ No newline at end of file
+<small><p class="text-muted"><?= l("Project start dates are estimated and cannot always be accurate", "Les dates de début des projets sont des estimations et ne peuvent pas être toujours précises") ?></p></small> \ No newline at end of file