Skip to content

Commit

Permalink
Add translations no results
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-debruijn committed Dec 11, 2024
1 parent af0a970 commit ceb1c68
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -1054,6 +1054,7 @@
"owners": "Verwalter",
"table": {
"user": "Benutzer",
"no_results": "Keine Ergebnisse gefunden",
"actions": {
"title": "Aktionen",
"approve": "Genehmigen",
Expand Down
1 change: 1 addition & 0 deletions src/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -1054,6 +1054,7 @@
"owners": "Gestionnaires",
"table": {
"user": "Utilisateur",
"no_results": "Aucun résultat trouvé",
"actions": {
"title": "Actions",
"approve": "Approuver",
Expand Down
1 change: 1 addition & 0 deletions src/i18n/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -1054,6 +1054,7 @@
"owners": "Beheerders",
"table": {
"user": "Gebruiker",
"no_results": "Geen resultaten gevonden",
"actions": {
"title": "Acties",
"approve": "Goedkeuren",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const OwnershipsTable = ({
);

if (requests.length === 0) {
return <Text>no results</Text>;
return <Text>{t('organizers.ownerships.table.no_results')}</Text>;
}

return (
Expand Down

0 comments on commit ceb1c68

Please sign in to comment.