fluent-bundle 0.10.2

A localization system designed to unleash the entire expressive power of natural language translations.
Documentation
suites:
  -
    name: Runtime-specific functions
    suites:
      -
        name: passing into the constructor
        resources:
          -
            source: |-
              foo = { CONCAT("Foo", "Bar") }
              bar = { SUM(1, 2) }
        bundles:
          -
            functions:
              - CONCAT
              - SUM
        tests:
          -
            name: works for strings
            asserts:
              -
                id: foo
                value: FooBar
          -
            name: works for numbers
            asserts:
              -
                id: bar
                value: 3