-
Notifications
You must be signed in to change notification settings - Fork 43
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
Mark more texts for translation #719
Conversation
isStack | ||
label={ | ||
format( | ||
n_("Choose a product (%d available)", "Choose a product (%d available)", products.length), |
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.
Here I'm not sure if we really need to display the number of available products.
- There are usually just few products
- The number does not provide any meaningful information for the user, you can always choose only one product, it does not matter how many products are available
So I'd rather make it easier and use just simple _("Choose a product")
here.
Opinions?
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.
Yes, I agree, I would get rid of the number of available products.
@@ -88,16 +89,18 @@ function ProductSelectionPage() { | |||
|
|||
return ( | |||
<> | |||
<Title>Product selection</Title> | |||
{/* TRANSLATORS: page header */} | |||
<Title>{_("Product selection")}</Title> |
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.
not sure if in title it should not be all capitalized like Product Selection
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.
Why? Do we have any guidelines about that?
Just marking more texts for translation