mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-23 14:13:01 -05:00
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
|
/**
|
||
|
* Currently supported locales for the Scratch Project
|
||
|
* @type {Object} Key Value pairs of locale code: Language name written in the language
|
||
|
*/
|
||
|
|
||
|
const locales = {
|
||
|
en: 'English',
|
||
|
ar: 'العربية',
|
||
|
de: 'Deutsch',
|
||
|
es: 'Español',
|
||
|
he: 'עִבְרִית'
|
||
|
};
|
||
|
|
||
|
export {locales as default};
|