Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Internationalization library for Svelte

License

NotificationsYou must be signed in to change notification settings

kaisermann/svelte-i18n

Repository files navigation

ℹ️svelte-i18n is due to some reworking, like moving from a singleton to instances. This will be worked on when I find the time and priority 🙏

npm version

svelte-i18n

Internationalization for Svelte.

svelte-i18n helps you localize your app using the reactive tools Svelte provides. By usingstores to keep track of the currentlocale,dictionary of messages and toformat messages, we keep everything neat, in sync and easy to use on your svelte files.

Requirements

  • Node:>= 11.15.0
  • Browsers:Chrome 38+,Edge 16+,Firefox 13+,Opera 25+,Safari 8+.
<script>import {_ }from'svelte-i18n'</script><h1>{$_('page.home.title')}</h1><nav>  <a>{$_('page.home.nav', { default:'Home' })}</a>  <a>{$_('page.about.nav', { default:'About' })}</a>  <a>{$_('page.contact.nav', { default:'Contact' })}</a></nav>
// en.json{"page": {"home": {"title":"Homepage","nav":"Home"    },"about": {"title":"About","nav":"About"    },"contact": {"title":"Contact","nav":"Contact Us"    }  }}

About

Internationalization library for Svelte

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2026 Movatter.jp