Skip to content

Commit

Permalink
i18n: mark strings for LicenseModal.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Samk13 committed Dec 4, 2024
1 parent 8c025b1 commit 1b62f86
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Copyright (C) 2020-2023 CERN.
// Copyright (C) 2020-2022 Northwestern University.
// Copyright (C) 2021 Graz University of Technology.
// Copyright (C) 2024 KTH Royal Institute of Technology.
//
// Invenio-RDM-Records is free software; you can redistribute it and/or modify it
// under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -146,22 +147,22 @@ export class LicenseModal extends Component {
<Menu compact>
<Toggle
title={i18next.t("Recommended")}
label="recommended"
label={i18next.t("recommended")}
filterValue={["tags", "recommended"]}
/>
<Toggle
title={i18next.t("All")}
label="all"
label={i18next.t("all")}
filterValue={["tags", "all"]}
/>
<Toggle
title={i18next.t("Data")}
label="data"
label={i18next.t("data")}
filterValue={["tags", "data"]}
/>
<Toggle
title={i18next.t("Software")}
label="software"
label={i18next.t("software")}
filterValue={["tags", "software"]}
/>
</Menu>
Expand Down

0 comments on commit 1b62f86

Please sign in to comment.