1. Do not sort it A-Z, Z-A, by length or in any way other than logical.
br>
2. Make sure the string list is frozen – you will not be adding any new texts OR state that it is not final and new strings will be delivered. Then accumulate as many new strings as possible and send a bigger batch less frequently.
br>
3. Add as many metadata (descriptions, module names, etc.) as possible for every string.
br>
4. Include a maximum limit of characters for every row (if applicable).
br>
5. Do not worry the XLS becomes huge! More data means better translation quality.
br>
6. Make sure that no text or numbers are hardcoded into images.
br>
7. As much as possible try to deliver logical chunks of text. For example: give conversations as
br>
CONVERSATION BETWEEN PERSON A AND B
ROW 1: PERSON A TEXT,
ROW 2: PERSON B REPLY,
ROW 3: PERSON A TEXT,
ROW 4: PERSON B FOLLOW UP
and not
br>
PERSON A TEXTS
ROW 1: PERSON A TEXT,
ROW 2: PERSON A TEXT,
br>
PERSON B TEXTS
ROW 3: PERSON B REPLY,
ROW 4: PERSON B FOLLOW UP