Skip to content

Commit 22a01df

Browse files
committed
Disabled translations for some things
1 parent c11399a commit 22a01df

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/lib/comp/ArtistView.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
/>
5757

5858
<div class="artist-text">
59-
<div class="artist-name">
59+
<div class="artist-name" translate="no">
6060
{data.name}
6161
</div>
6262

src/lib/comp/CopyField.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
</style>
6464

6565
<div class="copy-field">
66-
<div class="copy-field-text">
66+
<div class="copy-field-text" translate="no">
6767
{value}
6868
</div>
6969
<button class="copy-field-btn" onclick={copy}>

src/lib/comp/Footer.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@
3434
<a href="https://github.com/Wolfyxon/SongWrap">Source code</a>
3535
</div>
3636
<div id="footer-author">
37-
made by Wolfyxon
37+
made by <span translate="no">Wolfyxon</span>
3838
</div>
3939
</footer>

src/lib/comp/SongView.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@
9696
src={icon}
9797
/>
9898
<div class="song-text">
99-
<div class="song-title">{data.title}</div>
100-
<div class="song-artist">{data.artist}</div>
99+
<div class="song-title" translate="no">{data.title}</div>
100+
<div class="song-artist" translate="no">{data.artist}</div>
101101

102102
{#if showPlays}
103103
<div class="song-plays">Played {data.totalPlays} times</div>

src/lib/layout/Home.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<div>
5555
<h2>How to get the stats file?</h2>
5656
<p>
57-
Currently only Audacious with the <a href="https://github.com/Wolfyxon/AudaciousStats">AudaciousStats</a> plugin is supported, but
57+
Currently only <span translate="no">Audacious</span> with the <a href="https://github.com/Wolfyxon/AudaciousStats" translate="no">AudaciousStats</a> plugin is supported, but
5858
you can create your own program or plugin to collect stats. <br/>
5959
See the <a href="https://github.com/wolfyxon/songwrap?tab=readme-ov-file#data-format">format specification</a>.
6060
</p>

0 commit comments

Comments
 (0)