-
Notifications
You must be signed in to change notification settings - Fork 64
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 "exit {exit}" to phrases #217
Conversation
languages/translations/fr.json
Outdated
@@ -41,6 +41,9 @@ | |||
"ox": "Serrer à gauche", | |||
"xox": "Rester au milieu", | |||
"oxo": "Rester à gauche ou à droite" | |||
}, | |||
"vocabulary": { | |||
"exit": "la sortie" |
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.
Is this term being used as part of an instruction or in a standalone context, such as in banner text in the navigation SDKs? This library already incorporates the words “the exit” into some instruction formats:
"exit": "Prendre la sortie {exit}", |
I have made these updates. |
languages/translations/es.json
Outdated
@@ -54,7 +54,8 @@ | |||
"two linked by distance": "{instruction_one} y luego en {distance}, {instruction_two}", | |||
"two linked": "{instruction_one} y luego {instruction_two}", | |||
"one in distance": "A {distance}, {instruction_one}", | |||
"name and ref": "{name} ({ref})" | |||
"name and ref": "{name} ({ref})", | |||
"exit with number": "la salida {exit}" |
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.
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.
👍
languages/translations/fr.json
Outdated
@@ -54,7 +54,8 @@ | |||
"two linked by distance": "{instruction_one}, puis, dans {distance}, {instruction_two}", | |||
"two linked": "{instruction_one}, puis {instruction_two}", | |||
"one in distance": "Dans {distance}, {instruction_one}", | |||
"name and ref": "{name} ({ref})" | |||
"name and ref": "{name} ({ref})", | |||
"exit with number": "la sortie {exit}" |
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.
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.
Lets get the translation going
We are hardcoding the word "exit" because we don't have a phrase for it here. I have added it to the
phrases
section.Tasklist
@mcwhittemore @lyzidiamond @1ec5 thoughts on this approach? Should I add this section to all languages with the english fallback?