Skip to content

Instantly share code, notes, and snippets.

@AlexMost
Created January 22, 2018 08:50
Show Gist options
  • Save AlexMost/141add7d558b676c9bc25ed6ae5bdcd8 to your computer and use it in GitHub Desktop.
Save AlexMost/141add7d558b676c9bc25ed6ae5bdcd8 to your computer and use it in GitHub Desktop.
import { addLocale, useLocale } from 'c-3po';
const locale = process.env.LOCALE;
let localeTranslations;
if (locale === 'uk') {
localeTranslations = require('./uk.po');
}
// ... other locales if's
addLocale(locale, localeTranslations);
useLocale(locale);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment