API Reference > imodeljs-I18N > Localization > 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 Localization.ts Line 99 Last Updated: 11 June, 2024