Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit c05b42b

Browse files
committed
Merge cf-workers-proxy-9e9.pages.dev-picklenik:Frontesque/VueTube
2 parents 86c7da0 + 3af4a5d commit c05b42b

18 files changed

+51
-47
lines changed

NUXT/pages/mods/general.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,13 @@
8686
borderRadius: `${$store.state.tweaks.roundTweak / 4}rem`,
8787
}"
8888
>
89-
<div class="mb-4">Personalized Recommendations</div>
89+
<div class="mb-4">{{ lang.personalizedrecommendations }}</div>
9090
<div
9191
class="background--text"
9292
:class="$vuetify.theme.dark ? 'text--lighten-4' : 'text--darken-4'"
9393
style="font-size: 0.75rem; margin-top: -0.25rem !important"
9494
>
95-
Receive personalized recommendations in exchange for sending watch
96-
time telemetry.
95+
{{ lang.personalizedrecommendationsinfo }}
9796
</div>
9897
</div>
9998
<v-switch

NUXT/pages/mods/tweaks.vue

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160

161161
<!-- TODO: translate below -->
162162

163-
<h3 class="ml-8 mt-8">Launch Screen</h3>
163+
<h3 class="ml-8 mt-8">{{ lang.launchscreen }}</h3>
164164

165165
<v-card
166166
flat
@@ -200,7 +200,7 @@
200200
mdi-align-horizontal-center
201201
</v-icon>
202202
<span class="mt-3 text-center" style="font-size: 0.8rem">
203-
Centered Layout
203+
{{ lang.centeredlayout }}
204204
</span>
205205
</v-card>
206206
<v-card
@@ -237,7 +237,7 @@
237237
mdi-align-vertical-distribute
238238
</v-icon>
239239
<span class="mt-3 text-center" style="font-size: 0.8rem">
240-
Fullscreen Layout
240+
{{ lang.fullscreenlayout }}
241241
</span>
242242
</v-card>
243243
<v-card
@@ -282,7 +282,7 @@
282282
</g>
283283
</svg>
284284
<span class="mt-3 text-center" style="font-size: 0.8rem">
285-
Themed Icon
285+
{{ lang.themedicon }}
286286
</span>
287287
</v-card>
288288
</v-card>
@@ -291,7 +291,7 @@
291291

292292
<!-- TODO: translate below -->
293293

294-
<h3 class="ml-8 mt-8">Bottom Navigation</h3>
294+
<h3 class="ml-8 mt-8">{{ lang.bottomnavigation }}</h3>
295295
<v-card
296296
flat
297297
class="mx-4 mt-2 mb-6 background d-flex flex-column"
@@ -315,7 +315,7 @@
315315
"
316316
>
317317
<div class="my-auto" :class="navigationShift ? 'primary--text' : ''">
318-
Shift
318+
{{ lang.shift }}
319319
</div>
320320
<v-spacer />
321321
<v-switch
@@ -341,7 +341,7 @@
341341
"
342342
>
343343
<div class="my-auto" :class="navigationText ? 'primary--text' : ''">
344-
Show Labels
344+
{{ lang.showlabels }}
345345
</div>
346346
<v-spacer />
347347
<v-switch
@@ -370,7 +370,7 @@
370370
}"
371371
@click="(navigationIcons = 0), $vuetube.haptics.hapticsImpactLight(1)"
372372
>
373-
<div>MDI</div>
373+
<div>{{ lang.mdi }}</div>
374374
<v-spacer></v-spacer>
375375
<v-icon
376376
:class="navigationIcons === 0 ? 'primary--text' : ''"
@@ -412,7 +412,7 @@
412412
$vuetube.haptics.hapticsImpactLight(1)
413413
"
414414
>
415-
<div>Material Symbols</div>
415+
<div>{{ lang.materialsymbols }}</div>
416416
<v-spacer></v-spacer>
417417
<svg
418418
xmlns="http://www.w3.org/2000/svg"
@@ -468,7 +468,7 @@
468468
$vuetube.haptics.hapticsImpactLight(1)
469469
"
470470
>
471-
<div>FluentUI Icons</div>
471+
<div>{{ lang.fluentuiicons }}</div>
472472
<v-spacer></v-spacer>
473473
<svg
474474
xmlns="http://www.w3.org/2000/svg"
@@ -522,7 +522,7 @@
522522
$vuetube.haptics.hapticsImpactLight(1)
523523
"
524524
>
525-
<div>IBM Carbon Icons</div>
525+
<div>{{ lang.ibmcarbonicons }}</div>
526526
<v-spacer></v-spacer>
527527
<svg
528528
xmlns="http://www.w3.org/2000/svg"

NUXT/plugins/languages/english.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ module.exports = {
5656
backup: "Backup",
5757
backupinfo: "Backup or restore your application settings",
5858
restore: "Restore",
59+
personalizedrecommendations: "Personalized recommendations",
60+
personalizedrecommendationsinfo: "Receive personalized recommendations in exchange for sending watch time telemetry.",
5961
},
6062
theme: {
6163
normal: "Normal",
@@ -73,6 +75,17 @@ module.exports = {
7375
roundthumbnails: "Round Thumbnails",
7476
roundwatchpagecomponents: "Round Watch Page Components",
7577
radius: "Radius",
78+
launchscreen: "Launch Screen",
79+
centeredlayout: "Centered Layout",
80+
fullscreenlayout: "Fullscreen Layout",
81+
themedicon: "Themed Icon",
82+
bottomnavigation: "Bottom Navigation",
83+
shift: "Shift",
84+
showlabels: "Show labels",
85+
mdi: "MDI",
86+
materialsymbols: "Material Symbols",
87+
fluentuiicons: "FluentUI Icons",
88+
ibmcarbonicons: "IBM Carbon Icons",
7689
},
7790
startup: {
7891
defaultpage: "Default Page",

NUXT/plugins/languages/german.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ module.exports = {
1212

1313
index: {
1414
connecting: "Verbinden",
15-
plugins: "Loading Plugins",
15+
plugins: "Plugins werden geladen",
1616
launching: "Starten",
1717
},
1818

1919
settings: {
2020
general: "Allgemein",
2121
theme: "Theme",
2222
player: "Videoplayer",
23-
uitweaker: "UI Optimierer",
23+
uitweaker: "UI Tweaker",
2424
startupoptions: "Startoptionen",
2525
plugins: "Plugins",
2626
updates: "Updates",
2727
logs: "Logs",
2828
about: "Über",
29-
devmode: "Registrierungseditor",
29+
devmode: "Entwicklermodus",
3030
},
3131

3232
mods: {
@@ -79,7 +79,7 @@ module.exports = {
7979
events: {
8080
welcome: "Wilkommen bei VueTube",
8181
tagline: "Die Zukunft des Videostreamings",
82-
next: "Nächste",
82+
next: "Weiter",
8383
updated: "VueTube wurde aktualisiert!",
8484
awesome: "Cool!",
8585
langsetup: "Lass uns eine Sprache aussuchen!",

NUXT/plugins/languages/spanish.js

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ module.exports = {
77
library: "Librería",
88
restart: "Reiniciar",
99
later: "Más tarde",
10-
settingRestart: "Al modificar este ajuste, la app debe ser reiniciada para que los cambios se apliquen.",
10+
settingRestart:
11+
"Al modificar este ajuste, la app debe ser reiniciada para que los cambios se apliquen.",
1112
okay: "OK"
1213
},
1314

@@ -54,7 +55,9 @@ pages: {
5455
language: "Idioma",
5556
backup: "Copia de seguridad",
5657
backupinfo: "Haz una copia de seguridad de tus ajustes o restáuralos",
57-
restore: "Restaurar"
58+
restore: "Restaurar",
59+
personalizedrecommendations: "Recomendaciones personalizadas",
60+
personalizedrecommendationsinfo: "Recibe recomendaciones personalizadas a cambio de enviar datos de tu tiempo de reproducción.",
5861
},
5962
theme: {
6063
normal: "Normal",
@@ -72,6 +75,17 @@ pages: {
7275
roundthumbnails: "Redondear miniaturas",
7376
roundwatchpagecomponents: "Redondear componentes del vídeo",
7477
radius: "Radio",
78+
launchscreen: "Pantalla de carga",
79+
centeredlayout: "Interfaz centrada",
80+
fullscreenlayout: "Interfaz a pantalla completa",
81+
themedicon: "Icono dinámico",
82+
bottomnavigation: "Navegación inferior",
83+
shift: "Movimiento",
84+
showlabels: "Mostrar etiquetas",
85+
mdi: "MDI",
86+
materialsymbols: "Material Symbols",
87+
fluentuiicons: "Iconos de FluentUI",
88+
ibmcarbonicons: "Iconos de IBM Carbon",
7589
},
7690
startup: {
7791
defaultpage: "Pagina predeterminada",
@@ -81,7 +95,8 @@ pages: {
8195
checking: "Buscando actualizaciones",
8296
available: "Actualización disponible",
8397
noupdate: "No hay nuevas actualizaciones",
84-
noupdatemessage: "Estás usando la versión más reciente de VueTube. Vuelve más tarde para buscar actualizaciones.",
98+
noupdatemessage:
99+
"Estás usando la versión más reciente de VueTube. Vuelve más tarde para buscar actualizaciones.",
85100

86101
installed: "Versión instalada",
87102
latest: "Última versión",

NUXT/static/home.svg

Lines changed: 1 addition & 1 deletion
Loading

NUXT/static/subs.svg

Lines changed: 1 addition & 1 deletion
Loading

resources/readme-ja/VueTube.ja.dark.svg

Lines changed: 1 addition & 24 deletions
Loading
-643 Bytes
Loading

resources/readme_icon_community.png

1.28 KB
Loading

0 commit comments

Comments
 (0)