Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Forbid the translation #32

Merged
merged 2 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/GameHangman.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ initializeGame()
</script>

<template>
<div class="gameHangman" :style="{ borderColor: color }">
<div class="gameHangman notranslate" :style="{ borderColor: color }">
<a class="goBack" @click="goBack" @mouseenter="aHover" @mouseleave="aNotHover">
<v-icon name="fa-angle-double-left" />
back
Expand Down
6 changes: 4 additions & 2 deletions src/views/View-Home.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="home">
<div class="home notranslate">
<table class="t1">
<thead>
<tr>
Expand Down Expand Up @@ -56,7 +56,9 @@
</table>
<table class="t4 twoColumns">
<thead>
<th colspan="2">SELECT goal, progress FROM my_roadmap<br />ORDER BY progress DESC LIMIT 3;</th>
<tr>
<th colspan="2">SELECT goal, progress FROM my_roadmap<br />ORDER BY progress DESC LIMIT 3;</th>
</tr>
</thead>
<tbody>
<tr>
Expand Down
6 changes: 3 additions & 3 deletions src/views/View-More.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ import { aHover, aNotHover } from '/src/components/AnimationComponent.vue'
</div>
<div class="projects">
<div>My visual projects:</div>
<RouterLink to="/hangman" class="hangmanLink" @mouseenter="aHover" @mouseleave="aNotHover">
<RouterLink to="/hangman" class="hangmanLink notranslate" @mouseenter="aHover" @mouseleave="aNotHover">
<p class="linkIcon"></p>
<p class="linkDescription">Hangman Game</p>
</RouterLink>
<a href="https://www.jabi.pl" class="jabiLink" @mouseenter="aHover" @mouseleave="aNotHover">
<a href="https://www.jabi.pl" class="jabiLink notranslate" @mouseenter="aHover" @mouseleave="aNotHover">
<p class="linkIcon"></p>
<p class="linkDescription">Webpage for Stained Glass brand, created in Vanilla JavaScript</p>
</a>
<a href="https://www.bialoskorski.eu" class="bskiLink" @mouseenter="aHover" @mouseleave="aNotHover">
<a href="https://www.bialoskorski.eu" class="bskiLink notranslate" @mouseenter="aHover" @mouseleave="aNotHover">
<p class="linkIcon"></p>
<p class="linkDescription">Total overhaul webpage in Next.js</p>
</a>
Expand Down
Loading