diff options
Diffstat (limited to 'src/client')
-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 |