Hi
in a file copied from the Actions Demo, only the top Item Menu gets translated. Example: in the Insert Menu, Insert gets transalted to Insertar,
but the sub items remain in English:
File (instead of Archivo)
Picture ecc.
How can I make translations of all sub items?
Thanks
Translation: only the top Menu Items? (Actions Demo).
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
In the ActionTest demo, all translation is performed in the procedure TForm3.Localize.
Top level menus are translated directly, like:
Other menu items have the assigned Action property, so they use actions captions and hints. Actions are localized by this statement:
Top level menus are translated directly, like:
Code: Select all
mitFile.Caption := RVA_GetS(rvam_menu_File);
Code: Select all
RVA_LocalizeForm(rvActionsResource);