Skip to content

Commit

Permalink
Add Spanish and Portuguese back into localizations
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Dec 11, 2024
1 parent 3fbe619 commit 39ecae9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions backend/utils/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ISO_CHOICES = [
("en", "en"),
("de", "de"),
# ("es", "es"),
("es", "es"),
("fr", "fr"),
# ("pt", "pt"),
("pt", "pt"),
]
24 changes: 12 additions & 12 deletions frontend/locales.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ const locales: Locale[] = [
name: "Deutsch",
file: "de.json",
},
// {
// code: "es",
// language: "es",
// name: "Español",
// file: "es.json",
// },
{
code: "es",
language: "es",
name: "Español",
file: "es.json",
},
{
code: "fr",
language: "fr",
name: "Français",
file: "fr.json",
},
// {
// code: "pt",
// language: "pt",
// name: "Português",
// file: "pt.json",
// },
{
code: "pt",
language: "pt",
name: "Português",
file: "pt.json",
},
];

export default locales;

0 comments on commit 39ecae9

Please sign in to comment.