I’m developing a website using AngularJS on the front end and a Java API backend that already internationalizes error messages. Should I perform API response translations server-side or delegate that task to the frontend?
im leaning toward frontend transltions cuz they allow more dynamic tailoring even if it addsmore work. server side is simpler for consistency but may slow things if not handled propery
hey, im wonderin if server side translaton might reduce client load but client side could offer more dynamic tweaks. have you faced any caching hiccups or performance issues? whats ur experiance with this approach?