API Reference > imodeljs-I18N > AppAdministration > I18N > translateKeys translateKeys Method Replace all instances of %{key} within a string with the translations of those keys. For example: "MyKeys": { "Key1": "First value", "Key2": "Second value" } i18.translateKeys("string with %{MyKeys.Key1} followed by %{MyKeys.Key2}!"") // returns "string with First Value followed by Second Value!" translateKeys(line: string): string Parameter Type Description line string The input line, potentially containing %{keys}. Returns - string The line with all %{keys} translated Defined in core/i18n/src/Localization.ts Line 92 Last Updated: 13 June, 2024