small fixes

This commit is contained in:
Mirjan Hoffmann 2022-03-07 14:33:29 +01:00
parent 431503dbca
commit 304f10502e
3 changed files with 6 additions and 6 deletions

View file

@ -4,4 +4,4 @@ Simple user interface to collect standard metadata and create a yml file.
* simple HTML/JS file, that form entries into a yml format
[Form](https://oersi.gitlab.io/metadata-gitlab-form/metadata-generator.html)
[Form](https://oersi.gitlab.io/metadata-form/metadata-generator.html)

View file

@ -1,10 +1,10 @@
{
"FORM_HEADING": "OER Metadaten Formular",
"LABEL_CREATOR_ADD": " weiteren Autor hinzufügen",
"LABEL_CREATOR_ADD": "weiteren Autor hinzufügen",
"LABEL_CREATOR_GIVEN_NAME": "Vorname",
"LABEL_CREATOR_ID": "(Optional) Persönliche ID (wie ORCID, GND, ...)",
"LABEL_CREATOR_LAST_NAME": "Nachname",
"LABEL_CREATOR_REMOVE": " Autor entfernen",
"LABEL_CREATOR_REMOVE": "Autor entfernen",
"LABEL_DESCRIPTION": "Zusammenfassung",
"LABEL_KEYWORDS": "Schlagworte",
"LABEL_KEYWORDS_PLACEHOLDER": "Komma getrennte Liste von Schlagworten",

View file

@ -131,8 +131,8 @@
<div class="col-sm-10 form-row">
<ul class="list-group col" id="creator-list">
<li class="list-group-item">
<button type="button" onclick="addCreator()" class="btn btn-primary"><i class="fa fa-plus"></i><span
data-i18n="LABEL_CREATOR_ADD"> Autor entfernen</span></button>
<button type="button" onclick="addCreator()" class="btn btn-primary"><i class="fa fa-plus"></i> <span
data-i18n="LABEL_CREATOR_ADD">Autor entfernen</span></button>
</li>
</ul>
</div>
@ -452,7 +452,7 @@
</div>
<div class="form-row mt-2">
<div class="col">
<button type="button" onclick="removeCreator(this.parentNode.parentNode.parentNode)" class="btn btn-primary"><i class="fa fa-minus"></i><span data-i18n="LABEL_CREATOR_REMOVE"> Autor entfernen</span></button>
<button type="button" onclick="removeCreator(this.parentNode.parentNode.parentNode)" class="btn btn-primary"><i class="fa fa-minus"></i> <span data-i18n="LABEL_CREATOR_REMOVE"> Autor entfernen</span></button>
</div>
</div>
`;