-
-
Notifications
You must be signed in to change notification settings - Fork 657
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
Use "stream" or "channel" based on server version #5827
Labels
server release goal
Things we should try to coordinate with a major Zulip Server release.
webapp parity
Features that exist in the webapp that we need to port to mobile. We aren't aiming for full parity.
Comments
alya
added
webapp parity
Features that exist in the webapp that we need to port to mobile. We aren't aiming for full parity.
server release goal
Things we should try to coordinate with a major Zulip Server release.
labels
Feb 28, 2024
chrisbobbe
added a commit
to chrisbobbe/zulip-mobile
that referenced
this issue
Mar 5, 2024
TODO: - use the right feature level - write appropriate TODO(server-x) comments - run tools/tx-sync Done at the level of TranslationProvider, which (conveniently) can access the feature level of the active account if any. The messages_en.json changes were done with a handy Perl one-liner that Greg helped me work out: perl -i -ne 'print; print if (s/stream/channel/g || s/Stream/Channel/g)' static/translations/messages_en.json Fixes: zulip#5827
chrisbobbe
added a commit
to chrisbobbe/zulip-mobile
that referenced
this issue
Mar 6, 2024
TODO: - use the right feature level - Make sure servers at that feature level accept `@channel` for wildcard mentions. Discussion: https://chat.zulip.org/#narrow/stream/378-api-design/topic/stream.2Fchannel.20rename.3A.20.40stream.20wildcard.20mention/near/1752545 - write appropriate TODO(server-x) comments - run tools/tx-sync Done at the level of TranslationProvider, which (conveniently) can access the feature level of the active account if any. The messages_en.json changes were done with a handy Perl command that Greg helped me work out: $ perl -i -ne ' print; print if (s/stream/channel/g || s/Stream/Channel/g); ' static/translations/messages_en.json Fixes: zulip#5827
chrisbobbe
added a commit
to chrisbobbe/zulip-mobile
that referenced
this issue
Mar 7, 2024
TODO: - use the right feature level - Make sure servers at that feature level accept `@channel` for wildcard mentions. Discussion: https://chat.zulip.org/#narrow/stream/378-api-design/topic/stream.2Fchannel.20rename.3A.20.40stream.20wildcard.20mention/near/1752545 - write appropriate TODO(server-x) comments - run tools/tx-sync - address TODO(zulip#5827) in tools/check-messages-en Done at the level of TranslationProvider, which (conveniently) can access the feature level of the active account if any. The messages_en.json changes were done with a handy Perl command that Greg helped me work out: $ perl -i -ne ' print; print if (s/stream/channel/g || s/Stream/Channel/g); ' static/translations/messages_en.json Fixes: zulip#5827
This was referenced Apr 23, 2024
chrisbobbe
added a commit
to chrisbobbe/zulip-mobile
that referenced
this issue
Apr 26, 2024
Done at the level of TranslationProvider, which (conveniently) can access the feature level of the active account if any. Fixes: zulip#5827
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
server release goal
Things we should try to coordinate with a major Zulip Server release.
webapp parity
Features that exist in the webapp that we need to port to mobile. We aren't aiming for full parity.
In zulip/zulip#28468, we plan to rename "stream" to "channel" in the Zulip UI.
Ideally, the mobile apps will use the same terminology as the web app on the server version that the user is on.
Related issues:
The text was updated successfully, but these errors were encountered: