Types

VariableType

Enumeration of variable formatting types for dynamic content translation

Overview

VariableType specifies how variables are formatted in translated content.

type VariableType = 'v' | 'n' | 'd' | 'c';

Values

ValueDescription
'v'Plain text substitution
'n'Number formatting
'd'Date formatting
'c'Currency formatting

Examples

Basic Usage

import { Variable, VariableType } from 'generaltranslation';

const textVar: Variable = { k: 'name', v: 'v' };
const numberVar: Variable = { k: 'count', v: 'n' };
const dateVar: Variable = { k: 'date', v: 'd' };
const currencyVar: Variable = { k: 'price', v: 'c' };
  • Variable - Parent type using VariableType

How is this guide?

VariableType