-
Notifications
You must be signed in to change notification settings - Fork 221
feat(i18n): added de/es translation support #4319
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
Merged
openshift-merge-bot
merged 5 commits into
redhat-developer:main
from
lokanandaprabhu:i18n-de-es-updates
Mar 12, 2026
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4eeca92
Add de/es translations and sync JSON locales
lokanandaprabhu 2574db5
Format de/es translation files
lokanandaprabhu ad11074
Use locale keys in de/es JSONs
lokanandaprabhu 8431191
Align translations and local catalog data
lokanandaprabhu 0610243
Filter templates before selecting in RBAC test
lokanandaprabhu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| /* | ||
| * Copyright Red Hat, Inc. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { createTranslationMessages } from '@backstage/core-plugin-api/alpha'; | ||
| import { catalogImportTranslationRef } from '@backstage/plugin-catalog-import/alpha'; | ||
|
|
||
| const de = createTranslationMessages({ | ||
| ref: catalogImportTranslationRef, | ||
| full: false, | ||
| messages: { | ||
| 'defaultImportPage.headerTitle': 'Vorhandenes Git-Repository importieren', | ||
| 'importInfoCard.title': 'Vorhandenes Git-Repository importieren', | ||
| }, | ||
| }); | ||
|
|
||
| export default de; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| /* | ||
| * Copyright Red Hat, Inc. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { createTranslationMessages } from '@backstage/core-plugin-api/alpha'; | ||
| import { catalogImportTranslationRef } from '@backstage/plugin-catalog-import/alpha'; | ||
|
|
||
| const es = createTranslationMessages({ | ||
| ref: catalogImportTranslationRef, | ||
| full: false, | ||
| messages: { | ||
| 'defaultImportPage.headerTitle': 'Importar un repositorio Git existente', | ||
| 'importInfoCard.title': 'Importar un repositorio Git existente', | ||
| }, | ||
| }); | ||
|
|
||
| export default es; |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| /* | ||
| * Copyright Red Hat, Inc. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { createTranslationMessages } from '@backstage/core-plugin-api/alpha'; | ||
| import { catalogTranslationRef } from '@backstage/plugin-catalog/alpha'; | ||
|
|
||
| export default createTranslationMessages({ | ||
| ref: catalogTranslationRef, | ||
| full: false, | ||
| messages: { | ||
| 'indexPage.createButtonTitle': 'Self-Service', | ||
|
lokanandaprabhu marked this conversation as resolved.
|
||
| }, | ||
| }); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| /* | ||
| * Copyright Red Hat, Inc. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { createTranslationMessages } from '@backstage/core-plugin-api/alpha'; | ||
| import { catalogTranslationRef } from '@backstage/plugin-catalog/alpha'; | ||
|
|
||
| export default createTranslationMessages({ | ||
| ref: catalogTranslationRef, | ||
| full: false, | ||
| messages: { | ||
| 'indexPage.createButtonTitle': 'Autoservicio', | ||
| }, | ||
| }); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| /* | ||
| * Copyright Red Hat, Inc. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { coreComponentsTranslationRef } from '@backstage/core-components/alpha'; | ||
| import { createTranslationMessages } from '@backstage/core-plugin-api/alpha'; | ||
|
|
||
| const de = createTranslationMessages({ | ||
| ref: coreComponentsTranslationRef, | ||
| full: false, | ||
| messages: { | ||
| 'table.filter.placeholder': 'Alle Ergebnisse', | ||
| 'table.body.emptyDataSourceMessage': | ||
| 'Keine Datensätze zum Anzeigen vorhanden', | ||
| 'table.pagination.firstTooltip': 'Erste Seite', | ||
| 'table.pagination.labelDisplayedRows': '{von}-{bis} von {Anzahl}', | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. check once if this works as expected?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| 'table.pagination.labelRowsSelect': 'Zeilen', | ||
| 'table.pagination.lastTooltip': 'Letzte Seite', | ||
| 'table.pagination.nextTooltip': 'Nächste Seite', | ||
| 'table.pagination.previousTooltip': 'Vorherige Seite', | ||
| 'table.toolbar.search': 'Filter', | ||
| 'alertDisplay.message_one': '({{ count }} neuere Nachricht)', | ||
| 'alertDisplay.message_other': '({{ count }} neuere Nachrichten)', | ||
| 'table.header.actions': 'Aktionen', | ||
| 'oauthRequestDialog.message': | ||
| 'Melden Sie sich an, um {{appTitle}} Zugriff auf die APIs und Identitäten von {{provider}} zu erlauben.', | ||
| }, | ||
| }); | ||
|
|
||
| export default de; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| /* | ||
| * Copyright Red Hat, Inc. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { coreComponentsTranslationRef } from '@backstage/core-components/alpha'; | ||
| import { createTranslationMessages } from '@backstage/core-plugin-api/alpha'; | ||
|
|
||
| const es = createTranslationMessages({ | ||
| ref: coreComponentsTranslationRef, | ||
| full: false, | ||
| messages: { | ||
| 'table.filter.placeholder': 'Todos los resultados', | ||
| 'table.body.emptyDataSourceMessage': 'No hay registros para mostrar', | ||
| 'table.pagination.firstTooltip': 'Primera página', | ||
| 'table.pagination.labelDisplayedRows': '{from}-{to} de {count}', | ||
| 'table.pagination.labelRowsSelect': 'filas', | ||
| 'table.pagination.lastTooltip': 'Última página', | ||
| 'table.pagination.nextTooltip': 'Página siguiente', | ||
| 'table.pagination.previousTooltip': 'Página anterior', | ||
| 'table.toolbar.search': 'Filtrar', | ||
| 'alertDisplay.message_one': '({{ count }} mensaje nuevo)', | ||
| 'alertDisplay.message_other': '({{ count }} mensajes nuevos)', | ||
| 'table.header.actions': 'Acciones', | ||
| 'oauthRequestDialog.message': | ||
| 'Inicie sesión para permitir que {{appTitle}} acceda a las API e identidades de {{provider}}.', | ||
| }, | ||
| }); | ||
|
|
||
| export default es; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.


Uh oh!
There was an error while loading. Please reload this page.