-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(i18n): create translation files
- Loading branch information
Showing
3 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"translation": { | ||
"message": { | ||
"title": "Send a yellow flower!", | ||
"description": "Write a message and send it to your favorite person!", | ||
"form": { | ||
"input": { | ||
"placeholder": "Enter your message for that person :D", | ||
"error": "You must enter a message" | ||
}, | ||
"submit": "Generate link" | ||
}, | ||
"copyLink": "Copy link", | ||
"copied": "Copied", | ||
"generatedUrl": "Generated URL" | ||
}, | ||
"flower": { | ||
"title": "Someone who loves you sent you a flower!", | ||
"andMessage": "And a message...", | ||
"developedBy": "Developed by" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"translation": { | ||
"message": { | ||
"title": "Envía una flor amarilla!", | ||
"description": "Escribe un mensaje y envíalo a tu persona favorita!", | ||
"form": { | ||
"input": { | ||
"placeholder": "Ingresa tu mensaje para esa persona :D", | ||
"error": "Debes ingresar un mensaje" | ||
}, | ||
"submit": "Generar link" | ||
}, | ||
"copyLink": "Copiar el link", | ||
"copied": "Copiado", | ||
"generatedUrl": "URL generada" | ||
}, | ||
"flower": { | ||
"title": "Alguien que te quiere te envio una flor!", | ||
"andMessage": "Y un mensaje...", | ||
"developedBy": "Desarrollado por" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import EN from "./en.translation.json"; | ||
import ES from "./es.translation.json"; | ||
|
||
export { EN, ES }; |