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

i18n: Fixes strings marked for translation. #1712

Merged
merged 1 commit into from
Jun 9, 2022
Merged
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
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