-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Added strings for the share dialog #1758
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
Conversation
jaigak
commented
Aug 18, 2020
- Now when you share a single item, the item name will be mentioned.
- Sharing multiple items will show how many items are being shared.
- Share menu item is now disable on unsupported devices (e.g. Xbox). This is the first step in making Files UWP truly universal across Windows devices.
- All strings related to the share dialog are localized.
Merge master into master
Update latest
Merge latest branch
@tsvietOK No space is required otherwise it will appear like 'Sharing 1items'. |
<target state="new">The selected item will be shared</target> | ||
</trans-unit> | ||
<trans-unit id="ShareDialogTitle" translate="yes" xml:space="preserve"> | ||
<source>Sharing {0}</source> |
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.
It is better to use Sharing {0} {1}
and string.Format(ResourceController.GetTranslation("ShareDialogTitle"), items.Count, ResourceController.GetTranslation("ItemsCount.Text"))
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.
Done
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, update translation files too.