I am working on an Angular application that must support both British and American English languages. The language setting is determined by a server at start-up, allowing me to know which language to display.
One specific change I need to make throughout the app is converting 'colour' to 'color'. This adjustment needs to be applied in numerous places, including in routing which will impact the URL structure.
What would be the most efficient way to implement this change globally without manually modifying each template by adding an i18n attribute to every tag (unless that is indeed necessary)?