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 - The line with all %{keys} translated

Defined in

Last Updated: 08 January, 2020