-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
"Share with" wording fix in new share panel #41155
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Signed-off-by: Jérôme Herbinet <[email protected]>
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -292,7 +292,7 @@ export default { | |
|
|
||
| computed: { | ||
| title() { | ||
| let title = t('files_sharing', 'Share with ') | ||
| let title = t('files_sharing', 'Shared with') + ' '; | ||
|
||
| if (this.share.type === this.SHARE_TYPES.SHARE_TYPE_USER) { | ||
| title = title + this.share.shareWithDisplayName | ||
| } else if (this.share.type === this.SHARE_TYPES.SHARE_TYPE_LINK) { | ||
|
|
||
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.
Would it not make more sense to have full separate strings for every option?
I can imagine there are lanuages that do not work lik "share with" + " " + "option".
E.g. Japanese does not work like that, so it will be pretty hard to translate.
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 makes sense. Let's wait for other reviewers' opinion.
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.
cc @rakekniven
Uh oh!
There was an error while loading. Please reload this page.
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.
@susnux See my comment below. A screenshot would help a lot.