ebda46860b
Externalizes most strings in the deploy key settings of the admin area.
10 lines
416 B
Text
10 lines
416 B
Text
- page_title _('Edit Deploy Key')
|
|
%h3.page-title= _('Edit public deploy key')
|
|
%hr
|
|
|
|
%div
|
|
= form_for [:admin, @deploy_key], html: { class: 'deploy-key-form' } do |f|
|
|
= render partial: 'shared/deploy_keys/form', locals: { form: f, deploy_key: @deploy_key }
|
|
.form-actions
|
|
= f.submit _('Save changes'), class: 'btn-success btn'
|
|
= link_to _('Cancel'), admin_deploy_keys_path, class: 'btn btn-cancel'
|