♻️ Create languages package (#644)

This commit is contained in:
Luke Vella 2023-04-03 11:04:38 +01:00 committed by GitHub
parent 05fe2edaea
commit d973cbccb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 18 additions and 3 deletions

View file

@ -0,0 +1,3 @@
import languages from "./languages.json";
export default languages;

View file

@ -0,0 +1,23 @@
{
"ca": "Català",
"cs": "Česky",
"da": "Dansk",
"de": "Deutsch",
"en": "English",
"es": "Español",
"fi": "Suomi",
"fr": "Français",
"hr": "Hrvatski",
"hu": "Magyar",
"it": "Italiano",
"ko": "한국어",
"nl": "Nederlands",
"pl": "Polski",
"pt": "Português",
"pt-BR": "Português - Brasil",
"ru": "Pусский",
"sk": "Slovenčina",
"sv": "Svenska",
"vi": "Tiếng Việt",
"zh": "汉语"
}

View file

@ -0,0 +1,7 @@
{
"name": "@rallly/languages",
"version": "0.0.0",
"private": true,
"main": "index.ts",
"types": "index.ts"
}

View file

@ -0,0 +1,5 @@
{
"extends": "@rallly/tsconfig/package.json",
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}