diff options
author | Joris | 2016-06-03 20:34:30 +0200 |
---|---|---|
committer | Joris | 2016-06-03 20:34:30 +0200 |
commit | 6ebd46c4913695210bd46179817bcc166a225ed8 (patch) | |
tree | 8e53d43d8805a29e9cd58ce0397a29c0ba376b0c /src/client/elm | |
parent | 8e3a7bf1cb83bbb6e3dcd54308eefa52a29cd679 (diff) |
Add creation and amount translations
Diffstat (limited to 'src/client/elm')
-rw-r--r-- | src/client/elm/LoggedIn/Income/View.elm | 4 |
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 |