From 0599db5e42773452eeca69576ce9148d46ddf9dc Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 29 Aug 2015 16:10:05 +0200 Subject: MoneySymbol is translated too --- src/client/View/Payments/Table.elm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/client/View/Payments/Table.elm') diff --git a/src/client/View/Payments/Table.elm b/src/client/View/Payments/Table.elm index 50dd151..a180315 100644 --- a/src/client/View/Payments/Table.elm +++ b/src/client/View/Payments/Table.elm @@ -15,6 +15,7 @@ import String exposing (append) import Model exposing (Model) import Model.Payment exposing (..) import Model.View.PaymentView exposing (PaymentView) +import Model.Translations exposing (getMessage) import ServerCommunication as SC exposing (serverCommunications) @@ -31,7 +32,7 @@ paymentsTable model paymentView = ([ div [ class "header" ] [ div [ class "cell category" ] [ renderIcon "shopping-cart" ] - , div [ class "cell cost" ] [ renderIcon "euro" ] + , div [ class "cell cost" ] [ text (getMessage "MoneySymbol" model.translations) ] , div [ class "cell user" ] [ renderIcon "user" ] , div [ class "cell date" ] [ renderIcon "calendar" ] , div [ class "cell" ] [] @@ -53,7 +54,7 @@ paymentLine model paymentView (id, payment) = , onClick actions.address (UpdatePayment (ToggleEdit id)) ] [ div [ class "cell" ] [ text payment.name ] - , div [ class "cell" ] [ text ((toString payment.cost) ++ " €") ] + , div [ class "cell" ] [ text ((toString payment.cost) ++ " " ++ (getMessage "MoneySymbol" model.translations)) ] , div [ class "cell" ] [ text payment.userName ] , div [ class "cell" ] [ text (renderDate payment.creation model.translations) ] , if paymentView.userName == payment.userName -- cgit v1.2.3