clarified translations

This commit is contained in:
Florian Scholdei
2019-05-17 16:55:21 +02:00
parent 6b91faa4e2
commit 15cb29e1fc
6 changed files with 29 additions and 24 deletions

View File

@@ -120,12 +120,17 @@ class RepositoryRoleForm extends React.Component<Props, State> {
<form onSubmit={this.submit}>
<InputField
name="name"
label={t("repositoryRole.create.name")}
label={t("repositoryRole.form.name")}
onChange={this.handleNameChange}
value={role.name ? role.name : ""}
disabled={!!this.props.role}
/>
{verbSelectBoxes}
<div className="field">
<label className="label">
{t("repositoryRole.form.permissions")}
</label>
{verbSelectBoxes}
</div>
<hr />
<SubmitButton
loading={loading}