diff --git a/views/options/profile.jade b/views/options/profile.jade index 59c48b0d6e..5f6ed31b04 100644 --- a/views/options/profile.jade +++ b/views/options/profile.jade @@ -213,6 +213,13 @@ script(id='partials/options.profile.profile.html', type='text/ng-template') button.btn.btn-default(ng-click='_editing.profile = true', ng-show='!_editing.profile')= env.t('edit') h4=env.t('displayName') span(ng-show='profile.profile.name') {{profile.profile.name}} + p + small.muted + =env.t('displayNameDescription1') + |  + a(href='/#/options/settings/settings')=env.t('displayNameDescription2') + |  + =env.t('displayNameDescription3') span.muted(ng-hide='profile.profile.name') -  =env.t('none') |  - diff --git a/views/options/settings.jade b/views/options/settings.jade index 3fb026d635..2a5fee087c 100644 --- a/views/options/settings.jade +++ b/views/options/settings.jade @@ -88,10 +88,29 @@ script(type='text/ng-template', id='partials/options.settings.settings.html') .panel-heading span Registration .panel-body - p(ng-if='user.auth.facebook.id') Registered with Facebook + p(ng-if='user.auth.facebook.id') + =env.t('registeredWithFb') div(ng-if='user.auth.local.username') - p Username: {{user.auth.local.username}} - p Email: {{user.auth.local.email}} + p + =env.t('username') + |: {{user.auth.local.username}} + p + small.muted + =env.t('loginNameDescription1') + |  + a(href='/#/options/profile/profile')=env.t('loginNameDescription2') + |  + =env.t('loginNameDescription3') + p + =env.t('email') + |: {{user.auth.local.email}} + p + small.muted + =env.t('emailChange1') + |  + a(href='mailto:admin@habitrpg.com' target='_blank')=env.t('emailChange2') + |  + =env.t('emailChange3') hr h5=env.t('changeUsername') form(ng-submit='changeUsername(changeUser)', ng-show='user.auth.local')