Table of Contents

TMS FNC Localization Editor

TTMSFNCLocalizationEditor is the translation workbench of TMS FNC Localization. It opens a full editor — a translation grid, a language manager, collection rules, and AI-assisted translation — over the strings gathered by a Collector. You normally drive it at design time (via the context menu of a form or by double clicking the Collector), but it can also be launched at runtime with Execute.

Documentation

Start here Use when
Getting started You want to open the editor over a collector quickly.
User guide You want the details: opening the editor, the modal result, and saving changes.
API reference You want class, property, method, and event details.
Release notes You want the Editor change history.

Quick start

Connect the editor to a collector and open the translation workflow:

procedure TForm1.EditTranslations;
begin
  { Open the editor. It analyzes the application when it opens, lets the user
    translate, and (on VCL and FMX) saves the translations to the collector's
    folder when it closes - no manual analyze or save is required. }
  Editor.Execute;
end;

Key classes

Class Role
TTMSFNCLocalizationEditor The editor component; open it with Execute.
TTMSFNCLocalizationCollector Supplies the strings the editor edits (Collector).

See also