Skip to content

Commit

Permalink
fix: locale names
Browse files Browse the repository at this point in the history
  • Loading branch information
danielweck committed Jun 25, 2024
1 parent e247f76 commit 77b93bd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/shared/l10n/localize.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ export const localizer = newLocalizer({
translation: enJson,
},
fr: {
name: "Français",
name: "Français (French)",
translation: frJson,
},
pt_BR: {
name: "Português do Brasil",
name: "Português Brasileiro (Portuguese - Brazil)",
translation: pt_BRJson,
},
es: {
name: "Español",
name: "Español (Spanish)",
translation: esJson,
},
da: {
name: "Dansk",
name: "Dansk (Danish)",
translation: daJson,
},
ja: {
name: "Japanese",
name: "日本語 (Japanese)",
translation: jaJson,
},
de: {
name: "Deutsch",
name: "Deutsch (German)",
translation: deJson,
},
});

0 comments on commit 77b93bd

Please sign in to comment.