As I embark on developing a large AngularJS application, I am faced with the need to manage UI text content. This is crucial as elements like contextual help will require post-launch editing by the client in response to user feedback.
I am currently exploring different methods for integrating the text strings into the UI. So far, I have contemplated:
- utilizing a tool like angular-translate to dynamically inject the text at runtime
- using a tool like gulp-template to embed the strings into the templates during the build process
Given my lack of experience in this area, I am fully aware that there might be unforeseen challenges. I am hopeful that someone with prior experience in addressing a similar issue can offer valuable insights and advice.
Please note that there are currently no plans to internationalize the application.