-
-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #498 from range-of-motion/add-spanish-translations…
…-for-spa-prototype Add Spanish translations for SPA prototype
- Loading branch information
Showing
4 changed files
with
63 additions
and
1 deletion.
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
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
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,59 @@ | ||
{ | ||
"amount": "Importe", | ||
"create": "Crear", | ||
"dailyBalanceGraphDescription": "Este es tu saldo a lo largo del mes", | ||
"dashboard": "Dashboard", | ||
"date": "Fecha", | ||
"description": "Descripción", | ||
"earning": "Ingreso", | ||
"earningDescriptionPlaceholder": "Sueldo de febrero", | ||
"email": "Correo", | ||
"goodAfternoon": "Buenas tardes", | ||
"goodEvening": "Buenas noches", | ||
"goodMorning": "Buenos días", | ||
"language": "Idioma", | ||
"logIn": "Iniciar sesión", | ||
"password": "Contraseña", | ||
"recurringDescription": "Esta es una transacción recurrente—créala para el futuro", | ||
"spending": "Gasto", | ||
"spendingDescriptionPlaceholder": "Regalo de cumpleaños para Angela", | ||
"tag": "Etiqueta", | ||
"theme": "Tema", | ||
"transactions": "Transacciones", | ||
"weeklyReport": "Informe semanal", | ||
|
||
"activities": { | ||
"tag": { | ||
"created": "creó la etiqueta #{id}", | ||
"deleted": "eliminó la etiqueta #{id}" | ||
}, | ||
|
||
"transaction": { | ||
"created": "creó la transacción #{id}", | ||
"deleted": "eliminó la transacción #{id}" | ||
} | ||
}, | ||
|
||
"intervals": { | ||
"daily": "Diario", | ||
"weekly": "Semanal", | ||
"biweekly": "Quincenal", | ||
"monthly": "Mensual", | ||
"yearly": "Anual" | ||
}, | ||
|
||
"months": { | ||
"january": "Enero", | ||
"february": "Febrero", | ||
"march": "Marzo", | ||
"april": "Abril", | ||
"may": "Mayo", | ||
"june": "Junio", | ||
"july": "Julio", | ||
"august": "Agosto", | ||
"september": "Septiembre", | ||
"october": "Octubre", | ||
"november": "Noviembre", | ||
"december": "Diciembre" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
import * as en from './en.json'; | ||
import * as nl from './nl.json'; | ||
import * as de from './de.json'; | ||
import * as es from './es.json'; | ||
import * as ru from './ru.json'; | ||
|
||
export default { | ||
en, | ||
nl, | ||
de, | ||
es, | ||
ru, | ||
}; |