Skip to content

Commit

Permalink
global: Fixes strings marked for translation.
Browse files Browse the repository at this point in the history
* Adds dots at the end of sentences.
* Refs #1707

* Note: components.js will need some more fixes later.
  • Loading branch information
chriz-uniba committed Jun 9, 2022
1 parent 76518de commit 04d43fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion invenio_app_rdm/records_ui/views/deposits.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def get_form_pids_config():
"pid_placeholder": "Copy/paste your existing DOI here...",
"can_be_managed": can_be_managed,
"can_be_unmanaged": can_be_unmanaged,
"btn_label_discard_pid": _("Discard the reserved {scheme_label}").format(
"btn_label_discard_pid": _("Discard the reserved {scheme_label}.").format(
scheme_label=scheme_label
),
"btn_label_get_pid": _("Get a {scheme_label} now!").format(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export const ShareModal = (props) => {
<Icon name="warning circle" />
{!!!accessLinkObj
? i18next.t(
"No link has been created. Click on 'Get a Link' to make a new link"
"No link has been created. Click on 'Get a Link' to make a new link."
)
: message[shareMode]}
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -434,16 +434,15 @@ export const RDMEmptyResults = (props) => {
metadata.publication_date:[2017-01-01 TO *]
</a>{" "}
{i18next.t(
"will give you all the publications from 2017 until today"
"will give you all the publications from 2017 until today."
)}
.
</p>
<p>
{i18next.t("For more tips, check out our ")}
<a href="/help/search" title={i18next.t("Search guide")}>
{i18next.t("search guide")}
</a>
{i18next.t(" for defining advanced search queries")}.
{i18next.t(" for defining advanced search queries.")}
</p>
</Segment>
</Grid.Column>
Expand Down

0 comments on commit 04d43fd

Please sign in to comment.