dev.tsunagite.translatable

tsunagite.dev

Documentation

main object

No description available.

Properties

default string Required

The default text, used as a fallback for languages without a dedicated translation.

maxLength: 3000 bytesminLength: 1 bytesmaxGraphemes: 300 graphemes
translations object Required

A key-value map of RFC 5646 IETF language tags to translated strings.

View raw schema
{
  "type": "object",
  "required": [
    "default",
    "translations"
  ],
  "properties": {
    "default": {
      "type": "string",
      "maxLength": 3000,
      "minLength": 1,
      "description": "The default text, used as a fallback for languages without a dedicated translation.",
      "maxGraphemes": 300
    },
    "translations": {
      "type": "object",
      "properties": {
        "$keyFormat": {
          "type": "string",
          "format": "language"
        },
        "$valueType": {
          "type": "string",
          "maxLength": 3000,
          "minLength": 1,
          "maxGraphemes": 300
        }
      },
      "description": "A key-value map of RFC 5646 IETF language tags to translated strings."
    }
  }
}

Lexicon Garden

@