Text Flow Data Type

A translatable string

Properties
name data type description
id string
lang string Locale code for this text flow.
plural boolean Whether this message supports plurals
extensions array of object
revision number
Properties inherited from Text Container
content string The (non-plural) string contents associated with this TextFlow/TextFlowTarget. NB: If this message has plural forms, this field will be empty.
contents array of string The plural string contents associated with this TextFlow/TextFlowTarget. NB: If this message has no plural forms, this field will be empty.

Example

{
  "id" : "abc123",
  "lang" : "es-ES",
  "plural" : true,
  "extensions" : [ { }, { } ],
  "revision" : 12345,
  "contents" : [ "An english string to translate", "A plural english string to translate" ]
}