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: i18next fix naming #730

Merged
merged 1 commit into from
Jun 24, 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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This file is part of React-Invenio-Deposit
// Copyright (C) 2021 Graz University of Technology.
// Copyright (C) 2021-2022 Graz University of Technology.
//
// Invenio-app-rdm is free software; you can redistribute it and/or modify it
// Invenio-communities is free software; you can redistribute it and/or modify it
// under the terms of the MIT License; see LICENSE file for more details.

// list of func used to
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This file is part of React-Invenio-Deposit
// Copyright (C) 2021 Graz University of Technology.
// Copyright (C) 2021-2022 Graz University of Technology.
//
// Invenio-app-rdm is free software; you can redistribute it and/or modify it
// Invenio-communities is free software; you can redistribute it and/or modify it
// under the terms of the MIT License; see LICENSE file for more details.

import i18n from "i18next";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import TRANSLATE_EN from "./en/translations.json";
import TRANSLATE_ES from "./es/translations.json";
import TRANSLATE_DE from "./de/translations.json";

export const translations = {
es: { translation: TRANSLATE_ES },
en: { translation: TRANSLATE_EN },
de: { translation: TRANSLATE_DE },
};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "invenio-app-rdm-ui",
"name": "invenio-communities-ui",
"config": {
"languages": [
"en",
Expand Down