Skip to content

TSConversionEN

neavo edited this page Feb 3, 2026 · 1 revision

Foreword

  • Before reading the Advanced Tutorials series, please carefully read the [Basic Tutorial] and actually run through the translation process.

Feature Description

  • The Traditional-Simplified Conversion feature is used to batch convert translated text in projects between Simplified Chinese and Traditional Chinese
  • Supports converting both translated text and character name fields
  • Supports following text protection rules to avoid damaging code segments in game text
  • Implemented using OpenCC to ensure conversion quality

Use Cases

  • Convert Simplified Chinese subtitles to Traditional Chinese to accommodate players from different regions
  • Convert Traditional Chinese game text to Simplified Chinese to improve reading experience
  • Unify mixed Traditional and Simplified Chinese fonts in a project

Conversion Rules

Direction Rule Description
Simplified to Traditional S2TW Convert to Taiwan Traditional Chinese
Traditional to Simplified T2S Convert to Simplified Chinese

Workflow

  1. Load Project: Load the translation project (.lg file) to be processed in the main interface
  2. Access Feature: Click Toolbox -> TS Conversion
  3. Configure Options:
    • Select conversion direction (Simplified to Traditional / Traditional to Simplified)
    • Set whether to convert name field translations
    • Set whether to follow text protection rules
  4. Start Conversion: Click the Start Conversion button and wait for the conversion to complete
  5. View Results: After conversion is complete, files will be automatically exported to the output folder with suffix _S2T or _T2S

Option Descriptions

Conversion Mode

  • Simplified to Traditional: Convert Simplified Chinese to Taiwan Traditional Chinese
  • Traditional to Simplified: Convert Traditional Chinese to Simplified Chinese

Convert Name Field Translations

  • Enabled: Also convert character name field translations
  • Disabled: Only convert main text translations, keep name fields unchanged
  • Recommendation: If name fields contain specific characters (such as name-specific characters), you can disable this option

Follow Text Protection Rules

  • Enabled: Follow the current project's text protection rules during conversion to protect game codes, control characters, etc. from being converted
  • Disabled: Convert all text directly without applying protection rules
  • Recommendation: For game text, it is recommended to enable this to avoid damaging code segments; for plain text, it can be disabled

Notes

  • It is recommended to backup the project before conversion, in case you need to restore the original text
  • After conversion is complete, it is recommended to check key texts to ensure the conversion results meet expectations
  • Some game-specific terms or personal names may not be converted correctly and require manual correction
  • Output files will have suffix _S2T (Simplified to Traditional) or _T2S (Traditional to Simplified)

Technical Details

  • This feature uses the OpenCC library for Traditional-Simplified conversion
  • S2TW rule: Mainland China Simplified -> Taiwan Traditional
  • T2S rule: Taiwan Traditional -> Mainland China Simplified
  • Text protection is implemented through regular expression matching, consistent with text protection rules during translation

Clone this wiki locally