Skip to content

Commit

Permalink
fix: error for could import locales
Browse files Browse the repository at this point in the history
  • Loading branch information
FajarKim committed Oct 14, 2023
1 parent 02a1dad commit 2bddef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/src/translations.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type Locale = {
export type Locales = {
[key: string]: {
titleCard: string;
followersText: string;
Expand All @@ -14,7 +14,7 @@ export type Locale = {
};
};

export const locale: Locale = {
export const locales: Locales = {
en: {
titleCard: "{name}'s GitHub Stats",
followersText: "Followers",
Expand Down

0 comments on commit 2bddef6

Please sign in to comment.