mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
translations
This commit is contained in:
parent
a9ea7c0a80
commit
ae86af6cb4
9 changed files with 219 additions and 93 deletions
|
@ -182,12 +182,12 @@ div[class="name-percent-container"] > img.image {
|
|||
border-radius: 5px;
|
||||
background: linear-gradient(to right, #005500 0%, #009900 50%, #005500 100%);
|
||||
background-size: 200% 100%;
|
||||
animation: shimmer 3s infinite linear;
|
||||
animation: shimmer 2s infinite ease-in;
|
||||
}
|
||||
|
||||
.language-item:hover .percentage-bar .bar-after {
|
||||
background: linear-gradient(to right, #008800 0%, #00ff00 50%, #008800 100%);
|
||||
animation: shimmer 3s infinite linear;
|
||||
animation: shimmer 2s infinite ease-in;
|
||||
background-size: 200% 100%;
|
||||
}
|
||||
|
||||
|
@ -338,10 +338,6 @@ a[class^="software-item tooltip"]::after {
|
|||
margin: 10px;
|
||||
}
|
||||
|
||||
.software > .software-item:last-child {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.skill-item:hover,
|
||||
.software-item:hover {
|
||||
background-color: #4d4d4d;
|
||||
|
@ -468,6 +464,23 @@ a[class^="software-item tooltip"]::after {
|
|||
a > img {
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.music-pop {
|
||||
width: 90%;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
#song-cover {
|
||||
width: 60px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.top button,
|
||||
#song-url,
|
||||
#refresh {
|
||||
max-width: 28px;
|
||||
max-height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
|
@ -504,6 +517,38 @@ a[class^="software-item tooltip"]::after {
|
|||
a > img {
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
.music-pop {
|
||||
width: 95%;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.song {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.song > div:nth-of-type(2) {
|
||||
width: 100%;
|
||||
justify-content: flex-end;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
#song-cover {
|
||||
width: 56px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.top {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.top button {
|
||||
margin-top: 8px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
|
@ -539,6 +584,36 @@ a[class^="software-item tooltip"]::after {
|
|||
.software-name {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.music-pop {
|
||||
width: 95%;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.song {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.song > div:nth-of-type(2) {
|
||||
width: 100%;
|
||||
justify-content: flex-end;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#song-cover {
|
||||
width: 50px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.top {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.top button {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
div[class="stats cards"] {
|
||||
|
|
|
@ -25,25 +25,55 @@ setTimeout(() => {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
function applyTranslations(lang) {
|
||||
if (!translations[lang]) return;
|
||||
|
||||
document.title = translations[lang].title;
|
||||
|
||||
const elements = [
|
||||
"hobbies", "status", "languages", "skills", "coding_stats", "stats_since",
|
||||
"contact", "software", "tooltip_py", "tooltip_js", "tooltip_djs", "tooltip_c",
|
||||
"tooltip_cpp", "tooltip_cs", "tooltip_java", "tooltip_kt", "tooltip_mn", "tooltip_en",
|
||||
"tooltip_de", "tooltip_fr", "tooltip_sk", "tooltip_cz"
|
||||
];
|
||||
const map = {
|
||||
hobbies: "hobbies",
|
||||
status: "status",
|
||||
languages: "languages_header",
|
||||
skills: "skills_header",
|
||||
coding_stats: "stats_header",
|
||||
stats_since: "stats_since",
|
||||
contact: "contact_header",
|
||||
software_header: "software_header",
|
||||
software_equicord_tooltip: "software_equicord_tooltip",
|
||||
software_intellij_tooltip: "software_intellij_tooltip",
|
||||
software_android_tooltip: "software_android_tooltip",
|
||||
software_kitty_tooltip: "software_kitty_tooltip",
|
||||
tooltip_py: "tooltip_py",
|
||||
tooltip_js: "tooltip_js",
|
||||
tooltip_djs: "tooltip_djs",
|
||||
tooltip_c: "tooltip_c",
|
||||
tooltip_cpp: "tooltip_cpp",
|
||||
tooltip_cs: "tooltip_cs",
|
||||
tooltip_java: "tooltip_java",
|
||||
tooltip_kt: "tooltip_kt",
|
||||
tooltip_mn: "tooltip_mn",
|
||||
more: "more",
|
||||
more_sm: "more_sm",
|
||||
note: "note",
|
||||
copyright: "copyright",
|
||||
foss: "foss",
|
||||
inspired: "inspired",
|
||||
bw: "bw"
|
||||
};
|
||||
|
||||
elements.forEach((selector) => {
|
||||
const element = document.getElementById(selector);
|
||||
if (element) {
|
||||
const key = selector.replace('#', '');
|
||||
element.textContent = translations[lang][key] || element.textContent;
|
||||
Object.entries(map).forEach(([id, key]) => {
|
||||
const el = document.getElementById(id);
|
||||
if (!el) return;
|
||||
|
||||
const text = translations[lang][key];
|
||||
if (!text) return;
|
||||
|
||||
if (el.hasAttribute("data-tooltip")) {
|
||||
el.setAttribute("data-tooltip", text);
|
||||
} else {
|
||||
console.warn(`Element with ID '${selector}' not found`);
|
||||
el.innerHTML = text;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -52,10 +82,10 @@ setTimeout(() => {
|
|||
await fetchLang(lang);
|
||||
}
|
||||
|
||||
document.querySelector("div#en.language-name.tooltip").addEventListener('click', () => switchLanguage('en'));
|
||||
document.querySelector("div#de.language-name.tooltip").addEventListener('click', () => switchLanguage('de'));
|
||||
document.querySelector("div#fr.language-name.tooltip").addEventListener('click', () => switchLanguage('fr'));
|
||||
document.querySelector("div#sk.language-name.tooltip").addEventListener('click', () => switchLanguage('sk'));
|
||||
document.querySelector("div#cz.language-name.tooltip").addEventListener('click', () => switchLanguage('cz'));
|
||||
document.getElementById("en").addEventListener("click", () => location.reload());
|
||||
document.getElementById("de").addEventListener("click", () => switchLanguage("de"));
|
||||
document.getElementById("fr").addEventListener("click", () => switchLanguage("fr"));
|
||||
document.getElementById("sk").addEventListener("click", () => switchLanguage("sk"));
|
||||
document.getElementById("cz").addEventListener("click", () => switchLanguage("cz"));
|
||||
|
||||
}, 1000);
|
||||
|
|
|
@ -8,31 +8,31 @@
|
|||
"id": "en"
|
||||
},
|
||||
{
|
||||
"name": "German",
|
||||
"name": "Deutsch",
|
||||
"percentage": 100,
|
||||
"img": "https://search.im-in.space/image_proxy?url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fen%2Fthumb%2Fb%2Fba%2FFlag_of_Germany.svg%2F640px-Flag_of_Germany.svg.png&h=3921b6290fe87e6919522a8e273efe494d70123859d147682c935a29e375aaae",
|
||||
"tooltip": "Started learning in 2nd grade",
|
||||
"tooltip": "In der 2. Klasse angefangen zu lernen",
|
||||
"id": "de"
|
||||
},
|
||||
{
|
||||
"name": "French",
|
||||
"name": "Français",
|
||||
"percentage": 50,
|
||||
"img": "https://search.im-in.space/image_proxy?url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2F1%2F1f%2FFlag_of_France_official.svg&h=d139dd7e87b1d627b8079636ea584d96d71161f57d41ce44c465ea4cb3fe23e9",
|
||||
"tooltip": "Started learning in 7th grade",
|
||||
"tooltip": "Commencé en 5ème",
|
||||
"id": "fr"
|
||||
},
|
||||
{
|
||||
"name": "Slovak",
|
||||
"name": "Slovenčina",
|
||||
"percentage": 100,
|
||||
"img": "https://search.im-in.space/image_proxy?url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fe%2Fe6%2FFlag_of_Slovakia.svg%2F800px-Flag_of_Slovakia.svg.png&h=aa2494acbea2f461750d3d2b5ecace7289323834862f071b082e511c6e11e71c",
|
||||
"tooltip": "First language, born in Slovakia",
|
||||
"tooltip": "Materný jazyk, narodený na Slovensku",
|
||||
"id": "sk"
|
||||
},
|
||||
{
|
||||
"name": "Czech",
|
||||
"name": "Česky",
|
||||
"percentage": 90,
|
||||
"img": "https://search.im-in.space/image_proxy?url=https%3A%2F%2Fupload.wikimedia.org%2Fwikipedia%2Fcommons%2Fthumb%2Fc%2Fcb%2FFlag_of_the_Czech_Republic.svg%2F640px-Flag_of_the_Czech_Republic.svg.png&h=aaf894a4054a000fd36036b44cfeb3a81a3d65e0ec0688a81c299224a9bec60e",
|
||||
"tooltip": "Free DLC when you're born in Slovakia, you understand Czech fluently",
|
||||
"tooltip": "Free DLC pokud se narodíš na Slovensku, česky rozumíš plynule",
|
||||
"id": "cz"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -1,27 +1,31 @@
|
|||
{
|
||||
"title": "Portfolio zyqa",
|
||||
"hobbies": "Programování, poslouchání hudby, reverzní inženýrství, hraní Counter-Strike",
|
||||
"title": "zyqovo Portfolio",
|
||||
"hobbies": "Programování, Poslech hudby, Reverzní inženýrství, Hraní Counter-Strike",
|
||||
"status": "Stav",
|
||||
"languages_header": "Jazyky",
|
||||
"skills_header": "Dovednosti",
|
||||
"stats_header": "Statistiky programování",
|
||||
"stats_since": "Od 5. ledna 2025",
|
||||
"contact_header": "Kontakt",
|
||||
"software_header": "Software, který používám",
|
||||
"software_equicord_tooltip": "Pomohl jsem vytvořit 2 pluginy",
|
||||
"software_header": "Softvér",
|
||||
"software_equicord_tooltip": "Přispěl jsem k vytvoření 2 pluginů",
|
||||
"software_intellij_tooltip": "Použito na tvorbu mého Minecraft módu",
|
||||
"software_android_tooltip": "Použito k tvorbě/upravám open-source aplikací",
|
||||
"software_kitty_tooltip": "Hlavní terminál na Linuxu",
|
||||
"tooltip_py": "Druhý programovací jazyk, který jsem se naučil",
|
||||
"tooltip_html": "Nenávidím tě, CSS",
|
||||
"tooltip_js": "Zábavný jazyk s nejčistší syntaxí po C",
|
||||
"tooltip_djs": "Použito v mém selfbotovi",
|
||||
"tooltip_c": "Vytvořil jsem malé programy a malware",
|
||||
"tooltip_cpp": "Vytvořil jsem GDI malware pro Windows",
|
||||
"tooltip_cs": "Vytvořil jsem hodně malwaru",
|
||||
"tooltip_cs": "Vytvořil jsem hodně malware",
|
||||
"tooltip_java": "Vytvořil jsem Minecraft mod a Android aplikaci",
|
||||
"tooltip_kt": "Vytvořil jsem Android aplikace",
|
||||
"tooltip_mn": "Profesionální mongolský házeč kamenů",
|
||||
"tooltip_en": "Začal jsem se učit v 1. třídě",
|
||||
"tooltip_de": "Začal jsem se učit ve 2. třídě",
|
||||
"tooltip_fr": "Začal jsem se učit v 7. třídě",
|
||||
"tooltip_sk": "Můj první jazyk, narozený na Slovensku",
|
||||
"tooltip_cz": "DLC zdarma, když se narodíš na Slovensku, češtině rozumíš plynule"
|
||||
"tooltip_mn": "Profesionální mongolský vrhač kamenů",
|
||||
"more": "Více najdeš na <a href='sitemap' id='more_sm'>stránce sitemap/sites</a>",
|
||||
"note": "Poznámka: Občas zapomenu přidat nové stránky. Zkontroluj <a href='https://github.com/zyqunix/tools'>GitHub</a>, pokud si myslíš, že něco chybí",
|
||||
"copyright": "© 2025 zyqunix - všechna práva vyhrazena",
|
||||
"foss": "❤️ Tento web je open-source na <a href='https://github.com/zyqunix/tools' target='_blank'>GitHub</a>",
|
||||
"inspired": "✨ Inspirováno <a href='https://vmohammad.dev' target='_blank'>portfoliem vMohammada</a>",
|
||||
"bw": "❤️ Vytvořeno s láskou od zyqunixe v Německu"
|
||||
}
|
||||
|
|
|
@ -4,11 +4,14 @@
|
|||
"status": "Status",
|
||||
"languages_header": "Sprachen",
|
||||
"skills_header": "Fähigkeiten",
|
||||
"stats_header": "Programmierungsstatistiken",
|
||||
"stats_header": "Statistiken",
|
||||
"stats_since": "Seit 5. Januar 2025",
|
||||
"contact_header": "Kontakt",
|
||||
"software_header": "Software",
|
||||
"software_equicord_tooltip": "Bei der Herstellung von 2 Plugins beigetragen",
|
||||
"software_intellij_tooltip": "Wurde verwendet um meine Minecraft Mod zu erstellen",
|
||||
"software_android_tooltip": "Wurde verwendet um Open-Source Apps zu erstellen oder anzupassen",
|
||||
"software_kitty_tooltip": "Hauptterminal auf Linux",
|
||||
"tooltip_py": "Die zweite Programmiersprache die ich je gelernt have",
|
||||
"tooltip_html": "Ich hasse dich, CSS",
|
||||
"tooltip_js": "Lustige Sprache mit der saubersten Syntax nach C",
|
||||
|
@ -19,9 +22,11 @@
|
|||
"tooltip_java": "Machte einen Minecraft Mod und eine Android App",
|
||||
"tooltip_kt": "Android Apps gemacht",
|
||||
"tooltip_mn": "Professioneller Mongolischer Steinewerfer",
|
||||
"tooltip_en": "In der 1. Klasse angefangen zu lernen",
|
||||
"tooltip_de": "In der 2. Klasse angefangen zu lernen",
|
||||
"tooltip_fr": "In der 7. Klasse angefangen zu lernen",
|
||||
"tooltip_sk": "Muttersprache - wurde in der Slowakei geboren",
|
||||
"tooltip_cz": "Freie DLC wenn man in der Slowakei geboren ist, man versteht Tschechisch fließend"
|
||||
"more": "Mehr findest du auf der <a href='sitemap' id='more_sm'>sitemap/sites page</a>",
|
||||
"more_sm": "Sitemap/Sites Seite",
|
||||
"note": "Hinweis: Manchmal vergesse ich neue Seiten hinzuzufügen. Überprüfe dann mein <a href='https://github.com/zyqunix/tools'>GitHub</a> wenn du denkst, dass einige fehlen.",
|
||||
"copyright": "© 2025 zyqunix - alle Rechte vorbehalten",
|
||||
"foss": "❤️ Diese Website is open-source auf <a href='https://github.com/zyqunix/tools'>GitHub</a>",
|
||||
"inspired": "✨ Inspiriert von <a href='https://vmohammad.dev' target='_blank' id='vm'>vMohammad's Portfolio</a>",
|
||||
"bw": "❤️ Mit Liebe von zyqunix in Deutschland"
|
||||
}
|
||||
|
|
|
@ -9,6 +9,9 @@
|
|||
"contact_header": "Contact",
|
||||
"software_header": "Software I Use",
|
||||
"software_equicord_tooltip": "I have contributed in making 2 plugins",
|
||||
"software_intellij_tooltip": "Used to make my Minecraft Mod",
|
||||
"software_android_tooltip": "Used to make/customize open-source apps",
|
||||
"software_kitty_tooltip": "Main Terminal on Linux",
|
||||
"tooltip_py": "The second programming language I've learned",
|
||||
"tooltip_html": "I hate you, CSS",
|
||||
"tooltip_js": "Fun language with the cleanest syntax after C",
|
||||
|
@ -19,9 +22,10 @@
|
|||
"tooltip_java": "Made a Minecraft mod and an Android app",
|
||||
"tooltip_kt": "Made Android apps",
|
||||
"tooltip_mn": "Professional Mongolian Stone Thrower",
|
||||
"tooltip_en": "Started learning in 1st grade",
|
||||
"tooltip_de": "Started learning in 2nd grade",
|
||||
"tooltip_fr": "Started learning in 7th grade",
|
||||
"tooltip_sk": "First language, born in Slovakia",
|
||||
"tooltip_cz": "Free DLC when you're born in Slovakia, you understand Czech fluently"
|
||||
"more": "More can be found on the <a href='sitemap' id='more_sm'>sitemap/sites page</a>",
|
||||
"note": "Note: I do forget to add new sites there sometimes. So check the <a href='https://github.com/zyqunix/tools'>GitHub</a> if you think there are some missing",
|
||||
"copyright": "© 2025 zyqunix - all rights reserved",
|
||||
"foss": "❤️ This website is open-source on <a href='https://github.com/zyqunix/tools' target='_blank'>GitHub</a>",
|
||||
"inspired": "✨ Inspired by <a href='https://vmohammad.dev' target='_blank'>vMohammad's Portfolio</a>",
|
||||
"bw": "❤️ Made with love by zyqunix in Germany"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"title": "Portfolio de zyq",
|
||||
"hobbies": "Coder, écouter de la musique, faire de l'ingénierie inverse, jouer à Counter-Strike",
|
||||
"hobbies": "Programmation, Écouter de la musique, Reverse Engineering, Jouer à Counter-Strike",
|
||||
"status": "Statut",
|
||||
"languages_header": "Langues",
|
||||
"skills_header": "Compétences",
|
||||
|
@ -8,20 +8,24 @@
|
|||
"stats_since": "Depuis le 5 janvier 2025",
|
||||
"contact_header": "Contact",
|
||||
"software_header": "Logiciels que j'utilise",
|
||||
"software_equicord_tooltip": "J'ai contribué à créer 2 plugins",
|
||||
"software_equicord_tooltip": "J'ai contribué à la création de 2 plugins",
|
||||
"software_intellij_tooltip": "Utilisé pour créer mon mod Minecraft",
|
||||
"software_android_tooltip": "Utilisé pour créer/personnaliser des applications open-source",
|
||||
"software_kitty_tooltip": "Terminal principal sous Linux",
|
||||
"tooltip_py": "Le deuxième langage de programmation que j'ai appris",
|
||||
"tooltip_html": "Je te déteste, CSS",
|
||||
"tooltip_js": "Langage amusant avec la syntaxe la plus propre après C",
|
||||
"tooltip_djs": "Utilisé dans mon selfbot",
|
||||
"tooltip_c": "Créé des petits logiciels et des malwares",
|
||||
"tooltip_c": "Créé des petits logiciels et malwares",
|
||||
"tooltip_cpp": "Créé un malware GDI pour Windows",
|
||||
"tooltip_cs": "Créé beaucoup de malwares",
|
||||
"tooltip_java": "Créé un mod Minecraft et une appli Android",
|
||||
"tooltip_kt": "Créé des applis Android",
|
||||
"tooltip_mn": "Lanceur de pierres mongol professionnel",
|
||||
"tooltip_en": "Commencé à apprendre en CP",
|
||||
"tooltip_de": "Commencé à apprendre en CE1",
|
||||
"tooltip_fr": "Commencé à apprendre en 5e",
|
||||
"tooltip_sk": "Langue maternelle, né en Slovaquie",
|
||||
"tooltip_cz": "DLC gratuit quand on naît en Slovaquie, on comprend le tchèque couramment"
|
||||
"tooltip_java": "Créé un mod Minecraft et une application Android",
|
||||
"tooltip_kt": "Créé des applications Android",
|
||||
"tooltip_mn": "Lanceur de pierre mongol professionnel",
|
||||
"more": "Plus d'infos sur la <a href='sitemap' id='more_sm'>page plan du site/sites</a>",
|
||||
"note": "Note : J'oublie parfois d’ajouter de nouveaux sites. Consultez le <a href='https://github.com/zyqunix/tools'>GitHub</a> si vous pensez qu'il en manque",
|
||||
"copyright": "© 2025 zyqunix - tous droits réservés",
|
||||
"foss": "❤️ Ce site est open-source sur <a href='https://github.com/zyqunix/tools' target='_blank'>GitHub</a>",
|
||||
"inspired": "✨ Inspiré par le <a href='https://vmohammad.dev' target='_blank'>Portfolio de vMohammad</a>",
|
||||
"bw": "❤️ Fait avec amour par zyqunix en Allemagne"
|
||||
}
|
||||
|
|
|
@ -1,27 +1,31 @@
|
|||
{
|
||||
"title": "Portfólio zyqa",
|
||||
"hobbies": "Programovanie, počúvanie hudby, reverzné inžinierstvo, hranie Counter-Strike",
|
||||
"title": "zyqov Portfólio",
|
||||
"hobbies": "Programovanie, Počúvanie hudby, Reverzné inžinierstvo, Hranie Counter-Strike",
|
||||
"status": "Stav",
|
||||
"languages_header": "Jazyky",
|
||||
"skills_header": "Zručnosti",
|
||||
"stats_header": "Štatistiky programovania",
|
||||
"stats_since": "Od 5. januára 2025",
|
||||
"contact_header": "Kontakt",
|
||||
"software_header": "Softvér, ktorý používam",
|
||||
"software_equicord_tooltip": "Pomohol som vytvoriť 2 pluginy",
|
||||
"software_header": "Softvér",
|
||||
"software_equicord_tooltip": "Prispel som k vytvoreniu 2 pluginov",
|
||||
"software_intellij_tooltip": "Použité na vytvorenie môjho Minecraft módu",
|
||||
"software_android_tooltip": "Použité na tvorbu/upravu open-source aplikácií",
|
||||
"software_kitty_tooltip": "Hlavný terminál v Linuxe",
|
||||
"tooltip_py": "Druhý programovací jazyk, ktorý som sa naučil",
|
||||
"tooltip_html": "Nenávidím ťa, CSS",
|
||||
"tooltip_js": "Zábavný jazyk s najčistejšou syntaxou po C",
|
||||
"tooltip_djs": "Použité v mojom selfbote",
|
||||
"tooltip_c": "Vytvoril som malé programy a malvér",
|
||||
"tooltip_cpp": "Vytvoril som GDI malvér pre Windows",
|
||||
"tooltip_cs": "Vytvoril som veľa malvéru",
|
||||
"tooltip_java": "Vytvoril som Minecraft mod a Android aplikáciu",
|
||||
"tooltip_c": "Vytvoril som malé softvéry a malwary",
|
||||
"tooltip_cpp": "Vytvoril som GDI malware pre Windows",
|
||||
"tooltip_cs": "Vytvoril som veľa malware",
|
||||
"tooltip_java": "Vytvoril som Minecraft mód a Android aplikáciu",
|
||||
"tooltip_kt": "Vytvoril som Android aplikácie",
|
||||
"tooltip_mn": "Profesionálny mongolský hádzač kameňov",
|
||||
"tooltip_en": "Začal som sa učiť v 1. ročníku",
|
||||
"tooltip_de": "Začal som sa učiť v 2. ročníku",
|
||||
"tooltip_fr": "Začal som sa učiť v 7. ročníku",
|
||||
"tooltip_sk": "Môj prvý jazyk, narodený na Slovensku",
|
||||
"tooltip_cz": "DLC zadarmo keď sa narodíš na Slovensku, češtine rozumieš plynulo"
|
||||
"more": "Viac nájdete na <a href='sitemap' id='more_sm'>stránke so zoznamom stránok</a>",
|
||||
"note": "Poznámka: Občas zabudnem pridať nové stránky. Skontroluj <a href='https://github.com/zyqunix/tools'>GitHub</a>, ak máš pocit, že niečo chýba",
|
||||
"copyright": "© 2025 zyqunix - všetky práva vyhradené",
|
||||
"foss": "❤️ Tento web je open-source na <a href='https://github.com/zyqunix/tools' target='_blank'>GitHub</a>",
|
||||
"inspired": "✨ Inšpirované <a href='https://vmohammad.dev' target='_blank'>portfóliom vMohammada</a>",
|
||||
"bw": "❤️ Vyrobené s láskou od zyqunixa v Nemecku"
|
||||
}
|
||||
|
|
32
index.html
32
index.html
|
@ -11,11 +11,8 @@
|
|||
<body>
|
||||
<div class="info">
|
||||
<img
|
||||
src="https://cdn.discordapp.com/avatars/1201415921802170388/3ccc13a2825eb8c98b5371fa0706e450.webp?size=1024&width=640&height=640"
|
||||
alt="Profile Picture"
|
||||
id="profile-picture"
|
||||
/>
|
||||
<h1 class="name tooltip" data-tooltip="zyqunix / Fabio / Laetitia / fentboiswag / монгол / 192.168.2.217">zyqunix</h1>
|
||||
src="https://cdn.discordapp.com/avatars/1201415921802170388/3ccc13a2825eb8c98b5371fa0706e450.webp?size=1024&width=640&height=640" alt="Profile Picture" id="profile-picture"/>
|
||||
<h1 class="name tooltip" data-tooltip="zyqunix / Fabio / fentboiswag / монгол">zyqunix</h1>
|
||||
<span><div class="time tooltip" id="time"></div><div class="weather" id="weather"></div></span></span>
|
||||
<div class="age" id="age"></div>
|
||||
<div class="hobbies" id="hobbies">
|
||||
|
@ -41,8 +38,11 @@
|
|||
|
||||
<div class="stats cards">
|
||||
<h2 id="coding_stats">Coding Stats</h2>
|
||||
<p id="since">Since January 5th, 2025</p>
|
||||
<p id="stats_since">Since January 5th, 2025</p>
|
||||
<img class="stat-img" src="https://github-readme-stats.vercel.app/api/wakatime?username=zyqunix&theme=transparent&hide_border=true&layout=compact">
|
||||
<a href="https://wakatime.com/@16d25646-eee1-4662-ae82-fd0e157942da"><img src="https://wakatime.com/badge/user/16d25646-eee1-4662-ae82-fd0e157942da.svg" alt="Total time coded since Jan 5 2025" /></a>
|
||||
<h3><a href="https://git.creations.works/zyqunix" target="_blank">Forgejo</a></h3>
|
||||
<h3><a href="https://github.com/zyqunix" target="_blank">GitHub</a></h3>
|
||||
</div>
|
||||
|
||||
<div class="contact cards">
|
||||
|
@ -71,7 +71,7 @@
|
|||
<img class="image" src="https://upload.wikimedia.org/wikipedia/commons/0/07/Neovim-mark-flat.svg">
|
||||
<span class="software-name">Neovim</span>
|
||||
</a>
|
||||
<a class="software-item tooltip" data-tooltip="I have contributed in making 2 plugins" href="https://equicord.org" target="_blank">
|
||||
<a id="software_equicord_tooltip" class="software-item tooltip" data-tooltip="I have contributed in making 2 plugins" href="https://equicord.org" target="_blank">
|
||||
<img class="image" src="data:image/svg+xml,%3csvg%20width='443'%20height='443'%20viewBox='0%200%20443%20443'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_44_30)'%3e%3cpath%20d='M443%20221.5C443%20343.831%20343.831%20443%20221.5%20443C99.1691%20443%200%20343.831%200%20221.5C0%2099.1691%2099.1691%200%20221.5%200C343.831%200%20443%2099.1691%20443%20221.5ZM88.0751%20221.5C88.0751%20295.188%20147.811%20354.925%20221.5%20354.925C295.189%20354.925%20354.925%20295.188%20354.925%20221.5C354.925%20147.811%20295.189%2088.075%20221.5%2088.075C147.811%2088.075%2088.0751%20147.811%2088.0751%20221.5Z'%20fill='%23828282'/%3e%3cpath%20d='M292.475%20221.738C292.475%20260.805%20260.805%20292.475%20221.738%20292.475C206.464%20292.475%20192.321%20287.634%20180.759%20279.403L99.204%20328.406C213.071%20259.189%20140.312%20237.528%2065.4865%20281.979L151.513%20230.289C151.175%20227.486%20151.001%20224.632%20151.001%20221.738C151.001%20182.671%20182.671%20151.001%20221.738%20151.001C236.81%20151.001%20250.781%20155.714%20262.257%20163.748L318.541%20129.929C308.425%20119.209%20296.562%20110.196%20283.404%20103.305C262.883%2092.5569%20239.917%2087.3371%20216.767%2088.1588C193.616%2088.981%20171.078%2095.816%20151.371%20107.992C131.664%20120.168%20115.466%20137.264%20104.372%20157.6C100.352%20164.97%2097.0514%20172.673%2094.4977%20180.602C87.043%20203.753%2068.385%20224.336%2044.0682%20224.786C19.7508%20225.237%20-0.771072%20205.707%203.59034%20181.78C7.80789%20158.642%2015.7009%20136.23%2027.0546%20115.419C45.4719%2081.6595%2072.362%2053.2771%20105.078%2033.0639C137.794%2012.8507%20175.21%201.5037%20213.642%200.139448C252.074%20-1.2248%20290.2%207.44037%20324.267%2025.2823C358.334%2043.1247%20387.169%2069.5294%20407.934%20101.898C428.699%20134.267%20440.679%20171.484%20442.696%20209.888C444.712%20248.291%20436.694%20286.558%20419.433%20320.923C408.791%20342.107%20394.864%20361.358%20378.246%20378.002C361.062%20395.213%20333.322%20389.466%20319.844%20369.221C306.366%20348.976%20312.66%20321.917%20327.444%20302.605C332.508%20295.991%20336.96%20288.891%20340.729%20281.389C351.127%20260.689%20355.956%20237.638%20354.742%20214.505C354.103%20202.346%20351.807%20190.385%20347.956%20178.941L291.894%20212.626C292.278%20215.609%20292.475%20218.65%20292.475%20221.738ZM99.204%20328.406C97.8064%20329.256%2096.3807%20330.113%2094.9269%20330.976L99.204%20328.406Z'%20fill='url(%23paint0_linear_44_30)'/%3e%3cpath%20d='M224.615%20186.365C238.145%20178.236%20255.704%20182.613%20263.834%20196.143C271.963%20209.673%20267.586%20227.232%20254.055%20235.362L94.9268%20330.976L65.4863%20281.98L224.615%20186.365Z'%20fill='%23828282'/%3e%3c/g%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_44_30'%20x1='223.001'%20y1='0'%20x2='223.001'%20y2='388.178'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%235C5C5C'/%3e%3cstop%20offset='1'%20stop-color='%23333333'/%3e%3c/linearGradient%3e%3cclipPath%20id='clip0_44_30'%3e%3crect%20width='443'%20height='443'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e">
|
||||
<span class="software-name">Equicord</span>
|
||||
</a>
|
||||
|
@ -87,15 +87,15 @@
|
|||
<img class="image" src="https://raw.githubusercontent.com/Floorp-Projects/Floorp/refs/heads/ESR128/browser/branding/official/content/about-logo.svg">
|
||||
<span class="software-name">Floorp</span>
|
||||
</a>
|
||||
<a class="software-item tooltip" data-tooltip="Used to make my Minecraft Mod" href="https://www.jetbrains.com/idea" target="_blank">
|
||||
<a id="software_intellij_tooltip" class="software-item tooltip" data-tooltip="Used to make my Minecraft Mod" href="https://www.jetbrains.com/idea" target="_blank">
|
||||
<img class="image" src="https://upload.wikimedia.org/wikipedia/commons/9/9c/IntelliJ_IDEA_Icon.svg">
|
||||
<span class="software-name">IntelliJ IDEA</span>
|
||||
</a>
|
||||
<a class="software-item tooltip" data-tooltip="Used to make/customize open-source apps" href="https://developer.android.com/studio" target="_blank">
|
||||
<a id="software_android_tooltip" class="software-item tooltip" data-tooltip="Used to make/customize open-source apps" href="https://developer.android.com/studio" target="_blank">
|
||||
<img class="image" src="https://wikiless.funami.tech/media/wikipedia/commons/5/51/Android_Studio_Logo_2024.svg">
|
||||
<span class="software-name">Android Studio</span>
|
||||
</a>
|
||||
<a class="software-item tooltip" data-tooltip="Main Terminal on Linux" href="https://sw.kovidgoyal.net/kitty" target="_blank">
|
||||
<a id="software_kitty_tooltip" class="software-item tooltip" data-tooltip="Main Terminal on Linux" href="https://sw.kovidgoyal.net/kitty" target="_blank">
|
||||
<img class="image" src="https://sw.kovidgoyal.net/kitty/_static/kitty.svg">
|
||||
<span class="software-name">Kitty</span>
|
||||
</a>
|
||||
|
@ -103,8 +103,8 @@
|
|||
|
||||
<div class="cards sitemap shadow">
|
||||
<h2 class="card-header" id="sitemap">Sitemap</h2>
|
||||
<h3>More can be found on the <a href="sitemap">sitemap/sites page</a></h3>
|
||||
<h4>Note: I do forget to add new sites there sometimes. So check the <a href="https://github.com/zyqunix/tools">GitHub</a> if you think there are some missing</h4>
|
||||
<h3 id="more">More can be found on the <a href="sitemap" id="more_sm">sitemap/sites page</a></h3>
|
||||
<h4 id="note">Note: I do forget to add new sites there sometimes. So check the <a href="https://github.com/zyqunix/tools">GitHub</a> if you think there are some missing</h4>
|
||||
</div>
|
||||
|
||||
<div class="music">
|
||||
|
@ -127,10 +127,10 @@
|
|||
</div>
|
||||
|
||||
<footer class="cards">
|
||||
<p>© 2025 zyqunix - all rights reserved</p>
|
||||
<p>❤️ This website is open-source on <a href="https://github.com/zyqunix/tools" target="_blank">GitHub</a></p>
|
||||
<p>✨ Inspired by <a href="https://vmohammad.dev" target="_blank">vMohammad's Portfolio</a></p>
|
||||
<p>❤️ Made with love by zyqunix in Germany</p>
|
||||
<p id="copyright">© 2025 zyqunix - all rights reserved</p>
|
||||
<p id="foss">❤️ This website is open-source on <a href="https://github.com/zyqunix/tools" target="_blank">GitHub</a></p>
|
||||
<p id="inspired">✨ Inspired by <a href="https://vmohammad.dev" target="_blank" id="vm">vMohammad's Portfolio</a></p>
|
||||
<p id="bw">❤️ Made with love by zyqunix in Germany</p>
|
||||
</footer>
|
||||
|
||||
<script src="assets/js/index.js"></script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue