-
Notifications
You must be signed in to change notification settings - Fork 20
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
add: new messages file with French translations #536
base: develop-1.13
Are you sure you want to change the base?
add: new messages file with French translations #536
Conversation
As discussed Sept 23, please also move the position text to a placeholder in the |
src/messages.json
Outdated
"ActionPanel.action.moveToNextStep": "Move Step {stepNumber} {stepActionName} after step {nextStepNumber} {nextStepActionName}", | ||
"ActionPanel.action.moveToNextStep.disabled": "Move Step {stepNumber} {stepActionName}", | ||
"ActionPanel.action.moveToNextStep.outOfLoop": "Move Step {stepNumber} {stepActionName} out of loop {loopLabel}", | ||
"ActionPanel.action.moveToNextStep.withInLoop": "Move Step {stepNumber} {stepActionName} after step {nextStepNumber} {nextStepActionName} of loop {loopLabel}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is what we had in the spreadsheet, but "within" is one word. Could you please rename this to ActionPanel.action.moveToNextStep.withinLoop
(lowercase "i" in withinLoop
).
Please also update ActionPanel.action.moveToPreviousStep.withInLoop
"ActionPanel.action.delete": "supprimer {stepNumber} {stepActionName}", | ||
"ActionPanel.action.moveToNextStep": "remplacer l'étape {stepNumber} {stepActionName} {nextStepInfo}", | ||
"ActionPanel.action.moveToPreviousStep": "remplacer l'étape {stepNumber} {stepActionName} {previousStepInfo}", | ||
"ActionPanel.action.replace": "remplacer l'étape {stepNumber} {stepActionName} {selectedActionName}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The French message for ActionPanel.action.replace
hasn't been updated for the split into noSelectedAction
and withSelectedAction
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @sbates-idrc for reviewing the changes, I didn't update French messages yet because we don't have French translations yet. I think it makes sense to update them all when we get the translations.
"ActionPanel.selectedCommandName": "{selectedCommandName} avec action sélectionner", | ||
"ActionPanel.action.delete": "supprimer {stepNumber} {stepActionName}", | ||
"ActionPanel.action.moveToNextStep": "remplacer l'étape {stepNumber} {stepActionName} {nextStepInfo}", | ||
"ActionPanel.action.moveToPreviousStep": "remplacer l'étape {stepNumber} {stepActionName} {previousStepInfo}", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The French messages for ActionPanel.action.moveToNextStep
and ActionPanel.action.moveToPreviousStep
haven't been updated following the nextStepInfo
/previousStepInfo
refactoring.
src/ProgramChangeController.test.js
Outdated
expectedAnnouncementCommandType: string, | ||
expectedAnnouncementCommand: string | ||
expectedAnnouncementActionType: string, | ||
expectedAnnouncementAction: string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use expectedAnnouncementActionName
here to be consistent with the thing we are testing against (actionName
)
The French message for |
No description provided.