GithubHelp home page GithubHelp logo

ptzagk / svelte-i18n Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kaisermann/svelte-i18n

0.0 0.0 0.0 515 KB

Internationalization library for Svelte

License: MIT License

CSS 9.32% HTML 5.61% JavaScript 85.07%

svelte-i18n's Introduction

svelte-i18n

Internationalization for Svelte.

See Demo

Usage

svelte-i18n utilizes svelte stores for keeping track of the current locale, dictionary of messages and the main format function. This way, we keep everything neat, in sync and easy to use on your svelte files.


Locale

The locale store defines what is the current locale.

import { locale, dictionary } from 'svelte-i18n'

// Set the current locale to en-US
locale.set('en-US')

// This is a store, so we can subscribe to its changes
locale.subscribe(() => {
  console.log('locale change')
})

The dictionary

The dictionary store defines the dictionary of messages of all locales.

import { locale, dictionary } from 'svelte-i18n'

// Define a locale dictionary
dictionary.set({
  pt: {
    message: 'Mensagem',
    'switch.lang': 'Trocar idioma',
    greeting: {
      ask: 'Por favor, digite seu nome',
      message: 'Olá {name}, como vai?',
    },
    photos:
      'Você {n, plural, =0 {não tem fotos.} =1 {tem uma foto.} other {tem # fotos.}}',
    cats: 'Tenho {n, number} {n,plural,=0{gatos}one{gato}other{gatos}}',
  },
  en: {
    message: 'Message',
    'switch.lang': 'Switch language',
    greeting: {
      ask: 'Please type your name',
      message: 'Hello {name}, how are you?',
    },
    photos:
      'You have {n, plural, =0 {no photos.} =1 {one photo.} other {# photos.}}',
    cats: 'I have {n, number} {n,plural,one{cat}other{cats}}',
  },
})

// It's also possible to merge the current dictionary
// with other objets
dictionary.update(dict => {
  dict.fr = {
    // ...french messages
  }
  return dict
})

Each language message dictionary can be as deep as you want. Messages can also be looked up by a string represetation of it's path on the dictionary (i.e greeting.message).


Formatting

The _/format store is the actual formatter method. To use it, it's simple as any other svelte store.

<script>
  // locale is en
  import { _ } from 'svelte-i18n'
</script>

<input placeholder="{$_('greeting.ask')}" />

svelte-i18n uses formatjs behind the scenes, which means it supports the ICU message format for interpolation, pluralization and much more.

<div>
  {$_('greeting.message', { name: 'John' })}
  <!-- Hello John, how are you? -->

  {$_('photos', { n: 0 })}
  <!-- You have no photos. -->

  {$_('photos', { n: 12 })}
  <!-- You have 12 photos. -->
</div>

Formatting methods

_ / format

function(messageId: string, locale:? string): string

function(messageId: string, interpolations?: object, locale:? string): string

Main formatting method that formats a localized message by its id.

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_('greeting.ask')}</div>
<!-- Please type your name -->

_.upper

Transforms a localized message into uppercase.

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_.upper('greeting.ask')}</div>
<!-- PLEASE TYPE YOUR NAME -->

_.lower

Transforms a localized message into lowercase.

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_.lower('greeting.ask')}</div>
<!-- PLEASE TYPE YOUR NAME -->

_.capital

Capitalize a localized message.

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_.capital('greeting.ask')}</div>
<!-- Please type your name -->

_.title

Transform the message into title case.

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_.capital('greeting.ask')}</div>
<!-- Please Type Your Name -->

_.time

function(time: Date, format?: string, locale?: string)

Formats a date object into a time string with the specified format (short, medium, long, full). Please refer to the ICU message format documentation for all available. formats

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_.time(new Date(2019, 3, 24, 23, 45))}</div>
<!-- 11:45 PM -->

<div>{$_.time(new Date(2019, 3, 24, 23, 45), 'medium')}</div>
<!-- 11:45:00 PM -->

_.date

function(date: Date, format?: string, locale?: string)

Formats a date object into a string with the specified format (short, medium, long, full). Please refer to the ICU message format documentation for all available. formats

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_.date(new Date(2019, 3, 24, 23, 45))}</div>
<!-- 4/24/19 -->

<div>{$_.date(new Date(2019, 3, 24, 23, 45), 'medium')}</div>
<!-- Apr 24, 2019 -->

_.number

function(number: Number, locale?: string)

Formats a number with the specified locale

<script>
  import { _ } from 'svelte-i18n'
</script>

<div>{$_.number(100000000)}</div>
<!-- 100,000,000 -->

<div>{$_.number(100000000, 'pt')}</div>
<!-- 100.000.000 -->

svelte-i18n's People

Contributors

kaisermann avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.