Skip to content

Commit

Permalink
Localized string modification requires replacement
Browse files Browse the repository at this point in the history
  • Loading branch information
vinocher committed Oct 18, 2023
1 parent 85bcb0a commit 0dec6bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion nebula/ui/components/MZStepProgressBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Item {
return MZI18n.OnboardingProgressBarAccessibilityStepCurrent.arg(labelText).arg(index + 1).arg(progressBar.model.count)
case MZStepProgressBarDelegate.State.Incomplete:
default:
return MZI18n.OnboardingProgressBarAccessibilityStepIncomplete.arg(labelText).arg(index + 1).arg(progressBar.model.count)
return MZI18n.OnboardingProgressBarAccessibilityStepIncomplete2.arg(labelText).arg(index + 1).arg(progressBar.model.count)
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions src/translations/strings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,9 @@ onboarding:
value: "Onboarding step “%1” (%2 of %3). You are currently on this step."
comment: Accessibility read out for the current step in the step progress bar. %1 is the name of the step. %2 is the index of the current step. %3 is the total number of steps.
progressBarAccessibilityStepIncomplete:
value: "Onboarding step “%1” (%2 of %3)."
comment: Obsolete string, replaced by progressBarAccessibilityStepIncomplete2.
progressBarAccessibilityStepIncomplete2:
value: "Onboarding step “%1” (%2 of %3)"
comment: Accessibility read out for incomplete future steps in the step progress bar. %1 is the name of the step. %2 is the index of the current step. %3 is the total number of steps.
dataSlideHeader: Data collection and use
Expand Down

0 comments on commit 0dec6bf

Please sign in to comment.