Skip to content

Commit

Permalink
Add card moved language keys (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
sinansubara authored Sep 20, 2024
1 parent 79e0477 commit f3b8fc8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1918,6 +1918,8 @@ const bs: Translations = {
"Nije uspjelo uklanjanje automatske radnje specifične za granu.",
thereAreNoCurrentOrPlannedSprints: "Nema trenutnih ili planiranih ciklusa",
thereIsNoCurrentOrNextSprint: "Nema trenutnog ili sljedećeg ciklusa",
movedCardFrom: "Premještena kartica iz",
rolledCardFrom: "Prebačena kartica iz",
};

export default bs;
2 changes: 2 additions & 0 deletions src/en/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1889,6 +1889,8 @@ const en = {
"Failed to remove branch-specific automation.",
thereAreNoCurrentOrPlannedSprints: "There are no current or planned sprints",
thereIsNoCurrentOrNextSprint: "There is no current or next sprint",
movedCardFrom: "Moved card from",
rolledCardFrom: "Rolled card from",
};

export default en as Translations;
2 changes: 2 additions & 0 deletions src/fr/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1971,6 +1971,8 @@ const fr: Translations = {
thereAreNoCurrentOrPlannedSprints:
"Il n’y a pas de sprints en cours ou prévus",
thereIsNoCurrentOrNextSprint: "Il n’y a pas de sprint en cours ou à venir",
movedCardFrom: "Carte déplacée de",
rolledCardFrom: "Carte roulée de",
};

export default fr as Translations;
2 changes: 2 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1709,6 +1709,8 @@ export enum TranslationKeys {
BranchSpecificAutomationRemoveFailed = "branchSpecificAutomationRemoveFailed",
ThereAreNoCurrentOrPlannedSprints = "thereAreNoCurrentOrPlannedSprints",
ThereIsNoCurrentOrNextSprint = "thereIsNoCurrentOrNextSprint",
MovedCardFrom = "movedCardFrom",
RolledCardFrom = "rolledCardFrom",
}

export type Translations = Record<TranslationKeys, string>;

0 comments on commit f3b8fc8

Please sign in to comment.