Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sprint empty state keys #91

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/bs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1916,6 +1916,8 @@ const bs: Translations = {
"Nije uspjelo ažuriranje automatske radnje specifične za granu.",
branchSpecificAutomationRemoveFailed:
"Nije uspjelo uklanjanje automatske radnje specifične za granu.",
thereAreNoCurrentOrPlannedSprints: "Nema trenutnih ili planiranih ciklusa",
thereIsNoCurrentOrNextSprint: "Nema trenutnog ili sljedećeg ciklusa",
};

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 @@ -1887,6 +1887,8 @@ const en = {
"Failed to update branch-specific automation.",
branchSpecificAutomationRemoveFailed:
"Failed to remove branch-specific automation.",
thereAreNoCurrentOrPlannedSprints: "There are no current or planned sprints",
thereIsNoCurrentOrNextSprint: "There is no current or next sprint",
};

export default en as Translations;
3 changes: 3 additions & 0 deletions src/fr/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1968,6 +1968,9 @@ const fr: Translations = {
"Échec de la mise à jour de l'automatisation spécifique à la branche.",
branchSpecificAutomationRemoveFailed:
"Échec de la suppression de l'automatisation spécifique à la branche.",
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",
};

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 @@ -1707,6 +1707,8 @@ export enum TranslationKeys {
BranchSpecificAutomationAddFailed = "branchSpecificAutomationAddFailed",
BranchSpecificAutomationUpdateFailed = "branchSpecificAutomationUpdateFailed",
BranchSpecificAutomationRemoveFailed = "branchSpecificAutomationRemoveFailed",
ThereAreNoCurrentOrPlannedSprints = "thereAreNoCurrentOrPlannedSprints",
ThereIsNoCurrentOrNextSprint = "thereIsNoCurrentOrNextSprint",
}

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