diff --git a/CHANGELOG.md b/CHANGELOG.md index 3500ee589..cd641b0fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Updated stripe gem to 5.21.0 - Architecture documentation - Improved coupon creation/deletion workflow +- Default texts for the login modal - Fix a bug: unable to access embedded plan views - Fix a bug: warning message overflow in credit wallet modal - Fix a bug: when using a cash coupon, the amount shown in the statistics is invalid diff --git a/app/frontend/templates/shared/deviseModal.html b/app/frontend/templates/shared/deviseModal.html index cf5153e39..ef8b95187 100644 --- a/app/frontend/templates/shared/deviseModal.html +++ b/app/frontend/templates/shared/deviseModal.html @@ -1,7 +1,7 @@
@@ -24,7 +24,7 @@ required="required" ng-blur="emailError = !!loginForm.email.$error.email" ng-focus="emailError = false" - placeholder="{{ 'app.public.common.your_email_address' | translate }}" /> + translate-attr="{ placeholder: 'app.public.common.your_email_address' }" />
@@ -38,12 +38,12 @@ class="form-control" ng-model="user.password" required="required" - placeholder="{{ 'app.public.common.your_password' | translate }}" + translate-attr="{ placeholder: 'app.public.common.your_password' }" ng-minlength="8"/> - {{ 'app.public.common.password_forgotten' | translate }} + {{ 'app.public.common.password_forgotten' }} -
{{ 'app.public.common.confirm_my_account' | translate }} +
{{ 'app.public.common.confirm_my_account' }}

- {{ 'app.public.common.not_registered_to_the_fablab' }} + {{ 'app.public.common.not_registered_to_the_fablab' }}
- {{ 'app.public.common.create_an_account' }}
+ {{ 'app.public.common.create_an_account' }}