Hi
Is there way to make angular version working with multi languages (rtl-ltr) dynamically , in the same project, because in the angular documentation you can use one direction only ?
Thanks
Your encouragement and support have been indispensable, and I desire to convey their importance, particularly as I endeavor to achieve my professional objectives. I request that you acknowledge the importance of your feedback.
mapquest driving directions
Yes, you can support multiple languages and dynamically switch between RTL and LTR, but the built-in Angular i18n generally relies on a compile-time approach, which doesn’t allow changing the language or direction at runtime To achieve real-time switching, a common practice is to use third-party libraries such as ngx-translate or a similar approach that loads translations dynamically and updates the interface accordingly.
For managing RTL vs. LTR, one simple method is to set document.dir in your code at runtime (for example, document.dir = 'rtl' or 'ltr'), which allows you to toggle direction based on the selected language This means you can configure your Among Us application to respond to user changes (e.g., a language toggle) and immediately reflect these alterations.