Skip to content

Commit

Permalink
feat: Add translations for icon in multiple languages
Browse files Browse the repository at this point in the history
  • Loading branch information
sinansubara committed Aug 21, 2024
1 parent 5e92864 commit c82a990
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/bs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1844,6 +1844,7 @@ const bs: Translations = {
seeAllWorkspaces: "Pregledaj sve radne prostore",
workspaceSettings: "Postavke radnog prostora",
switchToRecentWorkspace: "Prebacite se na nedavni radni prostor",
icon: "Ikona",
};

export default bs;
1 change: 1 addition & 0 deletions src/en/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1820,6 +1820,7 @@ const en = {
seeAllWorkspaces: "See all workspaces",
workspaceSettings: "Workspace settings",
switchToRecentWorkspace: "Switch to recent workspace",
icon: "Icon",
};

export default en as Translations;
1 change: 1 addition & 0 deletions src/fr/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1893,6 +1893,7 @@ const fr: Translations = {
seeAllWorkspaces: "Voir tous les espaces de travail",
workspaceSettings: "Paramètres de l'espace de travail",
switchToRecentWorkspace: "Passer à l'espace de travail récent",
icon: "Icône",
};

export default fr as Translations;
3 changes: 2 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1655,6 +1655,7 @@ export enum TranslationKeys {
SeeAllWorkspaces = "seeAllWorkspaces",
WorkspaceSettings = "workspaceSettings",
SwitchToRecentWorkspace = "switchToRecentWorkspace",
Icon = "icon"
}

export type Translations = Record<TranslationKeys, string>;
export type Translations = Record<TranslationKeys, string>;

0 comments on commit c82a990

Please sign in to comment.