Skip to content

Commit

Permalink
spanisch
Browse files Browse the repository at this point in the history
  • Loading branch information
MelvilQ committed Apr 30, 2022
1 parent 8c5d39a commit d469274
Show file tree
Hide file tree
Showing 6 changed files with 112 additions and 36 deletions.
1 change: 1 addition & 0 deletions src/components/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ export default {
return [
{ value: "en", label: "EN" },
{ value: "de", label: "DE" },
{ value: "es", label: "ES" },
{ value: "fr", label: "FR" },
{ value: "it", label: "IT" },
{ value: "pl", label: "PL" },
Expand Down
74 changes: 74 additions & 0 deletions src/resources/es.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
export default {
C: "Do",
CSharp: "Do♯",
D: "Re",
DFlat: "Re♭",
DSharp: "Re♯",
E: "Mi",
EFlat: "Mi♭",
F: "Fa",
FSharp: "Fa♯",
G: "Sol",
GFlat: "Sol♭",
GSharp: "Sol♯",
A: "La",
AFlat: "La♭",
ASharp: "La♯",
B: "Si",
BFlat: "Si♭",

correctExcl: "Correcto!",
wrongExcl: "Errado!",

ABORT: "ABORTAR",

lastRound: "Última ronda",
score: "Puntaje",
accuracy: "Precisión",
correct: "correcto",
wrong: "errado",

START: "EMPEZAR",
settings: "Ajustes",
ROUND_LENGTH: "LONGIDUD DE RONDA",
NOTE_INPUT: "ENTRADA",
CLEF: "CLAVE",
DIFFICULTY: "DIFFICULDAD",
ACCIDENTALS: "ACCIDENTALES",
LANGUAGE: "IDIOMA",
twentySeconds: "20 segundos",
oneMinute: "1 minutos",
fiveMinutes: "5 minutos",
infinite: "Infinido",
buttons: "Botones",
piano: "Piano",
trebleClef: "Sol",
bassClef: "Fa",
altoClef: "Alto",
tenorClef: "Tenor",
easy: "Fácil",
normal: "Medio",
hard: "Duro",
none: "Nada",
sharp: "♯",
flat: "♭",
sharpAndFlat: "♯ and ♭",
SOUND: "SONIDO",
VIBRATION: "VIBRACIÓN",
DISPLAYCORRECTNOTE: "MOSTRAR NOTA CORRECTA",
on: "Encendido",
off: "Apagado",

TIME: "TIEMPO",
CORRECT: "CORRECTO",
ACCURACY: "PRECISIÓN",
SCORE: "PUNTAJE",

record: "Puntuación máxima",
history: "Historia",

noMidiSupport: "Lo siento, parece que su dispositivo no admite MIDI.",
noDeviceFound: "Ningún dispositivo encontrado. Vuelva a conectar el dispositivo MIDI.",
playTheNote: "Toca la nota en tu teclado MIDI.",
lastNotePlayed: "Última nota tocada",
};
34 changes: 17 additions & 17 deletions src/resources/fr.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
export default {
C: "do",
CSharp: "do dièse",
D: "",
DFlat: "ré bémol",
DSharp: "ré dièse",
E: "mi",
EFlat: "mi bémol",
F: "fa",
FSharp: "fa dièse",
G: "sol",
GFlat: "sol bémol",
GSharp: "sol dièse",
A: "la",
AFlat: "la bémol",
ASharp: "la dièse",
B: "si",
BFlat: "si bémol",
C: "Do",
CSharp: "Do♯",
D: "",
DFlat: "Ré♭",
DSharp: "Ré♯",
E: "Mi",
EFlat: "Mi♭",
F: "Fa",
FSharp: "Fa♯",
G: "Sol",
GFlat: "Sol♭",
GSharp: "Sol♯",
A: "La",
AFlat: "La♭",
ASharp: "La♯",
B: "Si",
BFlat: "Si♭",

correctExcl: "C'est juste!",
wrongExcl: "C'est faux!",
Expand Down
34 changes: 17 additions & 17 deletions src/resources/it.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
export default {
C: "do",
CSharp: "do diesis",
D: "re",
DFlat: "re bemolle",
DSharp: "re diesis",
E: "mi",
EFlat: "mi bemolle",
F: "fa",
FSharp: "fa diesis",
G: "sol",
GFlat: "sol bemolle",
GSharp: "sol diesis",
A: "la",
AFlat: "la bemolle",
ASharp: "la diesis",
B: "si",
BFlat: "si bemolle",
C: "Do",
CSharp: "Do♯",
D: "Re",
DFlat: "Re♭",
DSharp: "Re♯",
E: "Mi",
EFlat: "Mi♭",
F: "Fa",
FSharp: "Fa♯",
G: "Sol",
GFlat: "Sol♭",
GSharp: "Sol♯",
A: "La",
AFlat: "La♭",
ASharp: "La♯",
B: "Si",
BFlat: "Si♭",

correctExcl: "Giusto!",
wrongExcl: "Sbagliato!",
Expand Down
2 changes: 1 addition & 1 deletion src/resources/pt.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
C: "Dó",
CSharp: "♯",
CSharp: "♯",
D: "Ré",
DFlat: "Ré♭",
DSharp: "Ré♯",
Expand Down
3 changes: 2 additions & 1 deletion src/resources/strings.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import cz from "./cz";
import de from "./de";
import en from "./en";
import es from "./es";
import fr from "./fr";
import it from "./it";
import ln from "./ln";
Expand All @@ -10,4 +11,4 @@ import pt from "./pt";
import hu from "./hu";
import ja from "./ja";

export default { de, en, fr, it, pl, pt, cz, ln, nl, hu, ja };
export default { de, en, es, fr, it, pl, pt, cz, ln, nl, hu, ja };

0 comments on commit d469274

Please sign in to comment.