-
-
Notifications
You must be signed in to change notification settings - Fork 178
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 #467 from range-of-motion/translate-spa-prototype
Translate SPA prototype
- Loading branch information
Showing
14 changed files
with
202 additions
and
47 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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": "Amount", | ||
"create": "Create", | ||
"dailyBalanceGraphDescription": "Here is your balance throughout the month", | ||
"dashboard": "Dashboard", | ||
"date": "Date", | ||
"description": "Description", | ||
"earning": "Earning", | ||
"earningDescriptionPlaceholder": "Paycheck February", | ||
"email": "E-mail", | ||
"goodAfternoon": "Good afternoon", | ||
"goodEvening": "Good evening", | ||
"goodMorning": "Good morning", | ||
"language": "Language", | ||
"logIn": "Log in", | ||
"password": "Password", | ||
"recurringDescription": "This is a recurring transaction—create it for me in the future", | ||
"spending": "Spending", | ||
"spendingDescriptionPlaceholder": "Birthday present for Angela", | ||
"tag": "Tag", | ||
"theme": "Theme", | ||
"transactions": "Transactions", | ||
"weeklyReport": "Weekly report", | ||
|
||
"activities": { | ||
"tag": { | ||
"created": "created tag #{id}", | ||
"deleted": "deleted tag #{id}" | ||
}, | ||
|
||
"transaction": { | ||
"created": "created transaction #{id}", | ||
"deleted": "deleted transaction #{id}" | ||
} | ||
}, | ||
|
||
"intervals": { | ||
"daily": "Daily", | ||
"weekly": "Weekly", | ||
"biweekly": "Biweekly", | ||
"monthly": "Monthly", | ||
"yearly": "Yearly" | ||
}, | ||
|
||
"months": { | ||
"january": "January", | ||
"february": "February", | ||
"march": "March", | ||
"april": "April", | ||
"may": "May", | ||
"june": "June", | ||
"july": "July", | ||
"august": "August", | ||
"september": "September", | ||
"october": "October", | ||
"november": "November", | ||
"december": "December" | ||
} | ||
} |
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,7 @@ | ||
import * as en from './en.json'; | ||
import * as nl from './nl.json'; | ||
|
||
export default { | ||
en, | ||
nl, | ||
}; |
Oops, something went wrong.