-
{{ getMonthName(span.month) }}
+
{{ $t('months.' + getMonthName(span.month)) }}
{{ span.year }}
diff --git a/resources/assets/js/prototype/translations/en.json b/resources/assets/js/prototype/translations/en.json
new file mode 100644
index 00000000..472d9d74
--- /dev/null
+++ b/resources/assets/js/prototype/translations/en.json
@@ -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"
+ }
+}
diff --git a/resources/assets/js/prototype/translations/index.js b/resources/assets/js/prototype/translations/index.js
new file mode 100644
index 00000000..b74bcd95
--- /dev/null
+++ b/resources/assets/js/prototype/translations/index.js
@@ -0,0 +1,7 @@
+import * as en from './en.json';
+import * as nl from './nl.json';
+
+export default {
+ en,
+ nl,
+};
diff --git a/resources/assets/js/prototype/translations/nl.json b/resources/assets/js/prototype/translations/nl.json
new file mode 100644
index 00000000..cb4ce9a2
--- /dev/null
+++ b/resources/assets/js/prototype/translations/nl.json
@@ -0,0 +1,59 @@
+{
+ "amount": "Bedrag",
+ "create": "Creëer",
+ "dailyBalanceGraphDescription": "Dit is je balans gedurende deze maand",
+ "dashboard": "Dashboard",
+ "date": "Datum",
+ "description": "Omschrijving",
+ "earning": "Inkomst",
+ "earningDescriptionPlaceholder": "Salaris Februari",
+ "email": "E-mail",
+ "goodAfternoon": "Goedemiddag",
+ "goodEvening": "Goedenavond",
+ "goodMorning": "Goedemorgen",
+ "language": "Taal",
+ "logIn": "Log in",
+ "password": "Wachtwoord",
+ "recurringDescription": "Dit is een terugkerende transactie–maak deze in de toekomst voor mij aan",
+ "spending": "Uitgave",
+ "spendingDescriptionPlaceholder": "Verjaardagscadeau voor Angela",
+ "tag": "Etiket",
+ "theme": "Thema",
+ "transactions": "Transacties",
+ "weeklyReport": "Wekelijks rapport",
+
+ "activities": {
+ "tag": {
+ "created": "heeft tag #{id} gemaakt",
+ "deleted": "heeft tag #{id} verwijderd"
+ },
+
+ "transaction": {
+ "created": "heeft transactie #{id} gemaakt",
+ "deleted": "heeft transactie #{id} verwijderd"
+ }
+ },
+
+ "intervals": {
+ "daily": "Dagelijks",
+ "weekly": "Wekelijks",
+ "biweekly": "Tweewekelijks",
+ "monthly": "Maandelijks",
+ "yearly": "Jaarlijks"
+ },
+
+ "months": {
+ "january": "Januari",
+ "february": "Februari",
+ "march": "Maart",
+ "april": "April",
+ "may": "Mei",
+ "june": "Juni",
+ "july": "Juli",
+ "august": "Augustus",
+ "september": "September",
+ "october": "Oktober",
+ "november": "November",
+ "december": "December"
+ }
+}