Add missing translation key for mailinglist name input label

This commit is contained in:
Johannes Zellner
2021-03-31 14:09:17 +02:00
parent ec50163b66
commit c04951c45e
2 changed files with 3 additions and 2 deletions

View File

@@ -1081,7 +1081,8 @@
"title": "Add Mailing list",
"members": "List Members",
"membersInfo": "Separate email addresses with a newline",
"membersOnlyCheckbox": "Restrict posting to members only"
"membersOnlyCheckbox": "Restrict posting to members only",
"name": "Name"
},
"editMailinglistDialog": {
"title": "Edit Mailing list {{ name }}@{{ domain }}"

View File

@@ -198,7 +198,7 @@
<form name="mailinglistadd_form" role="form" ng-submit="mailinglists.add.submit()" autocomplete="off">
<input type="password" style="display: none;">
<div class="form-group" ng-class="{ 'has-error': mailinglists.add.error.name }">
<label class="control-label">Name</label>
<label class="control-label">{{ 'email.addMailinglistDialog.name' | tr }}</label>
<div class="control-label" ng-show="mailinglists.add.error.name"><small>{{ mailinglists.add.error.name }}</small></div>
<div class="input-group form-inline" style="margin-top: 10px;">
<input type="text" class="form-control" ng-model="mailinglists.add.name" required autofocus autocomplete="off"/>