Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Format 'admin' differently in the setup wizard for clarity #9194

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -65,10 +65,10 @@ installWizard_installIncomplete_banner=Resume Installation
installWizard_installIncomplete_message=Jenkins was restarted during installation and some plugins did not seem to get installed.
installWizard_installIncomplete_resumeInstallationButtonLabel=Resume
installWizard_saveFirstUser=Save and Continue
installWizard_skipFirstUser=Skip and continue as admin
installWizard_skipFirstUser=Skip and continue as <code>admin</code>
installWizard_firstUserSkippedMessage=<div class="alert alert-warning fade in">\
You have skipped the <strong>setup of an admin user</strong>. <br /><br />\
To log in, use the username: "admin" and the administrator password you used to access the setup wizard.\
To log in, use the username <code>admin</code> and the administrator password you used to access the setup wizard.\
</div>
installWizard_addFirstUser_title=Getting Started

Expand Down
2 changes: 1 addition & 1 deletion war/src/main/js/templates/firstUserPanel.hbs
Expand Up @@ -8,7 +8,7 @@
</div>
<div class="modal-footer">
<button type="button" class="btn btn-link skip-first-user" disabled>
{{translations.installWizard_skipFirstUser}}
{{{translations.installWizard_skipFirstUser}}}
</button>
<button type="button" class="btn btn-primary save-first-user" disabled>
{{translations.installWizard_saveFirstUser}}
Expand Down