Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Galène with multilingual capacity #103

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 18 additions & 7 deletions static/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<html data-i18n="html.lang" data-i18n-attr="lang"lang="en">
<head>
<title>Galène</title>
<title data-i18n="site.title">Galène</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/common.css">
Expand All @@ -13,25 +13,36 @@
<body>

<div class="home">
<h1 id="title" class="navbar-brand">Galène</h1>
<h1 id="title" class="navbar-brand" data-i18n="site.title">Galène</h1>

<form id="groupform">
<label for="group">Group:</label>
<label for="group" data-i18n="groups.group">Group:</label>
<input id="group" type="text" name="group" class="form-control form-control-inline"/>
<input type="submit" value="Join" class="btn btn-default btn-large"/><br/>
<input type="submit" data-i18n="input.value" data-i18n-attr="value" value="Join" class="btn btn-default btn-large"/><br/>
</form>

<div id="public-groups" class="groups">
<h2>Public groups</h2>
<h2 data-i18n="groups.public">Public groups</h2>

<table id="public-groups-table"></table>
</div>
</div>
<footer class="signature">
<p><a href="https://galene.org/">Galène</a> by <a href="https://www.irif.fr/~jch/" rel="author">Juliusz Chroboczek</a></p>
<label>
<span data-i18n="site.locale">Language:</span>
<select>
<option value="en" id="en">English</option>
<option value="oc" id="oc">Occitan</option>
<option value="fr" id="fr">Français</option>
</select>
</label>
<p><a href="https://galene.org/" data-i18n="site.title">Galène</a> <span data-i18n="site.by">by</span> <a href="https://www.irif.fr/~jch/" rel="author">Juliusz Chroboczek</a></p>
</footer>

<script src="/mainpage.js" defer></script>

<script src="scripts/translator.js" defer></script>
<script src="scripts/index.js" defer></script>

</body>
</html>
Expand Down
23 changes: 23 additions & 0 deletions static/lang/en.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"site": {
"title": "Galène",
"by": "by",
"locale": "Language:"
},
"groups": {
"public": "Public groups",
"group": "Group:"
},
"input": {
"value": "Join"
},
"html": {
"lang": "en"
},
"404": {
"title": "Page not Found",
"notfound": " Page not Found",
"text": " We can't find the page you're looking for.",
"back": "Back to home"
}
}
23 changes: 23 additions & 0 deletions static/lang/fr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"site": {
"title": "Galène",
"by": "par",
"locale": "Langue :"
},
"groups": {
"public": "Groupes publics",
"group": "Groupe :"
},
"input": {
"value": "Rejoindre"
},
"html": {
"lang": "fr"
},
"404": {
"title": "Page non trouvée",
"notfound": " Page non trouvée",
"text": " Nous ne trouvons pas la page que vous cherchez.",
"back": "Retour à l’accueil"
}
}
23 changes: 23 additions & 0 deletions static/lang/oc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"site": {
"title": "Galène",
"by": "per",
"locale": "Lenga :"
},
"groups": {
"public": "Grops publics",
"group": "Grop :"
},
"input": {
"value": "Participar"
},
"html": {
"lang": "oc"
},
"404": {
"title": "Pagina pas trobada",
"notfound": " Pagina pas trobada",
"text": " Podèm pas trobar la pagina que cercatz.",
"back": "Tornar a l’acuèlh"
}
}
29 changes: 29 additions & 0 deletions static/scripts/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// The below provided options are default.
var translator = new Translator({
defaultLanguage: "en",
detectLanguage: true,
selector: "[data-i18n]",
debug: false,
registerGlobally: "__",
persist: false,
persistKey: "preferred_language",
filesLocation: "/lang"
});

translator.fetch(["en", "oc", "fr"]).then(() => {
// Calling `translatePageTo()` without any parameters
// will translate to the default language.
translator.translatePageTo();
registerLanguageToggle();
});

function registerLanguageToggle() {
var select = document.querySelector("select");

select.addEventListener("change", evt => {
var language = evt.target.value;
translator.translatePageTo(language);
});
};
document.getElementById(translator.currentLanguage).selected = true;

Loading