scratch-paint/src/lib/hide-label.js
2019-10-10 11:36:57 -04:00

34 lines
378 B
JavaScript

const localeTooBig = [
'ab',
'ca',
'cy',
'de',
'et',
'el',
'ga',
'gd',
'gl',
'mi',
'nl',
'ja',
'ja-Hira',
'nb',
'nn',
'rap',
'th',
'sr',
'sk',
'sl',
'fi',
'sv',
'sw',
'vi',
'tr',
'uk'
];
const hideLabel = locale => localeTooBig.includes(locale);
export {
hideLabel
};