aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs')
-rw-r--r--htdocs/index.html3
-rw-r--r--htdocs/src/js/app.js2
-rw-r--r--htdocs/src/js/i18n/locales/en.js2
-rw-r--r--htdocs/src/js/i18n/locales/fr.js2
4 files changed, 6 insertions, 3 deletions
diff --git a/htdocs/index.html b/htdocs/index.html
index 47e41fd..561e42d 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -43,7 +43,8 @@
</header>
<main class="main">
<div class="instructions">
- Select an app inside menu to see a live preview and app details.
+ Select an app inside menu to see a live preview and app details
+ (description, technologies, repositories).
</div>
</main>
<footer class="footer">
diff --git a/htdocs/src/js/app.js b/htdocs/src/js/app.js
index 13d63ef..efb4c33 100644
--- a/htdocs/src/js/app.js
+++ b/htdocs/src/js/app.js
@@ -331,9 +331,11 @@ function translateHTMLContent() {
const brandingDesc = document.querySelector('.branding__description');
const navLabel = document.querySelector('.nav__label');
const license = document.querySelector('.copyright__license');
+ const instructions = document.querySelector('.instructions');
brandingDesc.textContent = translate('branding.description');
navLabel.textContent = translate('nav.title');
license.title = translate('footer.license');
+ instructions.textContent = translate('main.instructions');
}
/**
diff --git a/htdocs/src/js/i18n/locales/en.js b/htdocs/src/js/i18n/locales/en.js
index d548757..c21b739 100644
--- a/htdocs/src/js/i18n/locales/en.js
+++ b/htdocs/src/js/i18n/locales/en.js
@@ -7,7 +7,7 @@ const en = {
},
main: {
instructions:
- 'Select an app inside menu to see a live preview and app details.',
+ 'Select an app inside menu to see a live preview and app details (description, technologies, repositories).',
project: {
details: {
about: 'About {{name}}',
diff --git a/htdocs/src/js/i18n/locales/fr.js b/htdocs/src/js/i18n/locales/fr.js
index 29bf9fd..af1d83c 100644
--- a/htdocs/src/js/i18n/locales/fr.js
+++ b/htdocs/src/js/i18n/locales/fr.js
@@ -7,7 +7,7 @@ const fr = {
},
main: {
instructions:
- "Sélectionnez une application dans le menu pour afficher un aperçu en direct et les informations sur l'application.",
+ "Sélectionnez une application dans le menu pour afficher un aperçu en direct et les informations sur l'application (description, technologies, dépôts).",
project: {
details: {
about: 'À propos de {{name}}',