Skip to content

Commit

Permalink
said Add new key (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
saiddjelmo authored Aug 5, 2024
1 parent 66702bc commit b757ce0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/bs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,7 @@ const bs: Translations = {
boardWillNotShowOnPublicPage: "Ploča se neće prikazati na javnoj stranici",
notInASprint: "Nije u ciklusu",
moveCardIntoSprint: "Kartica je premještena u ciklus %{sprintName}",
noSprintsLabel: "Nema ciklusa",

// Onboarding
emailLabel: "Vaš email",
Expand Down
1 change: 1 addition & 0 deletions src/en/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1777,6 +1777,7 @@ const en = {
itemName: "Item name",
notInASprint: "Not in a sprint",
moveCardIntoSprint: "Card moved to sprint %{sprintName}",
noSprintsLabel: "No sprints",
};

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 @@ -1845,6 +1845,7 @@ const fr: Translations = {
itemName: "Nom de l'élément",
notInASprint: "Pas dans un sprint",
moveCardIntoSprint: "Déplacer la carte dans le sprint %{sprintName}",
noSprintsLabel: "Pas de sprint",
};

export default fr as Translations;
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1613,6 +1613,7 @@ export enum TranslationKeys {
ItemName = "itemName",
NotInASprint = "notInASprint",
MoveCardIntoSprint = "moveCardIntoSprint",
NoSprintsLabel = "noSprintsLabel",
}

export type Translations = Record<TranslationKeys, string>;

0 comments on commit b757ce0

Please sign in to comment.