message.body: {{ $t('message.body') }}
custom.option1: {{ $t('custom.option1')}}
Footer: {{ 'message.footer' | translate }}
Current Language: {{ $i18n.locale() }}
With computed propery:
Current Language: {{ $i18n.locale() }}
This translation is not specified on load: {{ $t('appended.translation') }}
The fallback translation is: {{ $t('message.title') }}
The english translation is: {{ $tlang('en', 'message.title') }}
{{ $t('plural', {count: count}, count) }}
{{ $t('plural_from_array', {count: count}, count) }}
{{ $t('not.existing', 'Default text for not existing key ::: Pluralized default text for not existing key', {}, countDefault) }}
{{ $t('pluralization_singular ::: pluralization_plural ::: pluralization_none', {}, countDefault) }}
STRICT: {{ $t('weird.translation') }}
LOCALE: {{ $t('weird.translation') }}
FALLBACK: {{ $t('weird.translation') }}
DEFAULT: {{ $t('weird.translation') }}
DEFAULT: DOES NOT EXIST
{{ $t('weird.translation') }}
Value: {{ $t('async.value') }}
Promise: {{ $t('async.promise') }}