mirror of
https://github.com/cupcakearmy/svelte-i18n.git
synced 2024-11-16 18:10:43 +01:00
187 lines
5.7 KiB
Markdown
187 lines
5.7 KiB
Markdown
<!-- @import "[TOC]" {cmd="toc" depthFrom=1 depthTo=6 orderedList=false} -->
|
|
|
|
<!-- code_chunk_output -->
|
|
|
|
- [Message syntax](#message-syntax)
|
|
- [`$format` or `$_` or `$t`](#format-or-_-or-t)
|
|
- [`$time(number: Date, options: MessageObject)`](#timenumber-date-options-messageobject)
|
|
- [`$date(date: Date, options: MessageObject)`](#datedate-date-options-messageobject)
|
|
- [`$number(number: number, options: MessageObject)`](#numbernumber-number-options-messageobject)
|
|
- [Formats](#formats)
|
|
- [Accessing formatters directly](#accessing-formatters-directly)
|
|
|
|
<!-- /code_chunk_output -->
|
|
|
|
### Message syntax
|
|
|
|
Under the hood, `formatjs` is used for localizing your messages. It allows `svelte-i18n` to support the ICU message syntax. It is strongly recommended to read their documentation about it.
|
|
|
|
- [Basic Internationalization Principles](https://formatjs.io/docs/core-concepts/basic-internationalization-principles)
|
|
- [Runtime Environments](https://formatjs.io/docs/guides/runtime-requirements/)
|
|
- [ICU Message Syntax](https://formatjs.io/docs/core-concepts/icu-syntax/)
|
|
|
|
### `$format` or `$_` or `$t`
|
|
|
|
`import { _, t, format } from 'svelte-i18n'`
|
|
|
|
The `$format` store is the actual formatter method. It's also aliased as `$_` and `$t` for convenience. To format a message is as simple as executing the `$format` method:
|
|
|
|
```svelte
|
|
<script>
|
|
import { _ } from 'svelte-i18n'
|
|
</script>
|
|
|
|
<h1>{$_('page_title')}</h1>
|
|
```
|
|
|
|
The formatter can be called with two different signatures:
|
|
|
|
- `format(messageId: string, options?: MessageObject): string`
|
|
- `format(options: MessageObject): string`
|
|
|
|
```ts
|
|
interface MessageObject {
|
|
id?: string
|
|
locale?: string
|
|
format?: string
|
|
default?: string
|
|
values?: Record<string, string | number | Date>
|
|
}
|
|
```
|
|
|
|
- `id`: represents the path to a specific message;
|
|
- `locale`: forces a specific locale;
|
|
- `default`: the default value in case of message not found in the current locale;
|
|
- `format`: the format to be used. See [#formats](#formats);
|
|
- `values`: properties that should be interpolated in the message;
|
|
|
|
You can pass a `string` as the first parameter for a less verbose way of formatting a message. It is also possible to inject values into the translation like so:
|
|
```jsonc
|
|
// en.json
|
|
{
|
|
"awesome": "{name} is awesome!"
|
|
}
|
|
```
|
|
|
|
```svelte
|
|
<h1>{$_("awesome", { values: { name: "svelte-i18n" } })}</h1> <!-- "svelte-i18n is awesome" -->
|
|
```
|
|
|
|
If the message id literal value is not in the root of the dicitonary, `.` (dots) are interpreted as a path:
|
|
|
|
```jsonc
|
|
// en.json
|
|
{
|
|
"shallow.prop": "Shallow property",
|
|
"deep": {
|
|
"property": "Deep property"
|
|
}
|
|
}
|
|
```
|
|
|
|
```svelte
|
|
<div>{$_('shallow.prop')}</div> <!-- Shallow property -->
|
|
<div>{$_('deep.property')}</div> <!-- Deep property -->
|
|
```
|
|
|
|
### `$time(number: Date, options: MessageObject)`
|
|
|
|
`import { time } from 'svelte-i18n'`
|
|
|
|
Formats a date object into a time string with the specified format. Please refer to the [#formats](#formats) section to see available formats.
|
|
|
|
```html
|
|
<div>{$time(new Date(2019, 3, 24, 23, 45))}</div>
|
|
<!-- 11:45 PM -->
|
|
|
|
<div>{$time(new Date(2019, 3, 24, 23, 45), { format: 'medium' } )}</div>
|
|
<!-- 11:45:00 PM -->
|
|
```
|
|
|
|
### `$date(date: Date, options: MessageObject)`
|
|
|
|
`import { date } from 'svelte-i18n'`
|
|
|
|
Formats a date object into a string with the specified format. Please refer to the [#formats](#formats) section to see available formats.
|
|
|
|
```html
|
|
<div>{$date(new Date(2019, 3, 24, 23, 45))}</div>
|
|
<!-- 4/24/19 -->
|
|
|
|
<div>{$date(new Date(2019, 3, 24, 23, 45), { format: 'medium' } )}</div>
|
|
<!-- Apr 24, 2019 -->
|
|
```
|
|
|
|
### `$number(number: number, options: MessageObject)`
|
|
|
|
`import { number } from 'svelte-i18n'`
|
|
|
|
Formats a number with the specified locale and format. Please refer to the [#formats](#formats) section to see available formats.
|
|
|
|
```html
|
|
<div>{$number(100000000)}</div>
|
|
<!-- 100,000,000 -->
|
|
|
|
<div>{$number(100000000, { locale: 'pt' })}</div>
|
|
<!-- 100.000.000 -->
|
|
```
|
|
|
|
### Formats
|
|
|
|
`svelte-i18n` comes with a default set of `number`, `time` and `date` formats:
|
|
|
|
**Number:**
|
|
|
|
- `currency`: `{ style: 'currency' }`
|
|
- `percent`: `{ style: 'percent' }`
|
|
- `scientific`: `{ notation: 'scientific' }`
|
|
- `engineering`: `{ notation: 'engineering' }`
|
|
- `compactLong`: `{ notation: 'compact', compactDisplay: 'long' }`
|
|
- `compactShort`: `{ notation: 'compact', compactDisplay: 'short' }`
|
|
|
|
**Date:**
|
|
|
|
- `short`: `{ month: 'numeric', day: 'numeric', year: '2-digit' }`
|
|
- `medium`: `{ month: 'short', day: 'numeric', year: 'numeric' }`
|
|
- `long`: `{ month: 'long', day: 'numeric', year: 'numeric' }`
|
|
- `full`: `{ weekday: 'long', month: 'long', day: 'numeric', year: 'numeric' }`
|
|
|
|
**Time:**
|
|
|
|
- `short`: `{ hour: 'numeric', minute: 'numeric' }`
|
|
- `medium`: `{ hour: 'numeric', minute: 'numeric', second: 'numeric' }`
|
|
- `long`: `{ hour: 'numeric', minute: 'numeric', second: 'numeric', timeZoneName: 'short' }`
|
|
- `full`: `{ hour: 'numeric', minute: 'numeric', second: 'numeric', timeZoneName: 'short' }`
|
|
|
|
### Accessing formatters directly
|
|
|
|
`svelte-i18n` also provides a low-level API to access its formatter methods:
|
|
|
|
```js
|
|
import {
|
|
getDateFormatter,
|
|
getNumberFormatter,
|
|
getTimeFormatter,
|
|
getMessageFormatter,
|
|
} from 'svelte-i18n'
|
|
```
|
|
|
|
By using these methods, it's possible to manipulate values in a more specific way that fits your needs. For example, it's possible to create a method which receives a `date` and returns its relevant date related parts:
|
|
|
|
```js
|
|
import { getDateFormatter } from 'svelte-i18n'
|
|
|
|
const getDateParts = date =>
|
|
getDateFormatter()
|
|
.formatToParts(date)
|
|
.filter(({ type }) => type !== 'literal')
|
|
.reduce((acc, { type, value }) => {
|
|
acc[type] = value
|
|
return acc
|
|
}, {})
|
|
|
|
getDateParts(new Date(2020, 0, 1)) // { month: '1', day: '1', year: '2020' }
|
|
```
|
|
|
|
Check the [methods documentation](/docs/Methods.md#low-level-api) for more information.
|