Skip to content

Commit

Permalink
global: Fixes strings marked for translation.
Browse files Browse the repository at this point in the history
- Removes superfluous white space.
- Adjust field to look like other fields.

Refs: inveniosoftware/invenio-app-rdm#1707
  • Loading branch information
chriz-uniba authored and kpsherva committed Jun 28, 2022
1 parent 0498f67 commit 2fd46cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,5 +179,5 @@ MembersSearchBar.propTypes = {
};

MembersSearchBar.defaultProps = {
placeholder: i18next.t("Search ..."),
placeholder: i18next.t("Search..."),
};
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ export class RenameCommunitySlugButton extends Component {
<Modal.Content>
<Form onSubmit={this.handleChange}>
<Form.Input
label={i18next.t("Enter the new unique identifier of the community.")}
label={i18next.t("New unique identifier of the community")}
placeholder={i18next.t("New unique identifier of the community")}
fluid
input={{ ref: this.formInputRef }}
{...(error
Expand Down

0 comments on commit 2fd46cc

Please sign in to comment.