diff --git a/src/bs/index.ts b/src/bs/index.ts index 4fa1604..397fe8b 100644 --- a/src/bs/index.ts +++ b/src/bs/index.ts @@ -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; diff --git a/src/en/index.ts b/src/en/index.ts index 1af3d1d..b923a8f 100644 --- a/src/en/index.ts +++ b/src/en/index.ts @@ -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; diff --git a/src/fr/index.ts b/src/fr/index.ts index 549c29c..22aedd3 100644 --- a/src/fr/index.ts +++ b/src/fr/index.ts @@ -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; diff --git a/src/types.ts b/src/types.ts index 0531f78..c54247f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1709,6 +1709,8 @@ export enum TranslationKeys { BranchSpecificAutomationRemoveFailed = "branchSpecificAutomationRemoveFailed", ThereAreNoCurrentOrPlannedSprints = "thereAreNoCurrentOrPlannedSprints", ThereIsNoCurrentOrNextSprint = "thereIsNoCurrentOrNextSprint", + MovedCardFrom = "movedCardFrom", + RolledCardFrom = "rolledCardFrom", } export type Translations = Record;