diff options
author | Joris Guyonvarch | 2015-08-09 00:21:03 +0200 |
---|---|---|
committer | Joris Guyonvarch | 2015-08-09 00:21:03 +0200 |
commit | 169d52bfbe8b7f95dcece3cef245cdd62336e2f8 (patch) | |
tree | 491b5edb2646b41d36920f1c670cba26a674868c /src/client | |
parent | a4f60df0f3b72553380bdd3ca960abf42048ed7e (diff) |
Wording for sign in email
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/Model/View/Payment/Add.elm | 2 | ||||
-rw-r--r-- | src/client/View/Payments/Add.elm | 2 | ||||
-rw-r--r-- | src/client/View/SignIn.elm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/client/Model/View/Payment/Add.elm b/src/client/Model/View/Payment/Add.elm index ff64388..4665180 100644 --- a/src/client/Model/View/Payment/Add.elm +++ b/src/client/Model/View/Payment/Add.elm @@ -27,7 +27,7 @@ initAddPayment = validateName : String -> Result String String validateName name = name - |> validateNonEmpty "The name is required." + |> validateNonEmpty "The category is required." validateCost : String -> Result String Int validateCost cost = diff --git a/src/client/View/Payments/Add.elm b/src/client/View/Payments/Add.elm index d11f208..88a1bd7 100644 --- a/src/client/View/Payments/Add.elm +++ b/src/client/View/Payments/Add.elm @@ -35,7 +35,7 @@ addPayment addPayment = [ class "name" ] [ label [ for "nameInput" ] - [ text "Name" ] + [ text "Category" ] , input [ id "nameInput" , class (if isJust addPayment.nameError then "error" else "") diff --git a/src/client/View/SignIn.elm b/src/client/View/SignIn.elm index a45adc7..a790f0a 100644 --- a/src/client/View/SignIn.elm +++ b/src/client/View/SignIn.elm @@ -46,7 +46,7 @@ signInResult signInView = Ok login -> div [ class "success" ] - [ text ("We send you an email, please click to the provided link in order to sign in.") ] + [ text ("We sent you an email, please click to the provided link in order to sign in.") ] Err error -> div [ class "error" ] |