-
Notifications
You must be signed in to change notification settings - Fork 340
action_sheet: Prefix channel name with "#" in a confirmation dialog title #1893
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
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 @chrisbobbe! LGTM, over to Greg's review.
ba79788
to
410250c
Compare
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! Looks good; one comment.
I've also pushed a rebased version (since I already did the rebase, in preparation to merge).
|
||
final dialog = showSuggestedActionDialog(context: pageContext, | ||
title: zulipLocalizations.unsubscribeConfirmationDialogTitle(subscription.name), | ||
title: zulipLocalizations.unsubscribeConfirmationDialogTitle('#${subscription.name}'), |
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 should get a matching change in the example for this placeholder in app_en.arb
.
…itle See Alya's feedback on zulip#1890: zulip#1890 (comment) > In general, our pattern is to always show a privacy marker or (if > not convenient) a `#` before a channel name. It can be a separate > PR, but can we add that to these confirmation dialogs? Doing this in code, rather than in the translators' source string, because we don't want it to vary by language.
410250c
to
fd5b9a3
Compare
Thanks! Revision pushed. |
Thanks! Looks good; merging. |
See Alya's feedback on #1890:
#1890 (comment)
Doing this in code, rather than in the translators' source string, because we don't want it to vary by language.