Skip to content

Commit

Permalink
Merge pull request #32 from AgataBialoskorska/do-not-translate
Browse files Browse the repository at this point in the history
Forbid the translation
  • Loading branch information
AgataBialoskorska authored Oct 2, 2024
2 parents 8e74bd5 + 7197bde commit ad1ad41
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
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

0 comments on commit ad1ad41

Please sign in to comment.