Localising email campaigns across multiple regions used to be a slow, repetitive task with many manual steps. Multiple reviewers worked on separate versions, the same content was rewritten several times, and managing consistency across up to 13 languages required significant coordination.
Instead of introducing new platforms or external tools, I ran an internal experiment: \n Could localisation be automated using only the tools already available inside a standard enterprise Microsoft environment?
The prototype relied primarily on SharePoint, Power Automate, and Teams, with one additional component - GPT-4.1 mini accessed through Azure OpenAI - used strictly for a controlled QA step. This allowed the process to benefit from LLM-based reasoning while keeping all data inside the same enterprise environment.
To support this workflow, I set up a structured SharePoint library called Email translations with folders representing each stage of the localisation lifecycle:
| Folder | Purpose | |----|----| | 01IncomingEN | Source English files; Power Automate trigger | | 02AIDrafts | Auto-translated drafts from Copilot + GPT | | 03InReview | Files waiting for regional review | | 04Approved | Final approved translations | | 99Archive | Archived or rejected versions |
Files moved automatically between these folders depending on their state.
The goal was not to build a perfect localisation system - only to see how far a prototype could go using internal tools.
It ended up removing a large portion of repetitive work and created a far more structured review process.
Localising content manually across many regions created several consistent issues:
Although Copilot now runs on newer GPT-5–series models, this prototype was built on an earlier version, and the translation behaviour reflected those earlier capabilities.
The first version of the workflow was simple:
Because SharePoint triggers can fire before a file finishes uploading, the flow included a file-size completion check (wait until size > 0 before continuing).
However, the main problem became clear quickly: Copilot’s translations were not reliable enough for end-to-end localisation.
Common issues included:
This made Copilot useful only for generating a first draft. \n A second quality-check layer was necessary.
The next version added a review step:
GPT-4.1 mini improved:
The prompts needed tuning to avoid unnecessary rewriting, but after adjustments, outputs became consistent enough to use in the workflow.
The architecture was simple, but several issues appeared during real use and needed fixes.
Platform behaviour:
Design issues:
After these adjustments, the workflow ran reliably under normal conditions.
Below is the complete working structure of the system.
The process began when a file was uploaded into Email translations / 01IncomingEN
Power Automate then:
SharePoint acted as the single source of truth for all stages.
Power Automate controlled every part of the workflow:
All routing, retries, and state transitions were handled by Power Automate.
Copilot translated the extracted content and preserved most of the email structure - lists, spacing, and formatting - better than GPT alone.
GPT-4.1 mini checked:
This created a more reliable draft for regional review.
For each region, Power Automate:
If changes were submitted, the updated file returned to 03InReview and re-entered the workflow.
Approved translations were stored in 04_Approved using a consistent naming format.
Rejected or outdated versions were moved to 99_Archive. This ensured a complete and clean audit trail.
After testing the prototype in real workflows:
This did not replace dedicated localisation systems, but it removed a significant amount of repetitive manual work.
These were acceptable for a prototype.
The next planned improvement is a vector-based terminology library containing:
Both models would use this library before producing or checking translations.
This project was an internal experiment to understand how much of the localisation workflow could be automated using only standard Microsoft tools and one Azure-hosted LLM. The prototype significantly reduced manual effort and improved consistency across regions without adding new software.
It isn’t a full localisation platform - but it shows what can be achieved with a simple, well-structured workflow inside the existing enterprise stack.
\


