aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorJoris2016-06-03 20:34:30 +0200
committerJoris2016-06-03 20:34:30 +0200
commit6ebd46c4913695210bd46179817bcc166a225ed8 (patch)
tree8e53d43d8805a29e9cd58ce0397a29c0ba376b0c /src/client
parent8e3a7bf1cb83bbb6e3dcd54308eefa52a29cd679 (diff)
downloadbudget-6ebd46c4913695210bd46179817bcc166a225ed8.tar.gz
budget-6ebd46c4913695210bd46179817bcc166a225ed8.tar.bz2
budget-6ebd46c4913695210bd46179817bcc166a225ed8.zip
Add creation and amount translations
Diffstat (limited to 'src/client')
-rw-r--r--src/client/elm/LoggedIn/Income/View.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/LoggedIn/Income/View.elm b/src/client/elm/LoggedIn/Income/View.elm
index 39f16f4..036cd80 100644
--- a/src/client/elm/LoggedIn/Income/View.elm
+++ b/src/client/elm/LoggedIn/Income/View.elm
@@ -84,11 +84,11 @@ addIncomeView loggedData addIncome =
in
Html.form
[ onSubmitPrevDefault Msg.NoOp ]
- [ label [] [ text "Creation" ]
+ [ label [] [ text (getMessage "Creation" loggedData.translations) ]
, htmlMap <| Input.textInput creation []
, errorFor "DateValidationError" creation
- , label [] [ text "amount" ]
+ , label [] [ text (getMessage "Amount" loggedData.translations) ]
, htmlMap <| Input.textInput amount []
, errorFor "IncomeValidationError" amount