From 3890d8ac88b2fdfa7b54d433e8e2edf2164be6f0 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Thu, 8 Apr 2021 17:44:53 +0200 Subject: add translation logic, locales for en and de This adds a basic "replace fixed keys"-approach to translating the UI of surveys. So far this works great, but for complex things it may fail for some languages — for now I'll just try to take care not to add any output that puts things in the middle of sentences, which I think should work for a simple survey thing. The default language is still english, which is important as the language is declared withing a survey config — i.e. if loading it fails, it cannot be applied, and the "enter passphrase" dialog can also not change based on locales. This could possibly be fixed by adding an unencrypted "header" to the encrypted configs, but for now I'm not sure if that makes a lot of sense — it may be easier to just guess based on the browser's settings, and otherwise fall back to some specified default language. The "thanks for your answers"-page also has no translation so far. --- example-config.dhall | 3 +- site/examples/encrypted.json | Bin 641 -> 652 bytes site/examples/example.json | 2 +- site/i18n.js | 67 +++++++++++++++++++++++++++++++++++++++++++ site/index.html | 31 +++++++++++--------- site/thanks.html | 2 +- utils/src/main.rs | 13 +++++++-- 7 files changed, 99 insertions(+), 19 deletions(-) create mode 100644 site/i18n.js diff --git a/example-config.dhall b/example-config.dhall index 0b5d5ae..ae12897 100644 --- a/example-config.dhall +++ b/example-config.dhall @@ -1,6 +1,7 @@ { title = "Test Survey" , description = "This is a test survey." -, pubkey = Some "age1te673wg4decpplhwrtw2x8atglrn59t87q0tllx7n7uhnr7qrg0ss6f36g" +, lang = Lang.en +, pubkey = Some "age1f380w6eaeuydey65mmu88h4kqv50dda96pxlgkal78sufpnngypqnetmuu" , questions = [ { question = "first question", name = "question1", space = Answers.YesOrNo } , { question = "second question" diff --git a/site/examples/encrypted.json b/site/examples/encrypted.json index 3eac1c5..2e24d13 100644 Binary files a/site/examples/encrypted.json and b/site/examples/encrypted.json differ diff --git a/site/examples/example.json b/site/examples/example.json index 2a6c2f9..fcd09d8 100644 --- a/site/examples/example.json +++ b/site/examples/example.json @@ -1 +1 @@ -{"title":"Test Survey","description":"This is a test survey.","questions":[{"question":"first question","name":"question1","space":"YesOrNo"},{"question":"second question","name":"question2","space":{"Freeform":"test"}},{"question":"third question","name":"question3","space":{"Multiple":["first possible answer","second possible answer","third possible answer"]}}],"pubkey":"age1f380w6eaeuydey65mmu88h4kqv50dda96pxlgkal78sufpnngypqnetmuu"} +{"title":"Test Survey","description":"This is a test survey.","questions":[{"question":"first question","name":"question1","space":"YesOrNo"},{"question":"second question","name":"question2","space":{"Freeform":"test"}},{"question":"third question","name":"question3","space":{"Multiple":["first possible answer","second possible answer","third possible answer"]}}],"pubkey":"age1f380w6eaeuydey65mmu88h4kqv50dda96pxlgkal78sufpnngypqnetmuu","lang":"en"} \ No newline at end of file diff --git a/site/i18n.js b/site/i18n.js new file mode 100644 index 0000000..38ffe7b --- /dev/null +++ b/site/i18n.js @@ -0,0 +1,67 @@ + + + +let langs = { + en : { + // error message in case the survey url was obviously invalid (currently only the case if none was given) + "Error: nothing here": "There's nothing here. Maybe try appending something after the url?\n\nAlternatively, check to see if you copied the whole url.", + // error message in case the http request on the survey url returned a status code that wasn't 200 + "Error: survey doesn't exist": "Could not load this survey; are you sure that it exists?", + // error message in case the survey url was loaded, but had some obviously invalid format (i.e. neither json nor age encryption) + "Error: unknown format": "Could not load this survey; it appears to be in a wrong or unknown format.", + // text fragment in error messages, after which the survey url will be printed + "attempted path:": "Attempted path:", + // prompt for a passphrase + "please enter passphrase": "please enter a passphrase to access the survey:", + // error message in case decryption failed + "passphrase incorrect": "passphrase was incorrect!", + // document title for the decryption dialog + "Enter Passphrase": "Enter Passphrase", + // header of the decryption dialog + "Passphrase": "Passphrase", + // the text on the "decrypt" button + "decrypt": "decrypt", + // the text on the "submit" button + "submit": "submit", + // error message in case the given answers were invalid + "Error: answers invalid":"Cannot submit: not all required questions were filled in!", + // error message in case the post request failed entirely (i.e. printed if the .catch-clause of the fetch() function is reached) + "Error: could not post":"Error: The http POST request did not succeed.", + // error message in case the post request returned some other status code than 200; its status code and message will be appended in the next line after the text given here + "Error: post returned error":"Error: The http POST request returned an error code:" + }, + de : { + "Error: nothing here": "Hier ist nichts. Evtl. hilft es, etwas hinten an die url dranzuhängen?\n\nAnsonsten: bist du dir sicher, dass du den ganzen Link hierher kopiert hast?", + "Error: survey doesn't exist": "Diese Umfrage konnte nicht geladen werden. Bist du sicher, dass sie existiert?", + "Error: unknown format": "Diese Umfrage scheint ein unbekanntes Format zu haben und konnte nicht angezeigt werden", + "attempted path:": "Abgerufener Pfad:", + "please enter passphrase": "Bitte gebe eine Passphrase ein, um die Umfrage zu entschlüsseln", + "passphrase incorrect": "Passphrase war nicht korrekt!", + "Passphrase": "Passphrase", + "decrypt":"entschlüsseln", + "submit":"absenden", + "Enter Passphrase": "Passphrase eingeben", + "Error: answers invalid":"Einige verpflichtenden Antworten fehlen!", + "Error: could not post":"Fehler: Die http POST Anfrage schlug fehl.", + "Error: post returned error":"Fehler: Die http POST Anfragen schlug fehl und gab einen Fehlercode zurück:" + } +} + +// we use english by default until something else is set +let locale = "en"; + +// the main translation function. if no fitting translation +// is found, it returns the key as a fallback value +// (therefore, keys should themselves be understandable texts) +export function _(key) { + console.log("getting translation for ", locale, key); + return !(locale in langs) ? key + : !(key in langs[locale]) ? key + : langs[locale][key] +} + +export function setLang (loc) { + locale = loc; +} + +export default _; diff --git a/site/index.html b/site/index.html index 5771e94..bceb936 100644 --- a/site/index.html +++ b/site/index.html @@ -1,4 +1,4 @@ - + test @@ -10,6 +10,7 @@