2018-07-26 06:40:19 +02:00
|
|
|
# svelte-i18n
|
2018-07-26 03:40:38 +02:00
|
|
|
|
2018-08-14 20:21:06 +02:00
|
|
|
> Internationalization for Svelte
|
2018-07-27 04:24:17 +02:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
### On the `store`
|
|
|
|
|
|
|
|
```js
|
|
|
|
import i18n from 'svelte-i18n'
|
|
|
|
import { Store } from 'svelte/store'
|
|
|
|
|
2018-08-09 00:47:16 +02:00
|
|
|
/** i18n(svelteStore, { dictionary }) */
|
2018-08-14 20:21:06 +02:00
|
|
|
let store = new Store()
|
|
|
|
|
|
|
|
store = i18n(store, {
|
2018-08-09 00:47:16 +02:00
|
|
|
dictionary: {
|
2018-07-27 04:24:17 +02:00
|
|
|
'pt-BR': {
|
|
|
|
message: 'Mensagem',
|
2018-08-14 20:21:06 +02:00
|
|
|
greeting: 'Olá {name}, como vai?',
|
|
|
|
greetingIndex: 'Olá {0}, como vai?',
|
|
|
|
meter: 'metros | metro | metros',
|
|
|
|
book: 'livro | livros',
|
2018-07-27 04:24:17 +02:00
|
|
|
messages: {
|
|
|
|
alert: 'Alerta',
|
2018-08-09 00:47:16 +02:00
|
|
|
error: 'Erro',
|
|
|
|
},
|
2018-07-27 04:24:17 +02:00
|
|
|
},
|
|
|
|
'en-US': {
|
|
|
|
message: 'Message',
|
2018-08-14 20:21:06 +02:00
|
|
|
greeting: 'Hello {name}, how are you?',
|
|
|
|
greetingIndex: 'Hello {0}, how are you?',
|
|
|
|
meter: 'meters | meter | meters',
|
|
|
|
book: 'book | books',
|
2018-07-27 04:24:17 +02:00
|
|
|
messages: {
|
|
|
|
alert: 'Alert',
|
2018-08-09 00:47:16 +02:00
|
|
|
error: 'Error',
|
|
|
|
},
|
|
|
|
},
|
2018-07-27 04:24:17 +02:00
|
|
|
},
|
2018-08-09 00:47:16 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Extend the initial dictionary.
|
|
|
|
* Dictionaries are deeply merged.
|
|
|
|
* */
|
|
|
|
store.i18n.extendDictionary({
|
|
|
|
'pt-BR': {
|
|
|
|
messages: {
|
|
|
|
warn: 'Aviso',
|
|
|
|
success: 'Sucesso',
|
2018-07-27 04:24:17 +02:00
|
|
|
},
|
2018-08-09 00:47:16 +02:00
|
|
|
},
|
|
|
|
'en-US': {
|
|
|
|
messages: {
|
|
|
|
warn: 'Warn',
|
|
|
|
success: 'Success',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
/** Set the initial locale */
|
|
|
|
store.i18n.setLocale('en-US')
|
2018-07-27 04:24:17 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### On `templates`
|
|
|
|
|
2018-08-14 20:21:06 +02:00
|
|
|
#### Basic usage
|
|
|
|
|
|
|
|
```html
|
|
|
|
<div>
|
|
|
|
{$_('message')}: {$_('messages.success'))}
|
|
|
|
<!-- Message: SUCCESS-->
|
|
|
|
</div>
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Interpolation
|
|
|
|
|
2018-07-27 04:24:17 +02:00
|
|
|
```html
|
|
|
|
<div>
|
2018-08-14 20:21:06 +02:00
|
|
|
<!-- Named interpolation -->
|
|
|
|
{$_('greeting', { name: 'John' }))}
|
|
|
|
<!-- Hello John, how are you?-->
|
|
|
|
|
|
|
|
<!-- List interpolation -->
|
|
|
|
{$_('greetingIndex', ['John']))}
|
|
|
|
<!-- Hello John, how are you?-->
|
2018-07-27 04:24:17 +02:00
|
|
|
</div>
|
|
|
|
```
|
2018-08-07 22:44:05 +02:00
|
|
|
|
2018-08-14 20:21:06 +02:00
|
|
|
#### Pluralization
|
2018-08-07 22:44:05 +02:00
|
|
|
|
|
|
|
```html
|
2018-08-14 20:21:06 +02:00
|
|
|
<div>
|
|
|
|
0 {$_.plural('meter', 0))}
|
|
|
|
<!-- 0 meters -->
|
|
|
|
|
|
|
|
1 {$_.plural('meter', 1))}
|
|
|
|
<!-- 1 meter -->
|
|
|
|
|
|
|
|
100 {$_.plural('meter', 100))}
|
|
|
|
<!-- 100 meters -->
|
|
|
|
|
|
|
|
0 {$_.plural('book', 0))}
|
|
|
|
<!-- 0 books -->
|
|
|
|
|
|
|
|
10 {$_.plural('book', 10))}
|
|
|
|
<!-- 10 books -->
|
|
|
|
</div>
|
2018-08-09 00:47:16 +02:00
|
|
|
```
|
2018-08-14 20:21:06 +02:00
|
|
|
|
|
|
|
#### Utilities
|
|
|
|
|
|
|
|
```html
|
|
|
|
<div>
|
|
|
|
{$_.upper('message'))}
|
|
|
|
<!-- MESSAGE -->
|
|
|
|
|
|
|
|
{$_.lower('message'))}
|
|
|
|
<!-- message -->
|
|
|
|
|
|
|
|
{$_.capital('message'))}
|
|
|
|
<!-- Message -->
|
|
|
|
|
|
|
|
{$_.title('greeting', { name: 'John' }))}
|
|
|
|
<!-- Hello John, How Are You?-->
|
|
|
|
</div>
|
|
|
|
```
|