TiPlotComponent.SaveTranslationsToFile

TiPlotComponent

Streams out all translation pairs to a text file.

procedure SaveTranslationsToFile(FileName: String);

Description

Call SaveTranslationsToFile to stream out all of the translation pairs of the component to a file.

A translation is made up of an Original String (the English representation used in our components) and a Replacement String (the translated string, can be English if you are simply wanting to change the string or any other language.

This file is in a proprietary text format and is generally used to save translations for later reloading by the LoadTranslationsFromFile method.

Example

Delphi

iComponent.SaveTranslationsToFile('C:\TextFile.txt'); //Save Translations

Kylix

iComponent.SaveTranslationsToFile('/home/username/textfile'); //Save Translations

C++ Builder

iComponent->SaveTranslationsToFile("C:\\TextFile.txt"); //Save Translations

Contents | Index | Previous | Next