Compare commits
No commits in common. "28cbe54c340332f846fb10c45ae1086ccbee9189" and "ccb4f8218628dd4fae2c21c68b5d8ebbbe601ec7" have entirely different histories.
28cbe54c34
...
ccb4f82186
|
|
@ -44,7 +44,7 @@ function App() {
|
|||
<Route path='/rating' element={<Rating />} />
|
||||
<Route path='/about' element={<About />} />
|
||||
<Route path='/conditions' element={<ConditionsOfUse />} />
|
||||
<Route path='/data' element={<Cookies />} />
|
||||
<Route path='/cookies' element={<Cookies />} />
|
||||
<Route path='/themes' element={<Thematiques />} />
|
||||
<Route path='/confidentiality' element={<Confidentiality />} />
|
||||
<Route path='/test' element={<Test />} />
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.page-container--warning {
|
||||
@apply bg-lhoist min-h-screen py-12 px-4 flex flex-col justify-center items-center;
|
||||
box-sizing: border-box;
|
||||
box-sizing: border-box ;
|
||||
.warning-content__title {
|
||||
@apply bg-construction p-4 text-5xl;
|
||||
transform: rotate(-3deg);
|
||||
|
|
@ -11,7 +11,4 @@
|
|||
.warning-content__text {
|
||||
@apply text-white text-center text-xl max-w-2xl pb-12;
|
||||
}
|
||||
.lhoist-branding-logo {
|
||||
@apply hidden md:block;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,16 +7,8 @@ import { useUser } from "../../hooks/useUser.jsx";
|
|||
export default function CookiesModal() {
|
||||
const { screensTranslations, hasConsentedCookies, setHasConsentedCookies, acceptCookies } = useUser();
|
||||
|
||||
if (
|
||||
!screensTranslations ||
|
||||
!screensTranslations.pagesName ||
|
||||
!screensTranslations.cookies ||
|
||||
!screensTranslations.ui
|
||||
)
|
||||
return <p>loading</p>;
|
||||
const cookiesTranslations = screensTranslations.cookies;
|
||||
if (!screensTranslations || !screensTranslations.pagesName) return <p>loading</p>;
|
||||
const pagesName = screensTranslations.pagesName;
|
||||
const uiTranslations = screensTranslations.ui;
|
||||
|
||||
return (
|
||||
<Modal
|
||||
|
|
@ -32,20 +24,25 @@ export default function CookiesModal() {
|
|||
src={cookiesModalCover}
|
||||
alt='close'
|
||||
/>
|
||||
<h3 className='titling-construction '>{cookiesTranslations.title}</h3>
|
||||
<p className='explanation'>{cookiesTranslations.description}</p>
|
||||
<h3 className='titling-construction '>Données Anonymes</h3>
|
||||
<p className='explanation'>
|
||||
Notre plateforme traite vos informations de façon anonyme dans le but
|
||||
d'optimiser et de personnaliser votre expérience utilisateur sur notre
|
||||
site. Pour connaître en détail les données collectées et leur usage,
|
||||
consultez notre politique de gestion des données.
|
||||
</p>
|
||||
<div className='pages-redirection'>
|
||||
<Link to='/confidentiality' className='classic-link'>
|
||||
{pagesName.confidentiality}
|
||||
</Link>
|
||||
<Link to='/data' className='classic-link'>
|
||||
<Link to='/cookies' className='classic-link'>
|
||||
{pagesName.cookies}
|
||||
</Link>
|
||||
</div>
|
||||
<button
|
||||
className='cta cta--lhoist cta--schief cta--zuume cta--spaced-normal'
|
||||
onClick={acceptCookies}>
|
||||
{uiTranslations.continue}
|
||||
Continuer
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ export default function Timer() {
|
|||
useEffect(() => {
|
||||
if (!hasCheckedTutorial || !isTimeRuning) return;
|
||||
let intervalId;
|
||||
intervalId = setInterval(() => setGameTime(gameTime + 1), 1000);
|
||||
intervalId = setInterval(() => setGameTime(gameTime + 100), 1000);
|
||||
// setCurrentTime(currentTime);
|
||||
|
||||
return () => clearInterval(intervalId);
|
||||
|
|
|
|||
|
|
@ -6,12 +6,11 @@ import menuToggleIcon from "../../assets/img/icons/icon-bars-menu-toggle.svg";
|
|||
import { useEffect, useState } from "react";
|
||||
import { motion } from "framer-motion";
|
||||
import Logo from "./AppLogoVector.jsx";
|
||||
import Loading from "../animations/Loading";
|
||||
|
||||
export default function Nav() {
|
||||
let location = useLocation();
|
||||
|
||||
const { language, screensTranslations } = useUser();
|
||||
const { screensTranslations } = useUser();
|
||||
|
||||
const [isMenuOpen, setIsMenuOpen] = useState(false);
|
||||
|
||||
|
|
@ -38,8 +37,8 @@ export default function Nav() {
|
|||
exit: { y: "-100%" },
|
||||
};
|
||||
|
||||
if (!screensTranslations || !screensTranslations.ui || !screensTranslations.pagesName) return <Loading />;
|
||||
const uiScreenTranslations = screensTranslations.ui;
|
||||
if (!screensTranslations || !screensTranslations.ui || !screensTranslations.pagesName) return <p>loading</p>;
|
||||
const uiTranslations = screensTranslations.ui;
|
||||
const pagesNamesTranslations = screensTranslations.pagesName;
|
||||
|
||||
return (
|
||||
|
|
@ -47,7 +46,7 @@ export default function Nav() {
|
|||
{location && location.pathname != "/Home" ? <Logo /> : null}
|
||||
<LanguageSelect />
|
||||
<button
|
||||
title={uiScreenTranslations.openMenu}
|
||||
title={uiTranslations.openMenu}
|
||||
className='nav-menu-toggle cta cta--button cta--button-icon'
|
||||
onClick={handleMenuOpen}>
|
||||
<img className='' src={menuToggleIcon} alt='' />
|
||||
|
|
@ -62,7 +61,7 @@ export default function Nav() {
|
|||
exit={animationParameters.exit}
|
||||
transition={{ duration: 0.4, ease: "easeOut" }}>
|
||||
<button
|
||||
title={uiScreenTranslations.closeMenu}
|
||||
title={uiTranslations.closeMenu}
|
||||
className='cta cta--construction cta--button-icon cta--close'
|
||||
onClick={handleMenuOpen}></button>
|
||||
|
||||
|
|
@ -80,17 +79,13 @@ export default function Nav() {
|
|||
|
||||
<ul className='menu__legal-mentions'>
|
||||
<li>
|
||||
<Link to='/confidentiality'>
|
||||
{pagesNamesTranslations.confidentiality}
|
||||
</Link>
|
||||
<Link to='/confidentiality'>Politique de confidentialité</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link to='/conditions'>
|
||||
{pagesNamesTranslations.conditions}
|
||||
</Link>
|
||||
<Link to='/conditions'> Conditions d'utilisation</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link to='/data'>{pagesNamesTranslations.cookies}</Link>
|
||||
<Link to='/cookies'> Cookies</Link>
|
||||
</li>
|
||||
</ul>
|
||||
</motion.div>
|
||||
|
|
|
|||
|
|
@ -1,25 +1,21 @@
|
|||
{
|
||||
"stay_safe": "Zůstaňte v bezpečí",
|
||||
"stay_safe": "Buď v bezpečí",
|
||||
"welcome": {
|
||||
"welcome": "Vítejte",
|
||||
"select_language": "Zvolte jazyk",
|
||||
"language_label": "Jazyk",
|
||||
"start": "Start",
|
||||
"enter": "Zadat"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "V zájmu vlastní bezpečnosti hrajte pouze tehdy, když jste pohodlně usazeni a nijak se nepohybujete.",
|
||||
"warning": "Pozor"
|
||||
"select_language": "Vyberte svůj jazyk",
|
||||
"language_label": "jazyk",
|
||||
"start": "Začít",
|
||||
"enter": "Vstoupit"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Prozkoumejte interaktivní hru Stay Safe, kde každá volba ovlivňuje vaši bezpečnost v závodech společnosti Lhoist. Vydejte se na zážitkovou cestu zaměřenou na prevenci rizik."
|
||||
"app_description": "Objevte interaktivní hru Stay Safe, kde vaše volby určí vaši bezpečnost na pracovišti."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Návštěvník",
|
||||
"driver": "Řidič",
|
||||
"driver": "Kamionový řidič",
|
||||
"lhoist_employee": "Zaměstnanec Lhoist",
|
||||
"subcontractor_employee": "Dodavatel"
|
||||
"subcontractor_employee": "Zaměstnanec subdodavatele"
|
||||
},
|
||||
"iam": "Jsem",
|
||||
"profile": "Profil"
|
||||
|
|
@ -30,79 +26,72 @@
|
|||
"country_label": "Země"
|
||||
},
|
||||
"game": {
|
||||
"found": "Bingo!",
|
||||
"is_it_secure": "Bezpečné, nebo riskantní?",
|
||||
"is_it_secure_question": "Představuje daná situace velké riziko, nebo je dané chování správné?",
|
||||
"found": "Nalezeno!",
|
||||
"is_it_secure": "bezpečné nebo riskantní?",
|
||||
"is_it_secure_question": "Představuje situace významné riziko nebo identifikujete správné chování?",
|
||||
"secure": "Bezpečné",
|
||||
"risky": "Riskantní",
|
||||
"next": "Další",
|
||||
"previous": "Předchozí",
|
||||
"right_answer": "Správná odpověď!",
|
||||
"wrong_answer": "Špatná odpověď!",
|
||||
"it_is_risk": "Toto chování je riskantní",
|
||||
"it_is_not_risk": "Toto chování je bezpečné"
|
||||
"right_answer": "Správná odpověď",
|
||||
"wrong_answer": "Špatná odpověď",
|
||||
"it_is_risk": "Je to riziko",
|
||||
"it_is_not_risk": "Není to riziko"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Jak hrát?",
|
||||
"move_around": "Pohyb v rámci hry",
|
||||
"move_around_description": "Prozkoumejte danou scénu přesunutím a podržením kurzoru myši nebo přejetím prstu po displeji telefonu.",
|
||||
"walkthrough": "Cíl hry",
|
||||
"walkthrough_description": "Určit správné a špatné postupy kliknutím na objekty a činnosti na dané scéně.",
|
||||
"points_and_time": "Body a načasování",
|
||||
"points_and_time_description": "Identifikujte různé činnosti tak, že uděláte co nejméně chyb, abyste zajistili bezpečnost, a to co nejrychleji!"
|
||||
"move_around": "Pohybujte se ve hře",
|
||||
"move_around_description": "Pohybujte a držte kurzor myši nebo posouvejte prstem po obrazovce telefonu pro prozkoumání scény.",
|
||||
"walkthrough": "Průběh hry",
|
||||
"walkthrough_description": "Identifikujte dobré a špatné praktiky klikáním na objekty a akce ve scéně.",
|
||||
"points_and_time": "Body a časomíra",
|
||||
"points_and_time_description": "Identifikujte různé akce s co nejmenším počtem chyb, bezpečnost je nutností, a dělejte to co nejrychleji!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Zpráva o bezpečnosti",
|
||||
"perfect_title": "Blahopřejeme!",
|
||||
"perfect_text": "Váš vynikající výsledek svědčí o tom, že jste si dobře vědomi rizik a dbáte na bezpečnost, což přispívá k bezpečnému pracovnímu prostředí pro všechny.",
|
||||
"perfect_motivation_line": "Jen tak dál!",
|
||||
"congrats_title": "Blahopřejeme!",
|
||||
"congrats_text": "Vaše povědomí o rizicích hodnotíme pozitivně, ale nezapomínejme, že podstata našeho pracovního prostředí může vést k nehodám, pokud nebudeme ostražití.",
|
||||
"congrats_motivation_line": "Zkusme společně naši ostražitost zvýšit!",
|
||||
"attention_title": "Dávejte si pozor...",
|
||||
"attention_text": "Pokud nebudete neustále ostražití, může dojít velmi rychle k nehodě. Využijte tuto zkušenost jako příležitost ke zvýšení povědomí o rizicích.",
|
||||
"attention_motivation_line": "Buďte ostražití!"
|
||||
"results_screen_title": "Bezpečnostní zpráva",
|
||||
"perfect_title": "Gratulujeme!",
|
||||
"perfect_text": "Vaše vynikající výkon ukazuje silné povědomí o rizicích a závazek k bezpečnosti, přispívá k bezpečné pracovnímu prostředí pro všechny.",
|
||||
"perfect_motivation_line": "Pokračujte v tom!",
|
||||
"congrats_title": "Gratulace!",
|
||||
"congrats_text": "Vaše povědomí o rizicích je pozitivní, ale pamatujme si, že realita našeho pracovního prostředí může vést k nehodám, pokud nebudeme pozorní.",
|
||||
"congrats_motivation_line": "Společně zvyšme svou ostražitost!",
|
||||
"attention_title": "Pozor...",
|
||||
"attention_text": "Nehoda se může stát rychle bez neustálé ostražitosti. Využijte tuto zkušenost jako příležitost k rozvoji většího povědomí o rizicích.",
|
||||
"attention_motivation_line": "Zůstaňte bdělí!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Poznámky",
|
||||
"text": "Děkujeme, že jste se zapojili do hry Stay Safe. Vaše zpětná vazba je pro nás důležitá",
|
||||
"placeholder": "Jak svou zkušenost hodnotíte?"
|
||||
"title": "Hodnocení",
|
||||
"text": "Děkujeme, že jste hráli Stay Safe. Váš názor je pro nás důležitý",
|
||||
"placeholder": "Co jste si o této zkušenosti mysleli?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Start",
|
||||
"start": "Začít",
|
||||
"back": "Zpět",
|
||||
"next": "Další",
|
||||
"previous": "Předchozí",
|
||||
"continue": "Pokračovat",
|
||||
"submit": "Odeslat",
|
||||
"yes": "Ano",
|
||||
"no": "Ne",
|
||||
"openMenu": "Otevřít nabídku",
|
||||
"closeMenu": "Zavřít nabídku",
|
||||
"openMenu": "Otevřít menu",
|
||||
"closeMenu": "Zavřít menu",
|
||||
"language": "Jazyk",
|
||||
"loading": "Načítání",
|
||||
"last_update": "Poslední aktualizace",
|
||||
"show_help": "Zobrazit nápovědu",
|
||||
"download": "Stáhnout"
|
||||
"last_update": "Poslední aktualizace"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Vydání hry Stay Safe",
|
||||
"copyright": "Vydání Stay Safe",
|
||||
"all_rights_reserved": "Všechna práva vyhrazena."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Chyba 404",
|
||||
"page_not_found": "Stránka nenalezena",
|
||||
"explanation": "To je trapné... Zdá se, že hledaná stránka neexistuje!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "O této platformě",
|
||||
"about": "O",
|
||||
"themes": "Témata",
|
||||
"conditions": "Podmínky používání",
|
||||
"cookies": "Správa údajů",
|
||||
"conditions": "Podmínky použití",
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Zásady ochrany osobních údajů"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Anonymní údaje",
|
||||
"description": "Naše platforma zpracovává vaše informace anonymně, aby optimalizovala a přizpůsobila vaše uživatelské prostředí na našich stránkách. Podrobné informace o shromažďovaných údajích a jejich použití naleznete v našich zásadách správy údajů."
|
||||
}
|
||||
}
|
||||
|
|
@ -1,108 +1,97 @@
|
|||
{
|
||||
"stay_safe": "Hold dig sikker",
|
||||
"stay_safe": "Vær sikker",
|
||||
"welcome": {
|
||||
"welcome": "Velkommen",
|
||||
"select_language": "Vælg dit sprog",
|
||||
"language_label": "Sprog",
|
||||
"language_label": "sprog",
|
||||
"start": "Start",
|
||||
"enter": "Tast ind"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "For din sikkerheds skyld spil helst siddende og immobilt.",
|
||||
"warning": "Pas på"
|
||||
"enter": "Indtast"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Gå på opdagelse i det interaktive spil Stay Safe, hvor hvert enkelt valg har indflydelse på din sikkerhed på Lhoists arbejdspladser."
|
||||
"app_description": "Oplev det interaktive spil Stay Safe, hvor dine valg vil bestemme din sikkerhed på arbejdspladsen."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Gæst",
|
||||
"driver": "Fører",
|
||||
"lhoist_employee": "Lhoist medarbejder",
|
||||
"subcontractor_employee": "Underleverandør"
|
||||
"visitor": "Besøgende",
|
||||
"driver": "Lastbilchauffør",
|
||||
"lhoist_employee": "Lhoist-ansat",
|
||||
"subcontractor_employee": "Underleverandør-ansat"
|
||||
},
|
||||
"iam": "Jeg er",
|
||||
"profile": "Profil"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Jeg befinder mig i",
|
||||
"iamfrom": "Jeg kommer fra",
|
||||
"profile": "Profil",
|
||||
"country_label": "Land"
|
||||
},
|
||||
"game": {
|
||||
"found": "Fundet!",
|
||||
"is_it_secure": "Sikkert eller risikabelt?",
|
||||
"is_it_secure_question": "Findes der en alvorlig risiko eller er adfæren tilpasset?",
|
||||
"secure": "Sikkert",
|
||||
"risky": "Risikabelt",
|
||||
"is_it_secure": "sikker eller risikabel?",
|
||||
"is_it_secure_question": "Udposer situationen for en stor risiko, eller identificerer du god opførsel?",
|
||||
"secure": "Sikker",
|
||||
"risky": "Risikabel",
|
||||
"next": "Næste",
|
||||
"previous": "Forrige",
|
||||
"right_answer": "Rigtigt svar",
|
||||
"wrong_answer": "Urigtigt svar",
|
||||
"it_is_risk": "Det er en risikabel adfærd",
|
||||
"it_is_not_risk": "Det er en sikker adfærd"
|
||||
"right_answer": "Korrekt svar",
|
||||
"wrong_answer": "Forkert svar",
|
||||
"it_is_risk": "Det er en risiko",
|
||||
"it_is_not_risk": "Det er ikke en risiko"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Sådan spiller du?",
|
||||
"move_around": "Bevæg dig rundt i spillet",
|
||||
"move_around_description": "Styr og hold musemarkøren nede eller bevæg fingeren på din smartphones skærm for at udforske området.",
|
||||
"walkthrough": "Spillets gang",
|
||||
"walkthrough_description": "Peg ud de gode og dårlige praksisser ved at trykke på dem på skærmet.",
|
||||
"points_and_time": "Point og stopur",
|
||||
"points_and_time_description": "Peg ud de forskellige aktioner og begå så fejl som muligt, sikkerhed først, for hurtigst muligt!"
|
||||
"move_around": "Bevæg dig i spillet",
|
||||
"move_around_description": "Flyt og hold musemarkøren nede eller stryg med fingeren på din telefons skærm for at udforske scenen.",
|
||||
"walkthrough": "Forløbet af et spil",
|
||||
"walkthrough_description": "Identificer de gode og dårlige praksisser ved at klikke på objekter og handlinger i scenen.",
|
||||
"points_and_time": "Point og tid",
|
||||
"points_and_time_description": "Identificer de forskellige handlinger ved at lave så få fejl som muligt, sikkerhed er et must, og gør det så hurtigt som muligt!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Sikkerhedsrapport",
|
||||
"perfect_title": "Tillykke!",
|
||||
"perfect_text": "Dine fremragende præstation viser, at du godt vurderer risici, og at du sætter sikkerheden først. Det gør også dine kollegernes arbejdsplads sikrere.",
|
||||
"perfect_motivation_line": "Bliv ved!",
|
||||
"congrats_title": "Tillykke!",
|
||||
"congrats_text": "Du vurderer godt risici, men lad os ikke glemme, at vores professionnelle område kan forårsage ulykker, hvis vi ikke er forsigtige.",
|
||||
"congrats_motivation_line": "Lad os vise forsigtighed sammen!",
|
||||
"attention_title": "Pas på…",
|
||||
"attention_text": "Ulykker skyldes uforsigtighed. Benyt lejligheden til at informere dig mere om risici.",
|
||||
"attention_motivation_line": "Vær forsigtig!"
|
||||
"perfect_text": "Din fremragende præstation viser en stærk bevidsthed om risici og en forpligtelse til sikkerhed, hvilket bidrager til et sikkert arbejdsmiljø for alle.",
|
||||
"perfect_motivation_line": "Bliv ved med det!",
|
||||
"congrats_title": "Tillykkes!",
|
||||
"congrats_text": "Din risikobevidsthed er positiv, men lad os huske, at virkeligheden på vores arbejdsplads kan føre til ulykker, hvis vi ikke er opmærksomme.",
|
||||
"congrats_motivation_line": "Lad os sammen skærpe vores opmærksomhed!",
|
||||
"attention_title": "Opmærksomhed...",
|
||||
"attention_text": "En ulykke kan ske hurtigt uden konstant opmærksomhed. Brug denne oplevelse som en mulighed for at udvikle øget risikobevidsthed.",
|
||||
"attention_motivation_line": "Hold dig vågen!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Noter",
|
||||
"text": "Tak fordi du spillede Stay Safe. Vi sætter pris på din feedback",
|
||||
"placeholder": "Hvad synes du om spillet?"
|
||||
"title": "Bedømmelser",
|
||||
"text": "Tak fordi du spillede Stay Safe. Din mening er vigtig for os",
|
||||
"placeholder": "Hvad syntes du om denne oplevelse?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Start",
|
||||
"back": "Tilbage",
|
||||
"next": "Næste",
|
||||
"previous": "Forrige",
|
||||
"continue": "Gå videre",
|
||||
"submit": "Indsende",
|
||||
"submit": "Indsend",
|
||||
"yes": "Ja",
|
||||
"no": "Nej",
|
||||
"openMenu": "Åbn menu",
|
||||
"closeMenu": "Luk menu",
|
||||
"language": "Sprog",
|
||||
"loading": "Vent lige",
|
||||
"last_update": "Sidste opdatering",
|
||||
"show_help": "Hjælp",
|
||||
"download": "Hent"
|
||||
"loading": "Indlæser",
|
||||
"last_update": "Seneste opdatering"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Stay Safe Udgiverselskab",
|
||||
"all_rights_reserved": "Ophavsret."
|
||||
"copyright": "Stay Safe udgave",
|
||||
"all_rights_reserved": "Alle rettigheder forbeholdes."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Fejl 404",
|
||||
"page_not_found": "Side ikke fundet",
|
||||
"explanation": "Ups... Det ser ud til, at den side, du ledte efter, ikke findes!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "Om Stay Safe",
|
||||
"themes": "Temaer",
|
||||
"conditions": "Betingelser for anvendelse",
|
||||
"cookies": "Datahåndtering",
|
||||
"confidentiality": "Privatlivspolitik"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Anonymiserede data",
|
||||
"description": "Vores platform behandler dine oplysninger anonymt for at optimere og for at personliggøre din oplevelse som bruger på vores hjemmeside. Hvis du vil have mere detajleret information om, hvordan dine data indsamles og anvendes, kan du søge indsigt i vores politik for datahåndtering."
|
||||
"about": "Om",
|
||||
"themes": "Emner",
|
||||
"conditions": "Brugsbetingelser",
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Fortrolighedspolitik"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,108 +1,97 @@
|
|||
{
|
||||
"stay_safe": "Bleiben Sie sicher",
|
||||
"stay_safe": "Bleib sicher",
|
||||
"welcome": {
|
||||
"welcome": "Willkommen",
|
||||
"select_language": "Sprache auswählen",
|
||||
"select_language": "Wählen Sie Ihre Sprache",
|
||||
"language_label": "Sprache",
|
||||
"start": "Start",
|
||||
"enter": "Eingeben"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "Zu Ihrer Sicherheit, spielen Sie nur wenn Sie bequem und entspannt sitzen",
|
||||
"warning": "Achtung"
|
||||
"start": "Starten",
|
||||
"enter": "Eintreten"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Entdecken Sie das interaktive Spiel Stay Safe, wo jede Auswahl Ihre Sicherheit auf Lhoist-Standorten beeinflusst."
|
||||
"app_description": "Entdecken Sie das interaktive Spiel Stay Safe, bei dem Ihre Entscheidungen Ihre Sicherheit am Arbeitsplatz bestimmen."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Besucher",
|
||||
"driver": "Fahrer",
|
||||
"lhoist_employee": "Lhoist-Angestellter",
|
||||
"subcontractor_employee": "Auftragnehmer"
|
||||
"driver": "LKW-Fahrer",
|
||||
"lhoist_employee": "Lhoist-Mitarbeiter",
|
||||
"subcontractor_employee": "Mitarbeiter eines Subunternehmers"
|
||||
},
|
||||
"iam": "Ich bin",
|
||||
"profile": "Profil"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Ich befinde mich in ...",
|
||||
"iamfrom": "Ich komme aus",
|
||||
"profile": "Profil",
|
||||
"country_label": "Land"
|
||||
},
|
||||
"game": {
|
||||
"found": "Gefunden!",
|
||||
"is_it_secure": "Sicher oder riskant?",
|
||||
"is_it_secure_question": "Stellt die Situation ein grosses Sicherheitsrisiko dar oder stellen Sie ein gutes Verhalten fest?",
|
||||
"is_it_secure": "sicher oder riskant?",
|
||||
"is_it_secure_question": "Stellt die Situation ein großes Risiko dar oder identifizieren Sie ein gutes Verhalten?",
|
||||
"secure": "Sicher",
|
||||
"risky": "Riskant",
|
||||
"next": "Nächste Seite",
|
||||
"previous": "Vorherige Seite",
|
||||
"next": "Weiter",
|
||||
"previous": "Zurück",
|
||||
"right_answer": "Richtige Antwort",
|
||||
"wrong_answer": "Falsche Antwort",
|
||||
"it_is_risk": "Dieses Verhalten birgt Risiken",
|
||||
"it_is_not_risk": "Es ist ein sicheres Verhalten"
|
||||
"it_is_risk": "Es ist ein Risiko",
|
||||
"it_is_not_risk": "Es ist kein Risiko"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Wie spielt man?",
|
||||
"move_around": "Bewegen Sie sich im Spiel",
|
||||
"move_around_description": "Bewegen und halten Sie den Cursor gedrückt oder fahren Sie mit dem Finger über Ihren Smartphone-Bildschirm, um die Szene zu erkunden.",
|
||||
"walkthrough": "Spielablauf",
|
||||
"walkthrough_description": "Erkennen Sie bewährte und schlechte Praktiken durch Anklicken der Verhaltensweisen in der Szene.",
|
||||
"points_and_time": "Punkte und Chronometer",
|
||||
"points_and_time_description": "Erkennen Sie verschiedene Verhaltensweisen und machen Sie möglicht wenige Fehler - Sicherheit geht vor - und das so schnell wie möglich."
|
||||
"move_around_description": "Bewegen Sie sich und halten Sie den Cursor Ihrer Maus gedrückt oder wischen Sie mit Ihrem Finger über den Bildschirm Ihres Telefons, um die Szene zu erkunden.",
|
||||
"walkthrough": "Ablauf eines Spiels",
|
||||
"walkthrough_description": "Identifizieren Sie gute und schlechte Praktiken, indem Sie auf Objekte und Handlungen in der Szene klicken.",
|
||||
"points_and_time": "Punkte und Zeitmesser",
|
||||
"points_and_time_description": "Identifizieren Sie die verschiedenen Aktionen, indem Sie so wenige Fehler wie möglich machen, Sicherheit ist ein Muss, und das so schnell wie möglich!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Sicherheitsbericht",
|
||||
"perfect_title": "Glückwunsch!",
|
||||
"perfect_text": "Ihre hervorragende Leistung zeugt von starkem Bewusstsein von Risiken und Engagement für die Sicherheit und trägt so zu einem sicheren Arbeitsumfeld für alle bei.",
|
||||
"perfect_motivation_line": "Weiter so!",
|
||||
"perfect_title": "Herzlichen Glückwunsch!",
|
||||
"perfect_text": "Ihre ausgezeichnete Leistung zeigt ein starkes Bewusstsein für Risiken und ein Engagement für Sicherheit, was zu einer sicheren Arbeitsumgebung für alle beiträgt.",
|
||||
"perfect_motivation_line": "Machen Sie weiter so!",
|
||||
"congrats_title": "Glückwunsch!",
|
||||
"congrats_text": "Ihr Risikobewusstsein ist positiv, aber erinnern wir uns daran, dass unser Arbeitsumfeld zu Unfällen führen kann, wenn wir nicht wachsam sind.",
|
||||
"congrats_motivation_line": "Lasst uns gemeinsam unsere Wachsamkeit verbessern!",
|
||||
"congrats_text": "Ihr Risikobewusstsein ist positiv, aber lassen Sie uns daran denken, dass die Realität unserer Arbeitsumgebung zu Unfällen führen kann, wenn wir nicht wachsam sind.",
|
||||
"congrats_motivation_line": "Gemeinsam erhöhen wir unsere Wachsamkeit!",
|
||||
"attention_title": "Achtung...",
|
||||
"attention_text": "Ohne ständige Wachsamkeit kann schnell ein Unfall passieren. Nutzen Sie diese Erfahrung zur Entwicklung eines erhöhten Risikobewusstseins.",
|
||||
"attention_text": "Ein Unfall kann schnell passieren, ohne ständige Wachsamkeit. Nutzen Sie diese Erfahrung als Gelegenheit, das Risikobewusstsein zu erhöhen.",
|
||||
"attention_motivation_line": "Bleiben Sie wachsam!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Noten",
|
||||
"text": "Danke, dass Sie Stay Safe gespielt haben. Ihre Meinung ist uns wichtig",
|
||||
"placeholder": "Wie bewerten Sie die Erfahrung?"
|
||||
"title": "Bewertungen",
|
||||
"text": "Danke, dass Sie Stay Safe gespielt haben. Ihr Feedback ist uns wichtig",
|
||||
"placeholder": "Was haben Sie von dieser Erfahrung gehalten?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Start",
|
||||
"start": "Starten",
|
||||
"back": "Zurück",
|
||||
"next": "Nächste Seite",
|
||||
"previous": "Vorherige Seite",
|
||||
"continue": "Fortfahren",
|
||||
"submit": "Senden",
|
||||
"next": "Weiter",
|
||||
"previous": "Zurück",
|
||||
"submit": "Einreichen",
|
||||
"yes": "Ja",
|
||||
"no": "Nein",
|
||||
"openMenu": "Menü öffnen",
|
||||
"closeMenu": "Menü schliessen",
|
||||
"closeMenu": "Menü schließen",
|
||||
"language": "Sprache",
|
||||
"loading": "Wird geladen ...",
|
||||
"last_update": "Letzte Aktualisierung",
|
||||
"show_help": "Hilfedatei anzeigen",
|
||||
"download": "Herunterladen"
|
||||
"loading": "Laden",
|
||||
"last_update": "Letztes Update"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Stay Safe Ausgabe",
|
||||
"all_rights_reserved": "Alle Rechte vorbehalten."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Fehler 404",
|
||||
"page_not_found": "Seite nicht gefunden",
|
||||
"explanation": "Oops... Es scheint, dass die von Ihnen gesuchte Seite nicht existiert!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "Bezüglich",
|
||||
"about": "Über",
|
||||
"themes": "Themen",
|
||||
"conditions": "Nutzungsbedingungen",
|
||||
"cookies": "Datenverarbeitung",
|
||||
"confidentiality": "Datenschutzpolitik"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Anonyme Daten",
|
||||
"description": "Unsere Plattform anonymisiert Ihre Angaben, um Ihre Benutzererfahrung auf unserer Seite zu optimieren und anzupassen. Für Einzelheiten hinsichtlich gesammelter Angaben und deren Verwendung verweisen wir auf unsere Datenschutzerklärung."
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Datenschutzrichtlinie"
|
||||
}
|
||||
}
|
||||
|
|
@ -3,90 +3,83 @@
|
|||
"welcome": {
|
||||
"welcome": "Welcome",
|
||||
"select_language": "Select your language",
|
||||
"language_label": "Language",
|
||||
"language_label": "language",
|
||||
"start": "Start",
|
||||
"enter": "Enter"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "For your safety, only play when you are well seated and stationary.",
|
||||
"warning": "Attention"
|
||||
"enter": "Entrer"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Discover the interactive Stay Safe game, where your choices will determine your safety on Lhoist installations."
|
||||
"app_description": "Explore the interactive game Stay Safe, where your choices will determine your safety at the workplace."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Visitor",
|
||||
"driver": "Driver",
|
||||
"lhoist_employee": "Lhoist employee",
|
||||
"subcontractor_employee": "Contractor"
|
||||
"driver": "Truck Driver",
|
||||
"lhoist_employee": "Lhoist Employee",
|
||||
"subcontractor_employee": "Subcontractor Employee"
|
||||
},
|
||||
"iam": "I am",
|
||||
"profile": "Profile"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "I am in",
|
||||
"iamfrom": "I am from",
|
||||
"profile": "Profile",
|
||||
"country_label": "Country"
|
||||
},
|
||||
"game": {
|
||||
"found": "Found!",
|
||||
"is_it_secure": "Safe or risky?",
|
||||
"is_it_secure_question": "Does the situation pose a major risk, or do you identify good behavior?",
|
||||
"secure": "Safe",
|
||||
"is_it_secure": "secure or risky?",
|
||||
"is_it_secure_question": "Does the situation pose a major risk or do you identify good behavior?",
|
||||
"secure": "Secure",
|
||||
"risky": "Risky",
|
||||
"next": "Next",
|
||||
"previous": "Previous",
|
||||
"right_answer": "Correct answer",
|
||||
"right_answer": "Right answer",
|
||||
"wrong_answer": "Wrong answer",
|
||||
"it_is_risk": "It's risky behavior",
|
||||
"it_is_not_risk": "It's safe behavior"
|
||||
"it_is_risk": "It is a risk",
|
||||
"it_is_not_risk": "It is not a risk"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "How to play?",
|
||||
"move_around": "Moving around the game",
|
||||
"move_around_description": "Move and hold the cursor with your mouse or swipe your finger on your phone screen to explore the scene.",
|
||||
"walkthrough": "Aim of the game",
|
||||
"walkthrough_description": "Identify good and bad practices by clicking on objects and actions in the scene.",
|
||||
"points_and_time": "Points and timing",
|
||||
"points_and_time_description": "Identify various actions by making the fewest mistakes possible, safety first, and as quickly as possible!"
|
||||
"move_around": "Move around in the game",
|
||||
"move_around_description": "Move and keep pressing with the cursor of your mouse or slide your finger on your phone's screen to explore the scene.",
|
||||
"walkthrough": "Course of a game",
|
||||
"walkthrough_description": "Identify the good and bad practices by clicking on the objects and actions in the scene.",
|
||||
"points_and_time": "Points and timer",
|
||||
"points_and_time_description": "Identify the various actions by making as few mistakes as possible, safety is a must, and do it as quickly as possible!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Safety report",
|
||||
"perfect_title": "Congratulations!",
|
||||
"perfect_title": "Congratulations !",
|
||||
"perfect_text": "Your excellent performance shows a strong awareness of risks and a commitment to safety, contributing to a safe working environment for everyone.",
|
||||
"perfect_motivation_line": "Keep it up!",
|
||||
"congrats_title": "Congratulations!",
|
||||
"perfect_motivation_line": "Keep it up !",
|
||||
"congrats_title": "Félicitations !",
|
||||
"congrats_text": "Your risk awareness is positive, but let's remember that the reality of our work environment can lead to accidents if we are not vigilant.",
|
||||
"congrats_motivation_line": "Together, let's step up our vigilance!",
|
||||
"attention_title": "Beware...",
|
||||
"congrats_motivation_line": "Together, let's step up our vigilance !",
|
||||
"attention_title": "Attention...",
|
||||
"attention_text": "An accident can happen quickly without constant vigilance. Use this experience as an opportunity to develop increased risk awareness.",
|
||||
"attention_motivation_line": "Stay alert!"
|
||||
"attention_motivation_line": "Stay alert !"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Notes",
|
||||
"title": "Ratings",
|
||||
"text": "Thank you for playing Stay Safe. Your feedback is important to us",
|
||||
"placeholder": "What did you think of the experience?"
|
||||
"placeholder": "What did you think of this experience?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Start",
|
||||
"back": "Back",
|
||||
"next": "Next",
|
||||
"previous": "Previous",
|
||||
"continue": "Continue",
|
||||
"submit": "Submit",
|
||||
"yes": "Yes",
|
||||
"no": "No",
|
||||
"openMenu": "Open the menu",
|
||||
"closeMenu": "Close the menu",
|
||||
"openMenu": "Open menu",
|
||||
"closeMenu": "Close menu",
|
||||
"language": "Language",
|
||||
"loading": "Loading",
|
||||
"last_update": "Last update",
|
||||
"show_help": "Show help",
|
||||
"download": "Download"
|
||||
"last_update": "Last Update"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Stay Safe Edition",
|
||||
"copyright": "Stay Safe edition",
|
||||
"all_rights_reserved": "All rights reserved."
|
||||
},
|
||||
"screen_404": {
|
||||
|
|
@ -97,12 +90,8 @@
|
|||
"pagesName": {
|
||||
"about": "About",
|
||||
"themes": "Themes",
|
||||
"conditions": "Terms of use",
|
||||
"cookies": "Data management",
|
||||
"confidentiality": "Privacy policy"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Anonymous data",
|
||||
"description": "Our platform processes your information anonymously to optimise and personalise your user experience on our site. To learn in detail about the data collected and its usage, please refer to our data management policy."
|
||||
"conditions": "Terms of Use",
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Privacy Policy"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,89 +1,82 @@
|
|||
{
|
||||
"stay_safe": "Mantente seguro",
|
||||
"stay_safe": "Mantente a salvo",
|
||||
"welcome": {
|
||||
"welcome": "Bienvenido/a",
|
||||
"select_language": "Selección de idioma",
|
||||
"language_label": "Idioma",
|
||||
"start": "Empezar",
|
||||
"welcome": "Bienvenido",
|
||||
"select_language": "Seleccione su idioma",
|
||||
"language_label": "idioma",
|
||||
"start": "Comenzar",
|
||||
"enter": "Entrar"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "Por tu seguridad, juega únicamente cuando estés bien instalado y detenido.",
|
||||
"warning": "Atención"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Descubre el juego interactivo Stay Safe, donde tus elecciones determinarán tu seguridad en las instalaciones de Lhoist."
|
||||
"app_description": "Descubra el juego interactivo Stay Safe, donde sus elecciones determinarán su seguridad en el lugar de trabajo."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Visitante",
|
||||
"driver": "Conductor",
|
||||
"driver": "Conductor de camión",
|
||||
"lhoist_employee": "Empleado de Lhoist",
|
||||
"subcontractor_employee": "Contratista"
|
||||
"subcontractor_employee": "Empleado de subcontratista"
|
||||
},
|
||||
"iam": "Soy",
|
||||
"iam": "Yo soy",
|
||||
"profile": "Perfil"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Estoy en",
|
||||
"iamfrom": "Soy de",
|
||||
"profile": "Perfil",
|
||||
"country_label": "País"
|
||||
},
|
||||
"game": {
|
||||
"found": "¡Encontrado!",
|
||||
"is_it_secure": "Seguro o arriesgado?",
|
||||
"is_it_secure_question": "¿Presenta la situación un riesgo importante, o la identificas como un buen comportamiento?",
|
||||
"is_it_secure": "¿seguro o riesgoso?",
|
||||
"is_it_secure_question": "¿La situación representa un riesgo mayor o identifica un buen comportamiento?",
|
||||
"secure": "Seguro",
|
||||
"risky": "Arriesgado",
|
||||
"next": "Siguiente",
|
||||
"previous": "Previo",
|
||||
"right_answer": "Respuesta correct",
|
||||
"previous": "Anterior",
|
||||
"right_answer": "Respuesta correcta",
|
||||
"wrong_answer": "Respuesta incorrecta",
|
||||
"it_is_risk": "Es un comportamiento arriesgado",
|
||||
"it_is_not_risk": "Es un comportamiento seguro"
|
||||
"it_is_risk": "Es un riesgo",
|
||||
"it_is_not_risk": "No es un riesgo"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Cómo jugar?",
|
||||
"move_around": "Desplazándose en el juego",
|
||||
"move_around_description": "Desplaza y mantén presionado el cursor de tu ratón o desliza el dedo sobre la pantalla para explorar la escena.",
|
||||
"walkthrough": "Desarrollo de una partida",
|
||||
"walkthrough_description": "Identifica las buenas y malas prácticas haciendo clic sobre las acciones de la escena.",
|
||||
"move_around": "Muévete en el juego",
|
||||
"move_around_description": "Muévete y mantén presionado con el cursor de tu ratón o desliza tu dedo en la pantalla de tu teléfono para explorar la escena.",
|
||||
"walkthrough": "Desarrollo del juego",
|
||||
"walkthrough_description": "Identifica las buenas y malas prácticas haciendo clic en los objetos y acciones de la escena.",
|
||||
"points_and_time": "Puntos y cronómetro",
|
||||
"points_and_time_description": "Identifica las distintas acciones haciendo el menor número posible de errores, seguridad ante todo, ¡lo más rápido posible!"
|
||||
"points_and_time_description": "Identifica las diversas acciones cometiendo el menor número de errores posible, la seguridad es lo primero, ¡y hazlo lo más rápido posible!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Informe de seguridad",
|
||||
"perfect_title": "¡Felicidades!",
|
||||
"perfect_text": "Tu excelente desempeño muestra una fuerte conciencia de los riesgos y un compromiso con la seguridad, contribuyendo así a un entorno de trabajo seguro para todos.",
|
||||
"perfect_text": "Tu excelente desempeño muestra una sólida conciencia de los riesgos y un compromiso con la seguridad, contribuyendo a un ambiente de trabajo seguro para todos.",
|
||||
"perfect_motivation_line": "¡Sigue así!",
|
||||
"congrats_title": "¡Felicidades!",
|
||||
"congrats_text": "Tu conciencia del riesgo es positiva, pero recordemos que la realidad de nuestro entorno de trabajo puede llevar a accidentes si no estamos vigilantes.",
|
||||
"congrats_motivation_line": "¡Reforcemos juntos nuestra vigilancia!",
|
||||
"congrats_title": "¡Félicitations!",
|
||||
"congrats_text": "Tu conciencia del riesgo es positiva, pero recordemos que la realidad de nuestro entorno laboral puede llevar a accidentes si no estamos vigilantes.",
|
||||
"congrats_motivation_line": "¡Juntos, aumentemos nuestra vigilancia!",
|
||||
"attention_title": "Atención...",
|
||||
"attention_text": "Un accidente puede ocurrir rápidamente sin una vigilancia constante. Utiliza esta experiencia como una oportunidad para desarrollar una mayor conciencia del riesgo.",
|
||||
"attention_text": "Un accidente puede ocurrir rápidamente sin vigilancia constante. Utiliza esta experiencia como una oportunidad para desarrollar una mayor conciencia del riesgo.",
|
||||
"attention_motivation_line": "¡Mantente alerta!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Notas",
|
||||
"text": "Gracias por jugar a Stay Safe. Tu opinión es importante para nosotros",
|
||||
"placeholder": "¿Qué piensas de la experiencia?"
|
||||
"placeholder": "¿Qué te ha parecido esta experiencia?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Comenzar",
|
||||
"back": "Volver",
|
||||
"next": "Siguiente",
|
||||
"previous": "Previo",
|
||||
"continue": "Continuar",
|
||||
"previous": "Anterior",
|
||||
"submit": "Enviar",
|
||||
"yes": "Sí",
|
||||
"no": "No",
|
||||
"openMenu": "Abrir el menú",
|
||||
"closeMenu": "Cerrar el menú",
|
||||
"openMenu": "Abrir menú",
|
||||
"closeMenu": "Cerrar menú",
|
||||
"language": "Idioma",
|
||||
"loading": "Cargando",
|
||||
"last_update": "Última actualización",
|
||||
"show_help": "Mostrar ayuda",
|
||||
"download": "Descargar"
|
||||
"last_update": "Última actualización"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Edición Stay Safe",
|
||||
|
|
@ -91,18 +84,14 @@
|
|||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"page_not_found": "Página no encontrada",
|
||||
"explanation": "¡Vaya! Parece que la página que buscas no existe."
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "A cerca de",
|
||||
"themes": "Temáticas",
|
||||
"about": "Acerca de",
|
||||
"themes": "Temas",
|
||||
"conditions": "Términos de uso",
|
||||
"cookies": "Gestión de datos",
|
||||
"confidentiality": "Política de confidencialidad"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Datos anónimos",
|
||||
"description": "Nuestra plataforma trata su información de manera anónima con el objetivo de optimizar y personalizar su experiencia de usuario en nuestro sitio. Para conocer en detalle los datos recopilados y su uso, consulte nuestra política de gestión de datos."
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Política de privacidad"
|
||||
}
|
||||
}
|
||||
|
|
@ -2,107 +2,96 @@
|
|||
"stay_safe": "Pysy turvassa",
|
||||
"welcome": {
|
||||
"welcome": "Tervetuloa",
|
||||
"select_language": "Valitse haluamasi kieli",
|
||||
"language_label": "Kieli",
|
||||
"select_language": "Valitse kieli",
|
||||
"language_label": "kieli",
|
||||
"start": "Aloita",
|
||||
"enter": "Kirjoita"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "Turvallisuutesi varmistamiseksi sinun kannattaa pelata vain silloin, kun istut mukavasti paikallasi.",
|
||||
"warning": "Huomio"
|
||||
"enter": "Syötä"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Tutustu vuorovaikutteiseen Stay Safe -peliin, jossa valintasi ratkaisevat turvallisuutesi Lhoist-asennustöissä."
|
||||
"app_description": "Tutustu interaktiiviseen Stay Safe -peliin, jossa valintasi määrittävät turvallisuutesi työpaikalla."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Vierailija",
|
||||
"driver": "Kuljettaja",
|
||||
"driver": "Rekkakuski",
|
||||
"lhoist_employee": "Lhoistin työntekijä",
|
||||
"subcontractor_employee": "Urakoitsija"
|
||||
"subcontractor_employee": "Alihankkijan työntekijä"
|
||||
},
|
||||
"iam": "Olen",
|
||||
"iam": "Minä olen",
|
||||
"profile": "Profiili"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Maani on",
|
||||
"iamfrom": "Olen kotoisin",
|
||||
"profile": "Profiili",
|
||||
"country_label": "Maa"
|
||||
},
|
||||
"game": {
|
||||
"found": "Löytyi!",
|
||||
"is_it_secure": "Turvallista vai riskialtista?",
|
||||
"is_it_secure_question": "Aiheutuuko tilanteesta suuri riski vai tunnistatko siitä hyvän käytöksen?",
|
||||
"secure": "Turvallista",
|
||||
"risky": "Riskialtista",
|
||||
"found": "Löydetty!",
|
||||
"is_it_secure": "turvallinen vai riskialtis?",
|
||||
"is_it_secure_question": "Onko tilanteessa suuri riski vai tunnistatko hyvän käytöksen?",
|
||||
"secure": "Turvallinen",
|
||||
"risky": "Riskialtis",
|
||||
"next": "Seuraava",
|
||||
"previous": "Edellinen",
|
||||
"right_answer": "Oikea vastaus",
|
||||
"wrong_answer": "Väärä vastaus",
|
||||
"it_is_risk": "Se on riskialtista käyttäytymistä",
|
||||
"it_is_not_risk": "Se on turvallista käyttäytymistä"
|
||||
"it_is_risk": "Se on riski",
|
||||
"it_is_not_risk": "Se ei ole riski"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Miten peliä pelataan?",
|
||||
"move_around": "Liikkuminen pelissä",
|
||||
"move_around_description": "Tutustu kohtaukseen liikuttamalla hiiren kohdistinta ja pitämällä sitä painettuna tai pyyhkäisemällä puhelimen näyttöä sormellasi.",
|
||||
"walkthrough": "Pelin tavoite",
|
||||
"walkthrough_description": "Tunnista hyvät ja huonot käytännöt napsauttamalla kohteita ja toimia kohtauksessa.",
|
||||
"points_and_time": "Pisteet ja ajoitus",
|
||||
"points_and_time_description": "Tunnista eri toimet tekemällä mahdollisimman vähän virheitä, pitämällä turvallisuuden etusijalla sekä toimimalla mahdollisimman nopeasti!"
|
||||
"how_to_play": "Kuinka pelata?",
|
||||
"move_around": "Liiku pelissä",
|
||||
"move_around_description": "Liiku ja pidä hiiren kursoria painettuna tai pyyhkäise sormellasi puhelimen näyttöä tutkiaksesi kohtausta.",
|
||||
"walkthrough": "Pelin kulku",
|
||||
"walkthrough_description": "Tunnista hyvät ja huonot käytännöt klikkaamalla kohtauksen esineitä ja toimintoja.",
|
||||
"points_and_time": "Pisteet ja ajastin",
|
||||
"points_and_time_description": "Tunnista erilaiset toiminnot tekemällä mahdollisimman vähän virheitä, turvallisuus on tärkeintä, ja tee se mahdollisimman nopeasti!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Turvallisuusraportti",
|
||||
"perfect_title": "Onnittelut!",
|
||||
"perfect_text": "Erinomainen suorituksesi osoittaa vahvaa riskitietoisuutta ja sitoutumista turvallisuuteen, mikä auttaa luomaan turvallisen työympäristön kaikille.",
|
||||
"perfect_text": "Erinomainen suorituksesi osoittaa vahvan riskien tunnistamisen ja sitoutumisen turvallisuuteen, mikä edistää turvallista työympäristöä kaikille.",
|
||||
"perfect_motivation_line": "Jatka samaan malliin!",
|
||||
"congrats_title": "Onnittelut!",
|
||||
"congrats_text": "Riskitietoisuutesi on myönteistä, mutta meidän tulee pitää mielessä työympäristömme todelliset olosuhteet, jotka voivat johtaa tapaturmiin, ellemme ole valppaita.",
|
||||
"congrats_motivation_line": "Tehostetaan yhdessä valppautta!",
|
||||
"attention_title": "Varo...",
|
||||
"attention_text": "Tapaturma voi tapahtua nopeasti ilman jatkuvaa valppautta. Sinun kannattaa ajatella tätä kokemusta tilaisuutena kartuttaa riskitietoisuutta.",
|
||||
"congrats_text": "Riskitietoisuutesi on myönteinen, mutta muistetaan, että työympäristömme todellisuus voi johtaa tapaturmiin, jos emme ole valppaina.",
|
||||
"congrats_motivation_line": "Yhdessä lisätään valppauttamme!",
|
||||
"attention_title": "Huomio...",
|
||||
"attention_text": "Onnettomuus voi tapahtua nopeasti ilman jatkuvaa valppautta. Hyödynnä tätä kokemusta tilaisuutena lisätä riskitietoisuutta.",
|
||||
"attention_motivation_line": "Pysy valppaana!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Huomautukset",
|
||||
"title": "Arvostelut",
|
||||
"text": "Kiitos, että pelasit Stay Safe -peliä. Palautteesi on meille tärkeää",
|
||||
"placeholder": "Mitä mieltä olit kokemuksesta?"
|
||||
"placeholder": "Mitä mieltä olit tästä kokemuksesta?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Aloita",
|
||||
"back": "Takaisin",
|
||||
"next": "Seuraava",
|
||||
"previous": "Edellinen",
|
||||
"continue": "Jatka",
|
||||
"submit": "Lähetä",
|
||||
"yes": "Kyllä",
|
||||
"no": "Ei",
|
||||
"openMenu": "Avaa valikko",
|
||||
"closeMenu": "Sulje valikko",
|
||||
"language": "Kieli",
|
||||
"loading": "Ladataan",
|
||||
"last_update": "Viimeisin päivitys",
|
||||
"show_help": "Näytä ohje",
|
||||
"download": "Lataa"
|
||||
"loading": "Lataa",
|
||||
"last_update": "Viimeisin päivitys"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Stay Safe -versio",
|
||||
"copyright": "Stay Safe -painos",
|
||||
"all_rights_reserved": "Kaikki oikeudet pidätetään."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Virhe 404",
|
||||
"page_not_found": "Sivua ei löytynyt",
|
||||
"explanation": "Hupsista... Näyttää siltä, että etsimääsi sivua ei ole olemassa!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "Tietoja",
|
||||
"about": "Tietoa",
|
||||
"themes": "Teemat",
|
||||
"conditions": "Käyttöehdot",
|
||||
"cookies": "Tietojen hallinta",
|
||||
"cookies": "Evästeet",
|
||||
"confidentiality": "Tietosuojakäytäntö"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Anonyymit tiedot",
|
||||
"description": "Alustamme käsittelee tietojasi anonyymisti, jotta käyttäjäkokemuksesi voidaan optimoida ja yksilöllistää sivustollamme. Lisätietoja kerätyistä tiedoista ja niiden käytöstä löydät tiedonhallintakäytännöstämme."
|
||||
}
|
||||
}
|
||||
|
|
@ -2,8 +2,8 @@
|
|||
"stay_safe": "Restez en sécurité",
|
||||
"welcome": {
|
||||
"welcome": "Bienvenue",
|
||||
"select_language": "Sélectionnez votre langue",
|
||||
"language_label": "Langue",
|
||||
"select_language": "Séléctionnez votre langue",
|
||||
"language_label": "langue",
|
||||
"start": "Commencer",
|
||||
"enter": "Entrer"
|
||||
},
|
||||
|
|
@ -12,12 +12,12 @@
|
|||
"warning": "Attention"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Découvrez le jeu interactif Stay Safe, où vos choix détermineront votre sécurité sur les installations Lhoist."
|
||||
"app_description": "Découvrez le jeu interactif Stay Safe, où vos choix détermineront votre sécurité sur votre lieu de travail."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Visiteur",
|
||||
"driver": "Conducteur",
|
||||
"driver": "Chauffeur de camion",
|
||||
"lhoist_employee": "Employé Lhoist",
|
||||
"subcontractor_employee": "Sous-traitant"
|
||||
},
|
||||
|
|
@ -30,8 +30,8 @@
|
|||
"country_label": "Pays"
|
||||
},
|
||||
"game": {
|
||||
"found": "Trouvé !",
|
||||
"is_it_secure": "Sécurisé ou risqué ?",
|
||||
"found": "Trouvé !",
|
||||
"is_it_secure": "securisé ou risqué ?",
|
||||
"is_it_secure_question": "Est-ce que la situation comporte un risque majeur ou identifiez vous un bon comportement ?",
|
||||
"secure": "Sécurisé",
|
||||
"risky": "Risqué",
|
||||
|
|
@ -53,15 +53,15 @@
|
|||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Rapport de sécurité",
|
||||
"perfect_title": "Félicitations !",
|
||||
"perfect_text": "Votre excellente performance montre une forte conscience des risques et un engagement pour la sécurité, contribuant ainsi à un environnement de travail sûr pour tous.",
|
||||
"perfect_motivation_line": "Continuez sur cette voie !",
|
||||
"congrats_title": "Félicitations !",
|
||||
"perfect_title": "Félicitations !",
|
||||
"perfect_text": "Votre excellente performance montre une forte conscience des risques et un engagement pour la sécurité, contribuant ainsi à un environnement de travail sûr pour tous. ",
|
||||
"perfect_motivation_line": "Continuez sur cette voie !",
|
||||
"congrats_title": "Félicitations !",
|
||||
"congrats_text": "Votre sensibilisation aux risques est positive, mais rappelons-nous que la réalité de notre environnement professionnel peut engendrer des accidents si nous ne restons pas vigilants.",
|
||||
"congrats_motivation_line": "Ensemble, renforçons notre vigilance !",
|
||||
"attention_title": "Attention...",
|
||||
"attention_text": "Un accident peut survenir rapidement sans une vigilance constante. Utilisez cette expérience comme une opportunité pour développer une conscience accrue des risques.",
|
||||
"attention_motivation_line": "Restez vigilant !"
|
||||
"attention_motivation_line": "Restez vigilant !"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Notes",
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
"placeholder": "Qu'avez-vous pensé de cette expérience ?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Commencer",
|
||||
"start": "commencer",
|
||||
"back": "Retour",
|
||||
"next": "Suivant",
|
||||
"previous": "Précédent",
|
||||
|
|
@ -82,17 +82,16 @@
|
|||
"language": "Langue",
|
||||
"loading": "Chargement",
|
||||
"last_update": "Dernière mise à jour",
|
||||
"show_help": "Afficher l'aide",
|
||||
"download": "Télécharger"
|
||||
"show_help": "Afficher l'aide"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Édition Stay Safe",
|
||||
"copyright": "édition Stay Safe",
|
||||
"all_rights_reserved": "Tous droits réservés."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Erreur 404",
|
||||
"page_not_found": "Page non trouvée",
|
||||
"explanation": "C'est embarassant... Il semblerait que la page que vous cherchiez n'existe pas !"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "À propos",
|
||||
|
|
@ -100,9 +99,5 @@
|
|||
"conditions": "Conditions d'utilisation",
|
||||
"cookies": "Gestion des données",
|
||||
"confidentiality": "Politique de confidentialité"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Données Anonymes",
|
||||
"description": "Notre plateforme traite vos informations de façon anonyme dans le but d'optimiser et de personnaliser votre expérience utilisateur sur notre site. Pour connaître en détail les données collectées et leur usage, consultez notre politique de gestion des données."
|
||||
}
|
||||
}
|
||||
88
src/data/screensTranslations_IT.json
Normal file
88
src/data/screensTranslations_IT.json
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
{
|
||||
"stay_safe": "Stay Safe",
|
||||
"welcome": {
|
||||
"welcome": "Benvenuti",
|
||||
"select_language": "Seleziona la tua lingua",
|
||||
"language_label": "lingua",
|
||||
"start": "Inizia",
|
||||
"enter": "Entra"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Scopri il gioco interattivo Stay Safe, dove le tue scelte determineranno la tua sicurezza sul posto di lavoro."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Visitatore",
|
||||
"driver": "Autista di camion",
|
||||
"lhoist_employee": "Impiegato Lhoist",
|
||||
"subcontractor_employee": "Impiegato di subappaltatore"
|
||||
},
|
||||
"iam": "Io sono",
|
||||
"profile": "Profilo"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Vengo da",
|
||||
"profile": "Profilo",
|
||||
"country_label": "Paese"
|
||||
},
|
||||
"game": {
|
||||
"found": "Trovato!",
|
||||
"is_it_secure": "sicuro o rischioso?",
|
||||
"is_it_secure_question": "La situazione comporta un rischio maggiore o riconosci un comportamento corretto?",
|
||||
"secure": "Sicuro",
|
||||
"risky": "Rischioso",
|
||||
"next": "Successivo",
|
||||
"previous": "Precedente",
|
||||
"right_answer": "Risposta corretta",
|
||||
"wrong_answer": "Risposta errata",
|
||||
"it_is_risk": "È un rischio",
|
||||
"it_is_not_risk": "Non è un rischio"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Report sulla sicurezza",
|
||||
"perfect_title": "Congratulazioni!",
|
||||
"perfect_text": "La tua eccellente performance dimostra una forte consapevolezza dei rischi e un impegno per la sicurezza, contribuendo a un ambiente di lavoro sicuro per tutti.",
|
||||
"perfect_motivation_line": "Continua così!",
|
||||
"congrats_title": "Congratulazioni!",
|
||||
"congrats_text": "La tua consapevolezza del rischio è positiva, ma ricordiamo che la realtà del nostro ambiente di lavoro può portare ad incidenti se non siamo vigili.",
|
||||
"congrats_motivation_line": "Insieme, aumentiamo la nostra vigilanza!",
|
||||
"attention_title": "Attenzione...",
|
||||
"attention_text": "Un incidente può accadere rapidamente senza vigilanza costante. Utilizza questa esperienza come opportunità per sviluppare una maggiore consapevolezza del rischio.",
|
||||
"attention_motivation_line": "Rimani allerta!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Valutazioni",
|
||||
"text": "Grazie per aver giocato a Stay Safe. La tua opinione è importante per noi",
|
||||
"placeholder": "Cosa ne pensi di questa esperienza?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Iniziare",
|
||||
"back": "Indietro",
|
||||
"next": "Successivo",
|
||||
"previous": "Precedente",
|
||||
"submit": "Invia",
|
||||
"yes": "Sì",
|
||||
"no": "No",
|
||||
"openMenu": "Apri menu",
|
||||
"closeMenu": "Chiudi menu",
|
||||
"language": "Lingua",
|
||||
"loading": "Caricamento",
|
||||
"last_update": "Ultimo aggiornamento"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Edizione Stay Safe",
|
||||
"all_rights_reserved": "Tutti i diritti riservati."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Errore 404",
|
||||
"page_not_found": "Pagina non trovata",
|
||||
"explanation": "Ops... Sembra che la pagina che stavi cercando non esista!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "Su",
|
||||
"themes": "Argomenti",
|
||||
"conditions": "Termini di utilizzo",
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Informativa sulla privacy"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,108 +1,97 @@
|
|||
{
|
||||
"stay_safe": "Jaga keselamatan",
|
||||
"stay_safe": "Kekal selamat",
|
||||
"welcome": {
|
||||
"welcome": "Selamat datang",
|
||||
"welcome": "Selamat Datang",
|
||||
"select_language": "Pilih bahasa anda",
|
||||
"language_label": "Bahasa",
|
||||
"start": "Mulakan",
|
||||
"enter": "Masukkan"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "Untuk keselamatan anda, hanya bermain apabila anda duduk dengan baik dan tidak bergerak.",
|
||||
"warning": "Perhatian"
|
||||
"language_label": "bahasa",
|
||||
"enter": "Masuk"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Temui permainan interaktif Stay Safe, di mana pilihan anda akan menentukan keselamatan anda pada pemasangan Lhoist."
|
||||
"app_description": "Terokai permainan interaktif Stay Safe, di mana pilihan anda akan menentukan keselamatan anda di tempat kerja."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Pelawat",
|
||||
"driver": "Pemandu",
|
||||
"visitor": "Pelancong",
|
||||
"driver": "Pemandu trak",
|
||||
"lhoist_employee": "Pekerja Lhoist",
|
||||
"subcontractor_employee": "Kontraktor"
|
||||
"subcontractor_employee": "Pekerja subkontraktor"
|
||||
},
|
||||
"iam": "Saya adalah",
|
||||
"iam": "Saya",
|
||||
"profile": "Profil"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Saya berada di",
|
||||
"iamfrom": "Saya dari",
|
||||
"profile": "Profil",
|
||||
"country_label": "Negara"
|
||||
},
|
||||
"game": {
|
||||
"found": "Dijumpai!",
|
||||
"is_it_secure": "Selamat atau berisiko?",
|
||||
"is_it_secure_question": "Adakah situasi itu menimbulkan risiko besar, atau adakah anda mengenal pasti tingkah laku yang baik?",
|
||||
"found": "Ditemui!",
|
||||
"is_it_secure": "selamat atau berisiko?",
|
||||
"is_it_secure_question": "Adakah situasi itu membawa risiko besar atau anda mengenal pasti tingkah laku yang baik?",
|
||||
"secure": "Selamat",
|
||||
"risky": "Berisiko",
|
||||
"next": "Seterusnya",
|
||||
"previous": "Sebelumnya",
|
||||
"right_answer": "Jawapan yang betul",
|
||||
"wrong_answer": "Jawapan yang salah",
|
||||
"it_is_risk": "Ia adalah tingkah laku yang berisiko",
|
||||
"it_is_not_risk": "Ia adalah tingkah laku yang selamat"
|
||||
"right_answer": "Jawapan Betul",
|
||||
"wrong_answer": "Jawapan Salah",
|
||||
"it_is_risk": "Ini adalah risiko",
|
||||
"it_is_not_risk": "Ini bukan risiko"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Bagaimana untuk bermain?",
|
||||
"move_around": "Bergerak di sekeliling permainan",
|
||||
"move_around_description": "Gerakkan dan tahan kursor dengan tetikus anda atau leretkan jari pada skrin telefon anda untuk meneroka tempat kejadian.",
|
||||
"walkthrough": "Matlamat permainan",
|
||||
"walkthrough_description": "Kenal pasti amalan baik dan buruk dengan mengklik pada objek dan tindakan di tempat kejadian.",
|
||||
"how_to_play": "Cara bermain?",
|
||||
"move_around": "Bergerak dalam permainan",
|
||||
"move_around_description": "Bergerak dan tekan terus dengan kursor tetikus anda atau geser jari anda pada skrin telefon untuk meneroka adegan.",
|
||||
"walkthrough": "Perjalanan sebuah permainan",
|
||||
"walkthrough_description": "Kenal pasti amalan baik dan buruk dengan mengklik pada objek dan tindakan dalam adegan.",
|
||||
"points_and_time": "Mata dan masa",
|
||||
"points_and_time_description": "Kenal pasti pelbagai tindakan dengan membuat kesilapan sekecil mungkin, keselamatan diutamakan, dan secepat mungkin!"
|
||||
"points_and_time_description": "Kenal pasti pelbagai tindakan dengan membuat seberapa sedikit"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Laporan keselamatan",
|
||||
"results_screen_title": "Laporan Keselamatan",
|
||||
"perfect_title": "Tahniah!",
|
||||
"perfect_text": "Prestasi cemerlang anda menunjukkan kesedaran yang kukuh tentang risiko dan komitmen terhadap keselamatan, menyumbang kepada persekitaran kerja yang selamat untuk semua orang.",
|
||||
"perfect_motivation_line": "Teruskan!",
|
||||
"perfect_text": "Prestasi cemerlang anda menunjukkan kesedaran risiko yang kuat dan komitmen terhadap keselamatan, menyumbang kepada persekitaran kerja yang selamat untuk semua.",
|
||||
"perfect_motivation_line": "Teruskan usaha anda!",
|
||||
"congrats_title": "Tahniah!",
|
||||
"congrats_text": "Kesedaran risiko anda adalah positif, tetapi mari kita ingat bahawa realiti persekitaran kerja kita boleh menyebabkan kemalangan jika kita tidak berjaga-jaga.",
|
||||
"congrats_motivation_line": "Mari kita tingkatkan kewaspadaan bersama-sama!",
|
||||
"attention_title": "Awas...",
|
||||
"attention_text": "Kemalangan boleh berlaku dengan cepat tanpa kewaspadaan yang berterusan. Gunakan pengalaman ini sebagai peluang untuk membangunkan kesedaran risiko yang lebih tinggi.",
|
||||
"attention_motivation_line": "Sentiasa berjaga-jaga!"
|
||||
"congrats_text": "Kesedaran risiko anda adalah positif, tetapi marilah kita ingat bahawa realiti persekitaran kerja kita boleh menyebabkan kemalangan jika kita tidak berwaspada.",
|
||||
"congrats_motivation_line": "Bersama-sama, mari kita tingkatkan kewaspadaan kita!",
|
||||
"attention_title": "Perhatian...",
|
||||
"attention_text": "Satu kemalangan boleh berlaku dengan cepat tanpa kewaspadaan yang berterusan. Gunakan pengalaman ini sebagai peluang untuk membangunkan kesedaran risiko yang lebih tinggi.",
|
||||
"attention_motivation_line": "Berkemungkinan!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Nota",
|
||||
"text": "Terima kasih kerana bermain Stay Safe. Maklum balas anda adalah penting bagi kami",
|
||||
"placeholder": "Apakah pendapat anda tentang pengalaman?"
|
||||
"title": "Penilaian",
|
||||
"text": "Terima kasih kerana bermain Stay Safe. Maklum balas anda penting bagi kami",
|
||||
"placeholder": "Apa pendapat anda tentang pengalaman ini?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Mulakan",
|
||||
"back": "Kembali",
|
||||
"next": "Seterusnya",
|
||||
"previous": "Sebelumnya",
|
||||
"continue": "Teruskan",
|
||||
"submit": "Hantar",
|
||||
"yes": "Ya",
|
||||
"no": "Tidak",
|
||||
"openMenu": "Buka menu",
|
||||
"closeMenu": "Tutup menu",
|
||||
"language": "Bahasa",
|
||||
"loading": "Memuatkan",
|
||||
"last_update": "Kemas kini terakhir",
|
||||
"show_help": "Tunjukkan bantuan",
|
||||
"download": "Muat Turun"
|
||||
"loading": "Memuat",
|
||||
"last_update": "Kemas kini terakhir"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Edisi Stay Safe",
|
||||
"all_rights_reserved": "Hak cipta terpelihara."
|
||||
"all_rights_reserved": "Semua hak cipta terpelihara."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Ralat 404",
|
||||
"page_not_found": "Halaman tidak dijumpai",
|
||||
"explanation": "Ups... Nampaknya halaman yang anda cari tidak wujud!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "Tentang",
|
||||
"about": "Mengenai",
|
||||
"themes": "Tema",
|
||||
"conditions": "Terma penggunaan",
|
||||
"cookies": "Pengurusan data",
|
||||
"confidentiality": "Dasar privasi"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Data tanpa nama",
|
||||
"description": "Platform kami memproses maklumat anda tanpa nama untuk mengoptimumkan dan memperibadikan pengalaman pengguna anda di tapak kami. Untuk mengetahui secara terperinci tentang data yang dikumpul dan penggunaannya, sila rujuk dasar pengurusan data kami."
|
||||
"conditions": "Terma Penggunaan",
|
||||
"cookies": "Kuki",
|
||||
"confidentiality": "Dasar Privasi"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,108 +1,97 @@
|
|||
{
|
||||
"stay_safe": "Pozostań bezpieczny",
|
||||
"stay_safe": "Bądź bezpieczny",
|
||||
"welcome": {
|
||||
"welcome": "Witaj",
|
||||
"select_language": "Wybierz swój język",
|
||||
"language_label": "Język",
|
||||
"language_label": "język",
|
||||
"start": "Rozpocznij",
|
||||
"enter": "Wprowadź"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "Dla własnego bezpieczeństwa graj tylko w pozycji siedzącej i nieruchomej.",
|
||||
"warning": "Uwaga"
|
||||
"enter": "Wejść"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Odkryj interaktywną grę Stay Safe, w której Twoje wybory zadecydują o Twoim bezpieczeństwie na instalacjach Lhoist."
|
||||
"app_description": "Odkryj interaktywną grę Stay Safe, gdzie Twoje wybory zadecydują o Twoim bezpieczeństwie w miejscu pracy."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Gość",
|
||||
"driver": "Kierowca",
|
||||
"visitor": "Odwiedzający",
|
||||
"driver": "Kierowca ciężarówki",
|
||||
"lhoist_employee": "Pracownik Lhoist",
|
||||
"subcontractor_employee": "Wykonawca"
|
||||
"subcontractor_employee": "Pracownik podwykonawcy"
|
||||
},
|
||||
"iam": "Kim jestem",
|
||||
"iam": "Jestem",
|
||||
"profile": "Profil"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Jestem w",
|
||||
"iamfrom": "Jestem z",
|
||||
"profile": "Profil",
|
||||
"country_label": "Kraj"
|
||||
},
|
||||
"game": {
|
||||
"found": "Znaleziono!",
|
||||
"is_it_secure": "Bezpieczne czy niebezpieczne?",
|
||||
"is_it_secure_question": "Czy sytuacja stwarza duże ryzyko, czy też rozpoznajesz dobre zachowanie?",
|
||||
"secure": "Bezpiecznie",
|
||||
"risky": "Niebezpiecznie",
|
||||
"next": "Dalej",
|
||||
"is_it_secure": "bezpieczne czy ryzykowne?",
|
||||
"is_it_secure_question": "Czy sytuacja stanowi duże ryzyko lub czy identyfikujesz prawidłowe zachowanie?",
|
||||
"secure": "Bezpieczne",
|
||||
"risky": "Ryzykowne",
|
||||
"next": "Następny",
|
||||
"previous": "Poprzedni",
|
||||
"right_answer": "Prawidłowa odpowiedź",
|
||||
"wrong_answer": "Błędna odpowiedź",
|
||||
"it_is_risk": "To niebezpieczne zachowanie",
|
||||
"it_is_not_risk": "To bezpieczne zachowanie"
|
||||
"right_answer": "Dobra odpowiedź",
|
||||
"wrong_answer": "Zła odpowiedź",
|
||||
"it_is_risk": "To ryzyko",
|
||||
"it_is_not_risk": "To nie jest ryzyko"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Jak grać?",
|
||||
"move_around": "Poruszanie się po grze",
|
||||
"move_around_description": "Aby odkrywać scenerię, przesuwaj i przytrzymuj kursor myszy lub przesuwaj palcem po ekranie telefonu.",
|
||||
"walkthrough": "Cel gry",
|
||||
"walkthrough_description": "Zidentyfikuj dobre i złe praktyki, klikając obiekty i działania w scenerii.",
|
||||
"points_and_time": "Punkty i wyczucie czasu",
|
||||
"points_and_time_description": "Zidentyfikuj różne działania w jak najkrótszym czasie, popełniając jak najmniej błędów, dbając przede wszystkim o bezpieczeństwo!"
|
||||
"move_around": "Poruszaj się w grze",
|
||||
"move_around_description": "Poruszaj się i przytrzymaj kursor myszy lub przesuwaj palcem po ekranie telefonu, aby zbadać scenę.",
|
||||
"walkthrough": "Przebieg gry",
|
||||
"walkthrough_description": "Identyfikuj dobre i złe praktyki, klikając na obiekty i działania w scenie.",
|
||||
"points_and_time": "Punkty i zegar",
|
||||
"points_and_time_description": "Identyfikuj różne działania, popełniając jak najmniej błędów, bezpieczeństwo przede wszystkim, i rób to jak najszybciej!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Raport bezpieczeństwa",
|
||||
"perfect_title": "Gratulacje!",
|
||||
"perfect_text": "Twoje doskonałe wyniki świadczą o dużej świadomości zagrożeń i zaangażowaniu w bezpieczeństwo, co przyczynia się do bezpiecznego środowiska pracy dla wszystkich.",
|
||||
"perfect_text": "Twoja doskonała wydajność pokazuje silną świadomość ryzyka i zaangażowanie w bezpieczeństwo, przyczyniając się do bezpiecznego środowiska pracy dla wszystkich.",
|
||||
"perfect_motivation_line": "Tak trzymaj!",
|
||||
"congrats_title": "Gratulacje!",
|
||||
"congrats_text": "Twoja świadomość ryzyka jest dobra, lecz pamiętaj, że w przypadku braku czujności rzeczywistość naszego środowiska pracy może prowadzić do wypadków.",
|
||||
"congrats_text": "Twoja świadomość ryzyka jest pozytywna, ale pamiętajmy, że rzeczywistość naszego środowiska pracy może prowadzić do wypadków, jeśli nie będziemy czujni.",
|
||||
"congrats_motivation_line": "Razem zwiększmy naszą czujność!",
|
||||
"attention_title": "Uważaj...",
|
||||
"attention_text": "Bez ciągłej czujności do wypadku może dojść bardzo szybko. Wykorzystaj to doświadczenie jako okazję do zwiększenia świadomości ryzyka.",
|
||||
"attention_motivation_line": "Zachowaj czujność!"
|
||||
"attention_title": "Uwaga...",
|
||||
"attention_text": "Wypadek może szybko się zdarzyć bez ciągłej czujności. Wykorzystaj tę doświadczenie jako okazję do rozwoju większej świadomości ryzyka.",
|
||||
"attention_motivation_line": "Bądź czujny!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Uwagi",
|
||||
"text": "Dziękujemy za udział w grze Stay Safe. Twoja opinia jest dla nas ważna",
|
||||
"title": "Oceny",
|
||||
"text": "Dziękujemy za zagranie w Stay Safe. Twoja opinia jest dla nas ważna",
|
||||
"placeholder": "Co sądzisz o tym doświadczeniu?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Start",
|
||||
"back": "Wstecz",
|
||||
"next": "Dalej",
|
||||
"start": "Rozpocznij",
|
||||
"back": "Powrót",
|
||||
"next": "Następny",
|
||||
"previous": "Poprzedni",
|
||||
"continue": "Kontynuuj",
|
||||
"submit": "Prześlij",
|
||||
"submit": "Zatwierdź",
|
||||
"yes": "Tak",
|
||||
"no": "Nie",
|
||||
"openMenu": "Otwórz menu",
|
||||
"closeMenu": "Zamknij menu",
|
||||
"language": "Język",
|
||||
"loading": "Ładowanie",
|
||||
"last_update": "Ostatnia aktualizacja",
|
||||
"show_help": "Wyświetl pomoc",
|
||||
"download": "Pobierz"
|
||||
"last_update": "Ostatnia aktualizacja"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Edycja Stay Safe",
|
||||
"copyright": "Wydanie Stay Safe",
|
||||
"all_rights_reserved": "Wszelkie prawa zastrzeżone."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Błąd 404",
|
||||
"page_not_found": "Strona nie znaleziona",
|
||||
"explanation": "Ups... Wygląda na to, że szukana przez Ciebie strona nie istnieje!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "O nas",
|
||||
"themes": "Tematyka",
|
||||
"conditions": "Warunki użytkowania",
|
||||
"cookies": "Zarządzanie danymi",
|
||||
"about": "O",
|
||||
"themes": "Tematy",
|
||||
"conditions": "Warunki korzystania",
|
||||
"cookies": "Ciasteczka",
|
||||
"confidentiality": "Polityka prywatności"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Dane anonimowe",
|
||||
"description": "Nasza platforma przetwarza Twoje dane w sposób anonimowy, aby zoptymalizować i spersonalizować korzystanie z naszej witryny. Aby uzyskać szczegółowe informacje na temat gromadzonych danych i ich wykorzystania, zapoznaj się z naszą polityką zarządzania danymi."
|
||||
}
|
||||
}
|
||||
|
|
@ -1,108 +1,97 @@
|
|||
{
|
||||
"stay_safe": "Mantenha-se em segurança",
|
||||
"stay_safe": "Fique seguro",
|
||||
"welcome": {
|
||||
"welcome": "Bem-vindo(a)",
|
||||
"select_language": "Selecione o seu idioma",
|
||||
"language_label": "Idioma",
|
||||
"start": "Iniciar",
|
||||
"welcome": "Bem-vindo",
|
||||
"select_language": "Selecione seu idioma",
|
||||
"start": "Começar",
|
||||
"language_label": "idioma",
|
||||
"enter": "Entrar"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "Para sua segurança, jogue apenas enquanto está sentado(a) e parado(a).",
|
||||
"warning": "Atenção"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Descubra o Stay Safe, o jogo interativo em que as suas escolhas determinarão a sua segurança nas instalações da Lhoist."
|
||||
"app_description": "Descubra o jogo interativo Stay Safe, onde suas escolhas determinarão sua segurança no local de trabalho."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Visitante",
|
||||
"driver": "Motorista",
|
||||
"lhoist_employee": "Colaboradora da Lhoist",
|
||||
"subcontractor_employee": "Contratante"
|
||||
"driver": "Motorista de caminhão",
|
||||
"lhoist_employee": "Empregado da Lhoist",
|
||||
"subcontractor_employee": "Empregado de subcontratado"
|
||||
},
|
||||
"iam": "Sou",
|
||||
"iam": "Eu sou",
|
||||
"profile": "Perfil"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Estou em",
|
||||
"iamfrom": "Eu sou de",
|
||||
"profile": "Perfil",
|
||||
"country_label": "País"
|
||||
},
|
||||
"game": {
|
||||
"found": "Encontrado!",
|
||||
"is_it_secure": "Seguro ou arriscado?",
|
||||
"is_it_secure_question": "A situação representa um risco grave ou identifica um comportamento adequado?",
|
||||
"is_it_secure": "seguro ou arriscado?",
|
||||
"is_it_secure_question": "A situação representa um grande risco ou você identifica um bom comportamento?",
|
||||
"secure": "Seguro",
|
||||
"risky": "Arriscado",
|
||||
"next": "Seguinte",
|
||||
"next": "Próximo",
|
||||
"previous": "Anterior",
|
||||
"right_answer": "Resposta correta",
|
||||
"wrong_answer": "Resposta incorreta",
|
||||
"it_is_risk": "É um comportamento arriscado",
|
||||
"it_is_not_risk": "É um comportamento seguro"
|
||||
"right_answer": "Resposta certa",
|
||||
"wrong_answer": "Resposta errada",
|
||||
"it_is_risk": "É um risco",
|
||||
"it_is_not_risk": "Não é um risco"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Como jogar?",
|
||||
"move_around": "Deslocar-se no jogo",
|
||||
"move_around_description": "Mova e mantenha o cursor do rato premido ou deslize o dedo sobre o ecrã do telemóvel, para explorar a cena.",
|
||||
"walkthrough": "Objetivo do jogo",
|
||||
"walkthrough_description": "Clique nos objetos e ações na cena, para identificar boas e más práticas.",
|
||||
"points_and_time": "Pontos e cronómetro",
|
||||
"points_and_time_description": "Identifique as várias ações, cometendo o mínimo de erros, dando primazia à segurança e o mais rapidamente possível!"
|
||||
"move_around": "Mova-se no jogo",
|
||||
"move_around_description": "Mova e mantenha pressionado com o cursor do seu mouse ou deslize o dedo na tela do seu telefone para explorar a cena.",
|
||||
"walkthrough": "Desenrolar do jogo",
|
||||
"walkthrough_description": "Identifique as boas e más práticas clicando nos objetos e ações da cena.",
|
||||
"points_and_time": "Pontos e cronômetro",
|
||||
"points_and_time_description": "Identifique as várias ações cometendo o menor número de erros possível, segurança é fundamental, e faça isso o mais rápido possível!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Relatório de segurança",
|
||||
"perfect_title": "Parabéns!",
|
||||
"perfect_text": "O seu excelente desempenho demonstra uma profunda consciência dos riscos e o compromisso quanto à segurança, contribuindo para um ambiente de trabalho seguro para todos.",
|
||||
"perfect_text": "Seu excelente desempenho demonstra uma forte consciência de riscos e um compromisso com a segurança, contribuindo para um ambiente de trabalho seguro para todos.",
|
||||
"perfect_motivation_line": "Continue assim!",
|
||||
"congrats_title": "Parabéns!",
|
||||
"congrats_text": "A sua consciência dos riscos é positiva, mas lembre-se que, caso não estejamos vigilantes, a realidade do local de trabalho pode resultar em acidentes.",
|
||||
"congrats_motivation_line": "Vamos reforçar, juntos, a vigilância!",
|
||||
"attention_title": "Cuidado...",
|
||||
"attention_text": "Sem uma vigilância contínua, pode ocorrer um acidente a qualquer momento. Encare esta experiência como uma oportunidade para aprofundar a sua consciência dos riscos.",
|
||||
"attention_motivation_line": "Mantenha-se alerta!"
|
||||
"congrats_text": "Sua consciência de risco é positiva, mas vamos lembrar que a realidade do nosso ambiente de trabalho pode levar a acidentes se não estivermos vigilantes.",
|
||||
"congrats_motivation_line": "Juntos, aumentemos nossa vigilância!",
|
||||
"attention_title": "Atenção...",
|
||||
"attention_text": "Um acidente pode acontecer rapidamente sem vigilância constante. Use essa experiência como uma oportunidade para desenvolver uma maior consciência de risco.",
|
||||
"attention_motivation_line": "Fique alerta!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Notas",
|
||||
"text": "Obrigado por jogar o Stay Safe. A sua opinião é importante para nós",
|
||||
"placeholder": "O que achou da experiência?"
|
||||
"title": "Avaliações",
|
||||
"text": "Obrigado por jogar Stay Safe. A sua opinião é importante para nós",
|
||||
"placeholder": "O que achou desta experiência?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Iniciar",
|
||||
"back": "Retroceder",
|
||||
"next": "Seguinte",
|
||||
"start": "Começar",
|
||||
"back": "Voltar",
|
||||
"next": "Próximo",
|
||||
"previous": "Anterior",
|
||||
"continue": "Continuar",
|
||||
"submit": "Submeter",
|
||||
"submit": "Enviar",
|
||||
"yes": "Sim",
|
||||
"no": "Não",
|
||||
"openMenu": "Abrir menu",
|
||||
"closeMenu": "Fechar menu",
|
||||
"language": "Idioma",
|
||||
"loading": "A carregar",
|
||||
"last_update": "Última atualização",
|
||||
"show_help": "Mostra ajuda",
|
||||
"download": "Baixar"
|
||||
"loading": "Carregando",
|
||||
"last_update": "Última atualização"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Edição Stay Safe",
|
||||
"all_rights_reserved": "Todos os direitos reservados."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Erro 404",
|
||||
"page_not_found": "Página não encontrada",
|
||||
"explanation": "Ops... Parece que a página que você estava procurando não existe!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "Sobre",
|
||||
"themes": "Temas",
|
||||
"conditions": "Condições de utilização",
|
||||
"cookies": "Gestão de dados",
|
||||
"conditions": "Termos de uso",
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Política de privacidade"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Dados anónimos",
|
||||
"description": "A nossa plataforma trata os seus dados anonimamente, para otimizar e personalizar a sua experiência de utilizador na nossa página. Para saber mais sobre os dados recolhidos e a utilização dos mesmos, consulte a nossa política de gestão de dados."
|
||||
}
|
||||
}
|
||||
|
|
@ -1,108 +1,97 @@
|
|||
{
|
||||
"stay_safe": "Zostaňte v bezpečí",
|
||||
"stay_safe": "Buďte v bezpeí",
|
||||
"welcome": {
|
||||
"welcome": "Vitajte",
|
||||
"select_language": "Vyberte si jazyk",
|
||||
"language_label": "Jazyk",
|
||||
"start": "Spustiť",
|
||||
"enter": "Zadať"
|
||||
},
|
||||
"warning": {
|
||||
"safety_text": "Z bezpečnostných dôvodov hrajte iba posediačky, keď sa nehýbete.",
|
||||
"warning": "Pozor"
|
||||
"start": "Začať",
|
||||
"language_label": "jazyk",
|
||||
"enter": "Vstúpiť"
|
||||
},
|
||||
"home": {
|
||||
"app_description": "Objavte interaktívnu hru Stay Safe, kde vaše rozhodnutia určujú vašu bezpečnosť v inštaláciách spoločnosti Lhoist."
|
||||
"app_description": "Preskúmajte interaktívnu hru Stay Safe, kde vaše rozhodnutia určia vašu bezpečnosť na pracovisku."
|
||||
},
|
||||
"profile": {
|
||||
"profiles": {
|
||||
"visitor": "Návštevník",
|
||||
"driver": "Vodič",
|
||||
"lhoist_employee": "Zamestnanec spoločnosti Lhoist",
|
||||
"subcontractor_employee": "Dodávateľ"
|
||||
"driver": "Vodič nákladného auta",
|
||||
"lhoist_employee": "Zamestnanec Lhoist",
|
||||
"subcontractor_employee": "Zamestnanec subdodávateľa"
|
||||
},
|
||||
"iam": "Som",
|
||||
"profile": "Profil"
|
||||
},
|
||||
"country": {
|
||||
"iamfrom": "Žijem z",
|
||||
"iamfrom": "Som z",
|
||||
"profile": "Profil",
|
||||
"country_label": "Krajina"
|
||||
},
|
||||
"game": {
|
||||
"found": "Nájdené!",
|
||||
"is_it_secure": "Bezpečná alebo riskantná?",
|
||||
"is_it_secure_question": "Predstavuje situácia veľké riziko alebo ste odhalili príklad dobrého správania?",
|
||||
"is_it_secure": "bezpečné alebo riskantné?",
|
||||
"is_it_secure_question": "Predstavuje situácia veľké riziko alebo identifikujete správne správanie?",
|
||||
"secure": "Bezpečné",
|
||||
"risky": "Riskantné",
|
||||
"next": "Ďalej",
|
||||
"previous": "Späť",
|
||||
"next": "Ďalšie",
|
||||
"previous": "Predchádzajúce",
|
||||
"right_answer": "Správna odpoveď",
|
||||
"wrong_answer": "Nesprávna odpoveď",
|
||||
"it_is_risk": "Je to riskantné správanie",
|
||||
"it_is_not_risk": "Je to bezpečné správanie"
|
||||
"it_is_risk": "Je to riziko",
|
||||
"it_is_not_risk": "Nie je to riziko"
|
||||
},
|
||||
"tutorial": {
|
||||
"how_to_play": "Ako na to?",
|
||||
"move_around": "Pohyb v hre",
|
||||
"move_around_description": "Pohybujte kurzorom alebo ho podržte pomocou myši či potiahnutím prsta na obrazovke telefónu, aby ste preskúmali scénu.",
|
||||
"walkthrough": "Cieľ hry",
|
||||
"walkthrough_description": "Odhaľte správne a nesprávne postupy kliknutím na objekty a akcie na scéne.",
|
||||
"points_and_time": "Body a načasovanie",
|
||||
"points_and_time_description": "Odhaľte rôzne akcie s čo najmenším počtom chýb, s dôrazom na bezpečnosť na prvom mieste a najrýchlejšie, ako sa len dá!"
|
||||
"how_to_play": "Ako hrať?",
|
||||
"move_around": "Pohybujte sa v hre",
|
||||
"move_around_description": "Pohybujte sa a držte kurzor myši alebo posúvajte prstom po obrazovke telefónu, aby ste preskúmali scénu.",
|
||||
"walkthrough": "Priebeh hry",
|
||||
"walkthrough_description": "Identifikujte dobré a zlé praktiky kliknutím na objekty a akcie na scéne.",
|
||||
"points_and_time": "Body a časovač",
|
||||
"points_and_time_description": "Identifikujte rôzne akcie s čo najmenším počtom chýb, bezpečnosť je dôležitá, a robte to čo najrýchlejšie!"
|
||||
},
|
||||
"game_results": {
|
||||
"results_screen_title": "Bezpečnostná správa",
|
||||
"perfect_title": "Blahoželáme!",
|
||||
"perfect_text": "Váš vynikajúci výkon poukazuje na to, že máte skvelé povedomie o rizikách a záväzok zachovávať bezpečnosť, čím pomáhate vytvárať bezpečné pracovné prostredie pre každého.",
|
||||
"perfect_motivation_line": "Len tak ďalej!",
|
||||
"congrats_title": "Blahoželáme!",
|
||||
"congrats_text": "Vaše povedomie o rizikách je pozitívne, ale nezabúdajte, že ak si nedáme pozor, v našom pracovnom prostredí môže dôjsť aj k nehodám.",
|
||||
"congrats_motivation_line": "Spoločne musíme byť obozretnejší!",
|
||||
"perfect_title": "Gratulujeme!",
|
||||
"perfect_text": "Vaša vynikajúca výkonnosť ukazuje silné povedomie o rizikách a záväzok k bezpečnosti, čo prispieva k bezpečnému pracovnému prostrediu pre všetkých.",
|
||||
"perfect_motivation_line": "Tak ďalej!",
|
||||
"congrats_title": "Gratulujeme!",
|
||||
"congrats_text": "Vaše povedomie o rizikách je pozitívne, ale pripomeňme si, že realita našeho pracovného prostredia môže viesť k nehodám, ak nebudeme ostražití.",
|
||||
"congrats_motivation_line": "Spoločne zvýšme svoju ostražitosť!",
|
||||
"attention_title": "Pozor...",
|
||||
"attention_text": "Bez nepretržitej pozornosti môže rýchlo dôjsť k nehode. Túto skúsenosť berte ako príležitosť na zvýšenie vlastného povedomia o rizikách.",
|
||||
"attention_motivation_line": "Buďte v strehu!"
|
||||
"attention_text": "Nehoda sa môže stať rýchlo bez neustálej ostražitosti. Využite túto skúsenosť ako príležitosť na rozvoj väčšieho povedomia o rizikách.",
|
||||
"attention_motivation_line": "Buďte ostražití!"
|
||||
},
|
||||
"rating": {
|
||||
"title": "Poznámky",
|
||||
"text": "Ďakujeme, že hráte hru Stay Safe. Vaša spätná väzba je pre nás dôležitá",
|
||||
"placeholder": "Ako by ste opísali túto skúsenosť?"
|
||||
"title": "Hodnotenia",
|
||||
"text": "Ďakujeme, že ste hrali Stay Safe. Váš názor je pre nás dôležitý",
|
||||
"placeholder": "Čo si myslíte o tejto skúsenosti?"
|
||||
},
|
||||
"ui": {
|
||||
"start": "Spustiť",
|
||||
"back": "Návrat",
|
||||
"next": "Ďalej",
|
||||
"previous": "Späť",
|
||||
"continue": "Pokračovať",
|
||||
"start": "Začať",
|
||||
"back": "Späť",
|
||||
"next": "Ďalšie",
|
||||
"previous": "Predchádzajúce",
|
||||
"submit": "Odoslať",
|
||||
"yes": "Áno",
|
||||
"no": "Nie",
|
||||
"openMenu": "Otvorenie ponuky",
|
||||
"closeMenu": "Zatvorenie ponuky",
|
||||
"openMenu": "Otvoriť menu",
|
||||
"closeMenu": "Zavrieť menu",
|
||||
"language": "Jazyk",
|
||||
"loading": "Načítavanie",
|
||||
"last_update": "Posledná aktualizácia",
|
||||
"show_help": "Zobrazenie pomocníka",
|
||||
"download": "Stiahnuť"
|
||||
"last_update": "Posledná aktualizácia"
|
||||
},
|
||||
"footer": {
|
||||
"copyright": "Edícia Stay Safe",
|
||||
"all_rights_reserved": "Všetky práva vyhradené."
|
||||
"copyright": "Edisi Stay Safe",
|
||||
"all_rights_reserved": "Semua hak cipta terpelihara."
|
||||
},
|
||||
"screen_404": {
|
||||
"error": "Error 404",
|
||||
"page_not_found": "Page not found",
|
||||
"explanation": "Oops... It seems the page you were looking for does not exist!"
|
||||
"error": "Chyba 404",
|
||||
"page_not_found": "Stránka nenájdená",
|
||||
"explanation": "Ups... Zdá sa, že stránka, ktorú hľadáte, neexistuje!"
|
||||
},
|
||||
"pagesName": {
|
||||
"about": "Informácie",
|
||||
"about": "O",
|
||||
"themes": "Témy",
|
||||
"conditions": "Podmienky používania",
|
||||
"cookies": "Správa údajov",
|
||||
"cookies": "Cookies",
|
||||
"confidentiality": "Zásady ochrany osobných údajov"
|
||||
},
|
||||
"cookies": {
|
||||
"title": "Anonymné údaje",
|
||||
"description": "Naša platforma anonymne spracúva vaše informácie s cieľom optimalizovať a personalizovať váš používateľský zážitok na našej lokalite. Ak chcete zistiť podrobnosti o zhromaždených údajoch a ich využití, prečítajte si naše zásady správy údajov."
|
||||
}
|
||||
}
|
||||
|
|
@ -14,25 +14,17 @@ import { Pagination, Navigation, EffectCards } from "swiper/modules";
|
|||
|
||||
import { useWordpressCustomData } from "../services/WordpressFetchData";
|
||||
import { Link } from "react-router-dom";
|
||||
import Loading from "../components/animations/Loading";
|
||||
import { useUser } from "../hooks/useUser";
|
||||
|
||||
export default function Thematiques() {
|
||||
const gamesDatas = useWordpressCustomData(`/screen/play/all`);
|
||||
|
||||
const { language, screensTranslations } = useUser();
|
||||
|
||||
if (!screensTranslations || !screensTranslations.ui || !screensTranslations.pagesName) return <Loading />;
|
||||
const uiScreenTranslations = screensTranslations.ui;
|
||||
const pagesNamesTranslations = screensTranslations.pagesName;
|
||||
|
||||
return (
|
||||
<AnimatedPage className='page-container page-container--thematiques '>
|
||||
<div className='content-page '>
|
||||
<Nav />
|
||||
<div className='inner-content'>
|
||||
<div className='page-title'>
|
||||
<h1 className='page-title__title'>{pagesNamesTranslations.themes}</h1>
|
||||
<h1 className='page-title__title'>Thémathiques</h1>
|
||||
<div className='page-title__span-construction'>Interactive</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -78,9 +70,7 @@ export default function Thematiques() {
|
|||
target='_blank'
|
||||
rel='noreferrer'
|
||||
className='cta cta--lhoist cta--button-icon cta--download'>
|
||||
{
|
||||
uiScreenTranslations.download
|
||||
}
|
||||
Télécharger
|
||||
</a>
|
||||
)}
|
||||
</SwiperSlide>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ import AnimatedPage from "../components/AnimatedPage";
|
|||
import Loading from "../components/animations/Loading";
|
||||
import { useUser } from "../hooks/useUser";
|
||||
import warningSticker from "../assets/img/illustrations/lhoist-prevention-smartphone-sticker.svg";
|
||||
import BrandingLogo from "../components/ui/LhoistBrandingLogo.jsx";
|
||||
|
||||
export default function Warning() {
|
||||
const { language, screensTranslations } = useUser();
|
||||
|
|
@ -23,7 +22,6 @@ export default function Warning() {
|
|||
className='cta cta--construction cta--lhoist cta--button-icon cta--start'>
|
||||
<span>{uiTranslations.continue}</span>
|
||||
</Link>
|
||||
<BrandingLogo />
|
||||
</AnimatedPage>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ export default function Welcome() {
|
|||
<div className='interaction-buttons'>
|
||||
<LanguageSelect />
|
||||
<Link
|
||||
to='/warning'
|
||||
to='/Home'
|
||||
title={currentScreenTranslations.enter}
|
||||
className='cta cta--construction cta--lhoist cta--button-icon cta--start'>
|
||||
<span>{currentScreenTranslations.enter}</span>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { useUser } from "../hooks/useUser";
|
|||
|
||||
const BASE_URL = process.env.REACT_APP_BASE_URL;
|
||||
const BASE_CUSTOM_URL = process.env.REACT_APP_BASE_CUSTOM_URL;
|
||||
// test
|
||||
|
||||
const fetchWordpressData = async (url) => {
|
||||
try {
|
||||
const response = await axios.get(url);
|
||||
|
|
|
|||
|
|
@ -5,12 +5,12 @@ function calculateScore(answers) {
|
|||
}
|
||||
function formatCurrentTime(currentTime) {
|
||||
// Minutes calculation
|
||||
const minutes = Math.floor(currentTime / 60)
|
||||
const minutes = Math.floor((currentTime % 360000) / 6000)
|
||||
.toString()
|
||||
.padStart(2, "0");
|
||||
|
||||
// Seconds calculation
|
||||
const seconds = Math.floor(currentTime % 60)
|
||||
const seconds = Math.floor((currentTime % 6000) / 100)
|
||||
.toString()
|
||||
.padStart(2, "0");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user