You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the great Codex tool under my RadStudio IDE in Germany, but with English localization in the IDE.
This means, all my IDE menu's were in usually in English.
When I use Codex, I notice that their menu's were translated to German, which looks a little odd with the mixed languages.
It seems IDE translated to German
while other pages stay still in English
I assume you choose the PC'S local language for the translation selection,
would it be possible to use the IDE language selection instead, so that the menu text language will match all other IDE text language?
The text was updated successfully, but these errors were encountered:
Yes, it would make sense for the Codex translations be based on the language that was used for Delphi. Just wondering whether this should be a configurable option? To me the answer would be: "no"
Not sure if this can be reached via IOTA, like that
uses
ToolsAPI, System.Win.Registry, Winapi.Windows, System.SysUtils;
functionGetIDELanguage: string;
var
BaseRegistryKey: string;
Registry: TRegistry;
begin
Result := '';
// Zugriff auf das IOTAServices-Interface, um den Basis-Registrierungsschlüssel zu erhalten
BaseRegistryKey := (BorlandIDEServices as IOTAServices).GetBaseRegistryKey;
Registry := TRegistry.Create(KEY_READ);
try
Registry.RootKey := HKEY_CURRENT_USER;
// Öffnen des Basis-Registrierungspfadsif Registry.OpenKeyReadOnly(BaseRegistryKey) thenbeginif Registry.ValueExists('InstallLanguage') thenbegin
Result := Registry.ReadString('InstallLanguage');
Exit;
end;
end;
// Falls 'InstallLanguage' nicht vorhanden ist, 'Localization\Language' prüfenif Registry.OpenKeyReadOnly(BaseRegistryKey + '\Localization') thenbeginif Registry.ValueExists('Language') then
Result := Registry.ReadString('Language');
end;
finally
Registry.Free;
end;
end;
It seems to be "InstallLanguage" in newer IDE and "Language" in older,
but I have not tested this code.
Hi Dave,
I'm using the great Codex tool under my RadStudio IDE in Germany, but with English localization in the IDE.
This means, all my IDE menu's were in usually in English.
When I use Codex, I notice that their menu's were translated to German, which looks a little odd with the mixed languages.
It seems IDE translated to German
while other pages stay still in English
I assume you choose the PC'S local language for the translation selection,
would it be possible to use the IDE language selection instead, so that the menu text language will match all other IDE text language?
The text was updated successfully, but these errors were encountered: