Skip to content

Commit

Permalink
Request Redeploy localizations
Browse files Browse the repository at this point in the history
  • Loading branch information
aarontitus committed Aug 16, 2024
1 parent 6d280f4 commit 277bf4e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ fun RequestRedeployRoute(
val incidents = readyState.incidents
if (incidents.isEmpty()) {
Text(
t("~~There are no Incidents left for deploying."),
t("requestRedeploy.system_thinks_access_all_incidents"),
listItemModifier,
)
} else {
Expand Down Expand Up @@ -219,14 +219,14 @@ private fun IncidentOptions(
if (isApproved) {
Icon(
CrisisCleanupIcons.Check,
contentDescription = t("~~{incident_name} is already approved")
contentDescription = t("requestRedeploy.you_already_have_access_to_incident_name")
.replace("{incident_name}", incident.shortName),
tint = green600,
)
} else if (isRequested) {
Icon(
CrisisCleanupIcons.PendingRequestRedeploy,
contentDescription = t("~~{incident_name} is already awaiting redeploy")
contentDescription = t("requestRedeploy.existing_request_pending_name")
.replace("{incident_name}", incident.shortName),
)
}
Expand Down

0 comments on commit 277bf4e

Please sign in to comment.