stripe-i18n-declined-codes
Version:
translation files for stripe.com errors in JavaScript
10 lines (8 loc) • 333 B
JavaScript
import de from './i18n/de.json';
import en from './i18n/en.json';
import es from './i18n/es.json';
import fr from './i18n/fr.json';
export const DE_TRANSLATIONS = Object.freeze(de);
export const EN_TRANSLATIONS = Object.freeze(en);
export const ES_TRANSLATIONS = Object.freeze(es);
export const FR_TRANSLATIONS = Object.freeze(fr);