.
continuous-integration/drone/push Build is passing

This commit is contained in:
martin.fencl
2026-06-16 11:06:27 +02:00
parent e7ad846538
commit d061ea848b
+37 -35
View File
@@ -1,38 +1,40 @@
export type Language = 'en' | 'cs'; export type Language = "en" | "cs";
export const translations = { export const translations = {
en: { en: {
home: 'Home', home: "Home",
about: 'About', about: "About",
contact: 'Contact', contact: "Contact",
timeBreaker: 'Time-Breaker', timeBreaker: "Time-Breaker",
welcome: 'WELCOME TO MY WORLD', welcome: "WELCOME TO MY WORLD XXXX",
hello: "Hello, I'm", hello: "Hello, I'm",
job: 'a Developer.', job: "a Developer.",
desc: "I use animation as a third dimension by which to simplify experiences and guiding through each and every interaction. I'm not adding motion just to spruce things up, but doing it in ways that matter.", desc: "I use animation as a third dimension by which to simplify experiences and guiding through each and every interaction. I'm not adding motion just to spruce things up, but doing it in ways that matter.",
findMe: 'FIND WITH ME', findMe: "FIND WITH ME",
bestSkill: 'BEST SKILL ON', bestSkill: "BEST SKILL ON",
aboutMe: 'About Me', aboutMe: "About Me",
aboutDesc: 'I build accessible, pixel-perfect, and performant web experiences. Passionate about technology and design.', aboutDesc:
getInTouch: 'Get In Touch', "I build accessible, pixel-perfect, and performant web experiences. Passionate about technology and design.",
contactDesc: 'Interested in working together?', getInTouch: "Get In Touch",
emailMe: 'Email me', contactDesc: "Interested in working together?",
}, emailMe: "Email me",
cs: { },
home: 'Domů', cs: {
about: 'O mně', home: "Domů",
contact: 'Kontakt', about: "O mně",
timeBreaker: 'Time-Breaker', contact: "Kontakt",
welcome: 'VÍTEJTE V MÉM SVĚTĚ', timeBreaker: "Time-Breaker",
hello: "Ahoj, jsem", welcome: "VÍTEJTE V MÉM SVĚTĚ",
job: 'Vývojář.', hello: "Ahoj, jsem",
desc: "Používám animaci jako třetí rozměr, kterým zjednodušuji zážitky a provázím každou interakcí. Nepřidávám pohyb jen pro efekt, ale dělám to způsoby, které mají smysl.", job: "Vývojář.",
findMe: 'NAJDETE MĚ NA', desc: "Používám animaci jako třetí rozměr, kterým zjednodušuji zážitky a provázím každou interakcí. Nepřidávám pohyb jen pro efekt, ale dělám to způsoby, které mají smysl.",
bestSkill: 'DOVEDNOSTI', findMe: "NAJDETE MĚ NA",
aboutMe: 'O mně', bestSkill: "DOVEDNOSTI",
aboutDesc: 'Tvořím přístupné, pixel-perfect a výkonné webové zážitky. Vášnivý pro technologie a design.', aboutMe: "O mně",
getInTouch: 'Napište mi', aboutDesc:
contactDesc: 'Máte zájem o spolupráci?', "Tvořím přístupné, pixel-perfect a výkonné webové zážitky. Vášnivý pro technologie a design.",
emailMe: 'Napište mi', getInTouch: "Napište mi",
} contactDesc: "Máte zájem o spolupráci?",
emailMe: "Napište mi",
},
}; };