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

MIR-1333 Added placeholder for username input field in new-author.xed #1037

Open
wants to merge 2 commits into
base: 2023.06.x
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<xed:template id="userAccount">
<mcruser:template name="textInput" xpath="@name" id="userName" i18n="component.user2.admin.userAccount" i18n.error="component.user2.admin.inputhints.username"
required="true" matches="[a-z0-9\._-]*" maxlength="16" />
required="true" matches="[a-z0-9\._-]*" maxlength="16" placeholder="mir.register.username.placeholder"/>
<xed:bind xpath="@realm" set="local" />
</xed:template>

Expand Down Expand Up @@ -45,4 +45,4 @@
<xed:cleanup-rule xpath="//attribute[@name='recaptchaParam']" relevant-if="true" />
</xed:if>
</xed:template>
</xed:template>
</xed:template>
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,7 @@ mir.publisher.station = Sender:
mir.publisherOrganization = Herausgebende Einrichtung
mir.register.email = [email protected]
mir.register.realName = Vorname Nachname
mir.register.username.placeholder = maximal 16 Zeichen, erlaubte Zeichen sind a-z, 0-9 sowie ._-
mir.relatedItem = Verbundene Quelle
mir.relatedItem.alreadyLinked = Das ausgew\u00E4hlte Dokument wurde bereits mit diesem Dokument verkn\u00FCpft.
mir.relatedItem.doesNotExist = Referenz kann nicht angezeigt werden oder wurde gel\u00F6scht
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,7 @@ mir.publisher.station = Broadcasting Station:
mir.publisherOrganization = Publishing organization
mir.register.email = [email protected]
mir.register.realName = First name Surname
mir.register.username.placeholder = maximum of 16 characters, allowed characters are a-z, 0-9 and ._-
mir.relatedItem = Related item
mir.relatedItem.alreadyLinked = The currently selected document is already linked to this document.
mir.relatedItem.doesNotExist = Reference can not be displayed or was deleted
Expand Down
Loading