-
Notifications
You must be signed in to change notification settings - Fork 35
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
❇️ Template language #172
❇️ Template language #172
Conversation
Your Render PR Server URL is https://ozone-staging-pr-172.onrender.com. Follow its progress at https://dashboard.render.com/web/srv-crbertpu0jms73a5mb50. |
components/common/LanguagePicker.tsx
Outdated
setSelectedLang: (lang?: string) => void | ||
}) => { | ||
const selectedText = selectedLang | ||
? LANGUAGES_MAP_CODE2[selectedLang].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.
? LANGUAGES_MAP_CODE2[selectedLang].name | |
? getLanguageName(selectedLang) |
components/common/LanguagePicker.tsx
Outdated
}, | ||
...availableLanguageCodes.map((lang) => ({ | ||
id: lang, | ||
text: LANGUAGES_MAP_CODE2[lang].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.
text: LANGUAGES_MAP_CODE2[lang].name, | |
text: getLanguageName(lang), |
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.
Look good to me 👍
Depends on bluesky-social/atproto#2780
This PR primarily adds UX around communication template language. A few key features here are
Some additional and unrelated fixes
template-lang.mov