Git Product home page Git Product logo

react-l20n's Introduction

react-l20n-u

Mozilla's L20n localization framework for React Universal (isomorphic) works in Node (server) and Webpack (client).

Getting Started:

Install it from npm:

npm i react-l20n-u

Use it in your React App:

import L20n, { L20nElement } from 'react-l20n-u';

// Load an ftl file with localization string
L20n.load('en', require('./locales/en-US.ftl'))
// Or load localization string inline
L20n.load('fr', `
product-name	= React L20n
messages		= {$count} messages
login-input		= Default value
	[html/placeholder]		[email protected]
	[html/aria-label]		Login input value
	[html/title]			Type your login email
`)

// Use L20n.get to retrieve localized strings by key
<div>
	<h1>Product name: { L20n.get('product-name') }</h1>
	<h2>Message count: { L20n.get('messages', { count: 2 }) }</h2>
</div>

// Or use the L20nElement React component to render HTML elements
<div>
	<L20nElement id="login-input" renderAs="input" />
</div>

Universal (isomorphic) support

// To load (require) ftl files with webpack use [raw-loader](https://github.com/webpack/raw-loader)
loaders: [
	{
		test: /\.ftl?$/,
		loader: 'raw-loader',
		exclude: /node_modules/
	}
]

// To load (require) ftl files in node add the ftl extension
require.extensions['.ftl'] = function(module, filename) {
	var content = fs.readFileSync(filename, 'utf8');
	module.exports = content;
};

Methods

load(locale, ftl, options)

Load localized text strings from an ftl string. Use require to load from an ftl file (see Universal support above). Valid options:

  • allowOverrides: controls whether it's allowed to override existing mesages or terms with new values. Default: true.

get(key, props, locale)

Get a localized text by key. The returned value is a React Fragment element. HTML tags in your text will be rendered as HTML. Optionally pass some properties or an explicit locale. If no locale is given the default will be used.

getRaw(key, props, locale)

Get a localized text by key. The returned value is a string. HTML tags in your text will be rendered as text. Optionally pass some properties or an explicit locale. If no locale is given the default will be used.

Options

defaultLocale (string)

The default language used to retrieve localized strings. Sample: L20n.defaultLocale = 'nl'

fallbackToDefault (bool)

Determines whether to use the default locale if the requested locale could not be found Sample: L20n.fallbackToDefault = true

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.