mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-06 10:52:31 +01:00
Merge branch 'master' of https://github.com/fosscord/fosscord-server
This commit is contained in:
commit
b603b81629
@ -1,2 +1,2 @@
|
||||
node_modules/
|
||||
db/
|
||||
db/
|
||||
|
2
.github/FUNDING.yml
vendored
2
.github/FUNDING.yml
vendored
@ -1 +1 @@
|
||||
open_collective: fosscord
|
||||
open_collective: fosscord
|
||||
|
78
.github/workflows/docker-publish-api.yml
vendored
78
.github/workflows/docker-publish-api.yml
vendored
@ -1,47 +1,41 @@
|
||||
name: docker-publish-api
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- 'api/**'
|
||||
push:
|
||||
paths:
|
||||
- "api/**"
|
||||
|
||||
jobs:
|
||||
docker-api:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Cache Docker layers
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache/api
|
||||
key: ${{ runner.os }}-buildx-api-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-api-
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./api
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKERHUB_TAGS_API }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache/api
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new/api
|
||||
-
|
||||
# Hackfix to cleanup cache; replace after buildx 0.6 and BuildKit 0.9 are GA
|
||||
# https://github.com/docker/build-push-action/pull/406#issuecomment-879184394
|
||||
name: Move cache fix
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache/api
|
||||
mv /tmp/.buildx-cache-new/api /tmp/.buildx-cache/api
|
||||
docker-api:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache/api
|
||||
key: ${{ runner.os }}-buildx-api-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-api-
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./api
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKERHUB_TAGS_API }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache/api
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new/api
|
||||
- # Hackfix to cleanup cache; replace after buildx 0.6 and BuildKit 0.9 are GA
|
||||
# https://github.com/docker/build-push-action/pull/406#issuecomment-879184394
|
||||
name: Move cache fix
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache/api
|
||||
mv /tmp/.buildx-cache-new/api /tmp/.buildx-cache/api
|
||||
|
78
.github/workflows/docker-publish-cdn.yml
vendored
78
.github/workflows/docker-publish-cdn.yml
vendored
@ -1,47 +1,41 @@
|
||||
name: docker-publish-cdn
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- 'cdn/**'
|
||||
push:
|
||||
paths:
|
||||
- "cdn/**"
|
||||
|
||||
jobs:
|
||||
docker-cdn:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Cache Docker layers
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache/cdn
|
||||
key: ${{ runner.os }}-buildx-cdn-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-cdn-
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./cdn
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKERHUB_TAGS_CDN }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache/cdn
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new/cdn
|
||||
-
|
||||
# Hackfix to cleanup cache; replace after buildx 0.6 and BuildKit 0.9 are GA
|
||||
# https://github.com/docker/build-push-action/pull/406#issuecomment-879184394
|
||||
name: Move cache fix
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache/cdn
|
||||
mv /tmp/.buildx-cache-new/cdn /tmp/.buildx-cache/cdn
|
||||
docker-cdn:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache/cdn
|
||||
key: ${{ runner.os }}-buildx-cdn-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-cdn-
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./cdn
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKERHUB_TAGS_CDN }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache/cdn
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new/cdn
|
||||
- # Hackfix to cleanup cache; replace after buildx 0.6 and BuildKit 0.9 are GA
|
||||
# https://github.com/docker/build-push-action/pull/406#issuecomment-879184394
|
||||
name: Move cache fix
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache/cdn
|
||||
mv /tmp/.buildx-cache-new/cdn /tmp/.buildx-cache/cdn
|
||||
|
78
.github/workflows/docker-publish-gateway.yml
vendored
78
.github/workflows/docker-publish-gateway.yml
vendored
@ -1,47 +1,41 @@
|
||||
name: docker-publish-gw
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- 'gateway/**'
|
||||
push:
|
||||
paths:
|
||||
- "gateway/**"
|
||||
|
||||
jobs:
|
||||
docker-gw:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Cache Docker layers
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache/gw
|
||||
key: ${{ runner.os }}-buildx-gw-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-gw-
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./gateway
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKERHUB_TAGS_GW }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache/gw
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new/gw
|
||||
-
|
||||
# Hackfix to cleanup cache; replace after buildx 0.6 and BuildKit 0.9 are GA
|
||||
# https://github.com/docker/build-push-action/pull/406#issuecomment-879184394
|
||||
name: Move cache fix
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache/gw
|
||||
mv /tmp/.buildx-cache-new/gw /tmp/.buildx-cache/gw
|
||||
docker-gw:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
- name: Cache Docker layers
|
||||
uses: actions/cache@v2
|
||||
with:
|
||||
path: /tmp/.buildx-cache/gw
|
||||
key: ${{ runner.os }}-buildx-gw-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-buildx-gw-
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: ./gateway
|
||||
push: true
|
||||
tags: ${{ secrets.DOCKERHUB_TAGS_GW }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache/gw
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new/gw
|
||||
- # Hackfix to cleanup cache; replace after buildx 0.6 and BuildKit 0.9 are GA
|
||||
# https://github.com/docker/build-push-action/pull/406#issuecomment-879184394
|
||||
name: Move cache fix
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache/gw
|
||||
mv /tmp/.buildx-cache-new/gw /tmp/.buildx-cache/gw
|
||||
|
182
.github/workflows/release.yml
vendored
182
.github/workflows/release.yml
vendored
@ -1,101 +1,101 @@
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
# Sequence of patterns matched against refs/tags
|
||||
tags:
|
||||
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
|
||||
workflow_dispatch:
|
||||
push:
|
||||
# Sequence of patterns matched against refs/tags
|
||||
tags:
|
||||
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
|
||||
|
||||
name: Publish Release
|
||||
|
||||
jobs:
|
||||
insiders-build:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [windows, macos, ubuntu]
|
||||
include:
|
||||
- os: windows
|
||||
file: fosscord-server-windows.exe
|
||||
package: ""
|
||||
artifact: fosscord-server-windows.exe
|
||||
- os: macos
|
||||
file: fosscord-server.app
|
||||
package: tar -czf 'fosscord-server-macos.app.tgz' 'fosscord-server.app'
|
||||
artifact: fosscord-server-macos.app.tgz
|
||||
- os: ubuntu
|
||||
file: fosscord
|
||||
package: chmod +x fosscord && tar -czf 'fosscord-server-linux.tgz' 'fosscord'
|
||||
artifact: fosscord-server-linux.tgz
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
env:
|
||||
MONGOMS_VERSION: 4.4.3
|
||||
with:
|
||||
node-version: 14
|
||||
- run: |
|
||||
cd bundle
|
||||
npm run setup
|
||||
npx caxa -i . -m 'This_may_take_a_while_to_run_the_first_time_please_wait...' --output '${{matrix.file}}' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/bundle/src/start.js'
|
||||
${{ matrix.package }}
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ matrix.artifact }}
|
||||
path: bundle/${{ matrix.artifact }}
|
||||
insiders-build:
|
||||
strategy:
|
||||
matrix:
|
||||
os: [windows, macos, ubuntu]
|
||||
include:
|
||||
- os: windows
|
||||
file: fosscord-server-windows.exe
|
||||
package: ""
|
||||
artifact: fosscord-server-windows.exe
|
||||
- os: macos
|
||||
file: fosscord-server.app
|
||||
package: tar -czf 'fosscord-server-macos.app.tgz' 'fosscord-server.app'
|
||||
artifact: fosscord-server-macos.app.tgz
|
||||
- os: ubuntu
|
||||
file: fosscord
|
||||
package: chmod +x fosscord && tar -czf 'fosscord-server-linux.tgz' 'fosscord'
|
||||
artifact: fosscord-server-linux.tgz
|
||||
runs-on: ${{ matrix.os }}-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
env:
|
||||
MONGOMS_VERSION: 4.4.3
|
||||
with:
|
||||
node-version: 14
|
||||
- run: |
|
||||
cd bundle
|
||||
npm run setup
|
||||
npx caxa -i . -m 'This_may_take_a_while_to_run_the_first_time_please_wait...' --output '${{matrix.file}}' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/bundle/src/start.js'
|
||||
${{ matrix.package }}
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ matrix.artifact }}
|
||||
path: bundle/${{ matrix.artifact }}
|
||||
|
||||
release:
|
||||
needs: [insiders-build]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: fosscord-server-windows.exe
|
||||
- uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: fosscord-server-macos.app.tgz
|
||||
- uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: fosscord-server-linux.tgz
|
||||
- uses: actions/create-release@v1
|
||||
id: create-release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: v${{ secrets.RELEASE_VERSION }}
|
||||
release_name: Server v${{ secrets.RELEASE_VERSION }}
|
||||
draft: false
|
||||
prerelease: true # TODO: change this to false
|
||||
body: >
|
||||
## Download
|
||||
release:
|
||||
needs: [insiders-build]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: fosscord-server-windows.exe
|
||||
- uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: fosscord-server-macos.app.tgz
|
||||
- uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: fosscord-server-linux.tgz
|
||||
- uses: actions/create-release@v1
|
||||
id: create-release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: v${{ secrets.RELEASE_VERSION }}
|
||||
release_name: Server v${{ secrets.RELEASE_VERSION }}
|
||||
draft: false
|
||||
prerelease: true # TODO: change this to false
|
||||
body: >
|
||||
## Download
|
||||
|
||||
- [Windows](https://github.com/fosscord/fosscord-server/releases/download/v${{ secrets.RELEASE_VERSION }}/fosscord-server-windows.exe)
|
||||
- [Windows](https://github.com/fosscord/fosscord-server/releases/download/v${{ secrets.RELEASE_VERSION }}/fosscord-server-windows.exe)
|
||||
|
||||
- [MacOS](https://github.com/fosscord/fosscord-server/releases/download/v${{ secrets.RELEASE_VERSION }}/fosscord-server-macos.app.tgz)
|
||||
- [MacOS](https://github.com/fosscord/fosscord-server/releases/download/v${{ secrets.RELEASE_VERSION }}/fosscord-server-macos.app.tgz)
|
||||
|
||||
- [Linux](https://github.com/fosscord/fosscord-server/releases/download/v${{ secrets.RELEASE_VERSION }}/fosscord-server-linux.tgz)
|
||||
- [Linux](https://github.com/fosscord/fosscord-server/releases/download/v${{ secrets.RELEASE_VERSION }}/fosscord-server-linux.tgz)
|
||||
|
||||
- uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: fosscord-server-windows.exe
|
||||
asset_name: fosscord-server-windows.exe
|
||||
asset_content_type: application/vnd.microsoft.portable-executable
|
||||
- uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: fosscord-server-macos.app.tgz
|
||||
asset_name: fosscord-server-macos.app.tgz
|
||||
asset_content_type: application/gzip
|
||||
- uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: fosscord-server-linux.tgz
|
||||
asset_name: fosscord-server-linux.tgz
|
||||
asset_content_type: application/gzip
|
||||
- uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: fosscord-server-windows.exe
|
||||
asset_name: fosscord-server-windows.exe
|
||||
asset_content_type: application/vnd.microsoft.portable-executable
|
||||
- uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: fosscord-server-macos.app.tgz
|
||||
asset_name: fosscord-server-macos.app.tgz
|
||||
asset_content_type: application/gzip
|
||||
- uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create-release.outputs.upload_url }}
|
||||
asset_path: fosscord-server-linux.tgz
|
||||
asset_name: fosscord-server-linux.tgz
|
||||
asset_content_type: application/gzip
|
||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -7,4 +7,5 @@ api/assets/*.css
|
||||
database.db
|
||||
tsconfig.tsbuildinfo
|
||||
files/
|
||||
.env
|
||||
.env
|
||||
config.json
|
||||
|
4
.prettierrc
Normal file
4
.prettierrc
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"tabWidth": 4,
|
||||
"useTabs": true
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
FROM nikolaik/python-nodejs:latest
|
||||
FROM node:14
|
||||
WORKDIR /usr/src/fosscord-server/
|
||||
COPY . .
|
||||
WORKDIR /usr/src/fosscord-server/bundle
|
||||
|
16
README.md
16
README.md
@ -18,13 +18,13 @@
|
||||
|
||||
This repository contains:
|
||||
|
||||
- [Fosscord HTTP API Server](https://github.com/fosscord/fosscord-server/tree/master/api)
|
||||
- [WebSocket Gateway Server](https://github.com/fosscord/fosscord-server/tree/master/gateway)
|
||||
- [HTTP CDN Server](https://github.com/fosscord/fosscord-server/tree/master/cdn)
|
||||
- [Utility and Database Models](https://github.com/fosscord/fosscord-server/tree/master/util)
|
||||
- [RTC Server](https://github.com/fosscord/fosscord-server/tree/master/rtc)
|
||||
- [WebRTC Server](https://github.com/fosscord/fosscord-server/tree/master/webrtc)
|
||||
- [Admin Dashboard](https://github.com/fosscord/fosscord-server/tree/master/dashboard)
|
||||
- [Fosscord HTTP API Server](/api)
|
||||
- [WebSocket Gateway Server](/gateway)
|
||||
- [HTTP CDN Server](/cdn)
|
||||
- [Utility and Database Models](/util)
|
||||
- [RTC Server](/rtc)
|
||||
- [WebRTC Server](/webrtc)
|
||||
- [Admin Dashboard](/dashboard)
|
||||
|
||||
## [Resources](https://docs.fosscord.com/resources/)
|
||||
|
||||
@ -32,4 +32,4 @@ This repository contains:
|
||||
|
||||
## [Setup](https://docs.fosscord.com/setup/server/)
|
||||
|
||||
- [Download](https://github.com/fosscord/fosscord-server/releases)
|
||||
- [Download](https://github.com/fosscord/fosscord-server/releases)
|
||||
|
10
api/.vscode/api-snippets.code-snippets
vendored
10
api/.vscode/api-snippets.code-snippets
vendored
@ -19,11 +19,7 @@
|
||||
"Route": {
|
||||
"scope": "typescript",
|
||||
"prefix": "route",
|
||||
"body": [
|
||||
"router.get(\"$1\", route({}), (req: Request, res: Response) => {",
|
||||
"\t$2",
|
||||
"});"
|
||||
],
|
||||
"body": ["router.get(\"$1\", route({}), (req: Request, res: Response) => {", "\t$2", "});"],
|
||||
"description": "An API endpoint"
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -8,5 +8,5 @@ RUN npm rebuild bcrypt --build-from-source && npm install canvas --build-from-so
|
||||
RUN npm install
|
||||
COPY . .
|
||||
EXPOSE 3001
|
||||
RUN npm run build
|
||||
RUN npm run build-docker
|
||||
CMD ["node", "dist/start.js"]
|
||||
|
17844
api/assets/schemas.json
17844
api/assets/schemas.json
File diff suppressed because it is too large
Load Diff
@ -105,8 +105,40 @@
|
||||
});
|
||||
}
|
||||
|
||||
const supportedLocales = [
|
||||
"bg",
|
||||
"cs",
|
||||
"da",
|
||||
"de",
|
||||
"el",
|
||||
"en-GB",
|
||||
"es-ES",
|
||||
"fi",
|
||||
"fr",
|
||||
"hi",
|
||||
"hr",
|
||||
"hu",
|
||||
"it",
|
||||
"ja",
|
||||
"ko",
|
||||
"lt",
|
||||
"nl",
|
||||
"no",
|
||||
"pl",
|
||||
"pt-BR",
|
||||
"ro",
|
||||
"ru",
|
||||
"sv-SE",
|
||||
"th",
|
||||
"tr",
|
||||
"uk",
|
||||
"vi",
|
||||
"zh-CN",
|
||||
"zh-TW"
|
||||
];
|
||||
|
||||
const settings = JSON.parse(localStorage.getItem("UserSettingsStore"));
|
||||
if (settings && settings.locale.length <= 2) {
|
||||
if (settings && !supportedLocales.includes(settings.locale)) {
|
||||
// fix client locale wrong and client not loading at all
|
||||
settings.locale = "en-US";
|
||||
localStorage.setItem("UserSettingsStore", JSON.stringify(settings));
|
||||
|
@ -1,3 +1,3 @@
|
||||
files:
|
||||
- source: /locales/en/*.json
|
||||
translation: /locales/%two_letters_code%/%original_file_name%
|
||||
- source: /locales/en/*.json
|
||||
translation: /locales/%two_letters_code%/%original_file_name%
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "هذا الحقل مطلوب",
|
||||
"BASE_TYPE_STRING": "يجب أن يكون هذا الحقل سلسلة من الأحرف",
|
||||
"BASE_TYPE_NUMBER": "يجب أن يكون هذا الحقل رقم",
|
||||
"BASE_TYPE_BIGINT": "يجب أن يكون هذا الحقل أكبر",
|
||||
"BASE_TYPE_BOOLEAN": "يجب أن يكون هذا الحقل منطقيا",
|
||||
"BASE_TYPE_CHOICES": "يجب أن يكون هذا الحقل واحدا من ({{types}})",
|
||||
"BASE_TYPE_CLASS": "يجب أن يكون هذا الحقل مثيل {{type}}",
|
||||
"BASE_TYPE_OBJECT": "يجب أن يكون هذا الحقل كائناً",
|
||||
"BASE_TYPE_ARRAY": "يجب أن يكون هذا الحقل مصفوفة",
|
||||
"UNKOWN_FIELD": "مفتاح غير معروف: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "يجب أن يكون هذا الحقل {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "عنوان البريد الإلكتروني ليس مشكّل جيدا",
|
||||
"DATE_TYPE_PARSE": "لا يمكن تحليل {{date}}. يجب أن يكون ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "يجب أن يكون بين {{length}} في الطول"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "هذا الحقل مطلوب",
|
||||
"BASE_TYPE_STRING": "يجب أن يكون هذا الحقل سلسلة من الأحرف",
|
||||
"BASE_TYPE_NUMBER": "يجب أن يكون هذا الحقل رقم",
|
||||
"BASE_TYPE_BIGINT": "يجب أن يكون هذا الحقل أكبر",
|
||||
"BASE_TYPE_BOOLEAN": "يجب أن يكون هذا الحقل منطقيا",
|
||||
"BASE_TYPE_CHOICES": "يجب أن يكون هذا الحقل واحدا من ({{types}})",
|
||||
"BASE_TYPE_CLASS": "يجب أن يكون هذا الحقل مثيل {{type}}",
|
||||
"BASE_TYPE_OBJECT": "يجب أن يكون هذا الحقل كائناً",
|
||||
"BASE_TYPE_ARRAY": "يجب أن يكون هذا الحقل مصفوفة",
|
||||
"UNKOWN_FIELD": "مفتاح غير معروف: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "يجب أن يكون هذا الحقل {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "عنوان البريد الإلكتروني ليس مشكّل جيدا",
|
||||
"DATE_TYPE_PARSE": "لا يمكن تحليل {{date}}. يجب أن يكون ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "يجب أن يكون بين {{length}} في الطول"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,8 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password"
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
@ -9,7 +10,7 @@
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to Terms of Service and Privacy Policy.",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/arn/common.json
Normal file
18
api/locales/arn/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,7 +1,8 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password"
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
@ -9,7 +10,7 @@
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to Terms of Service and Privacy Policy.",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/az/common.json
Normal file
18
api/locales/az/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Гэта поле з'яўляецца абавязковым",
|
||||
"BASE_TYPE_STRING": "Гэта поле павінна быць string",
|
||||
"BASE_TYPE_NUMBER": "Гэта поле павінна быць number",
|
||||
"BASE_TYPE_BIGINT": "Гэта поле павінна быць bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Гэта поле павінна быць boolean",
|
||||
"BASE_TYPE_CHOICES": "Гэта поле павінна быць адным з ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Гэта поле павінна быць асобнікам {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Гэта поле павінна быць аб'ектам",
|
||||
"BASE_TYPE_ARRAY": "Гэта поле павінна быць масівам",
|
||||
"UNKOWN_FIELD": "Невядомае поле: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Гэта поле павінна быць {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Няправільны фармат адрасы электроннай пошты",
|
||||
"DATE_TYPE_PARSE": "Немагчыма разабраць {{date}}. Яна павінна быць у ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Павінна быць паміж {{length}} у даўжыню"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Гэта поле з'яўляецца абавязковым",
|
||||
"BASE_TYPE_STRING": "Гэта поле павінна быць string",
|
||||
"BASE_TYPE_NUMBER": "Гэта поле павінна быць number",
|
||||
"BASE_TYPE_BIGINT": "Гэта поле павінна быць bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Гэта поле павінна быць boolean",
|
||||
"BASE_TYPE_CHOICES": "Гэта поле павінна быць адным з ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Гэта поле павінна быць асобнікам {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Гэта поле павінна быць аб'ектам",
|
||||
"BASE_TYPE_ARRAY": "Гэта поле павінна быць масівам",
|
||||
"UNKOWN_FIELD": "Невядомае поле: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Гэта поле павінна быць {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Няправільны фармат адрасы электроннай пошты",
|
||||
"DATE_TYPE_PARSE": "Немагчыма разабраць {{date}}. Яна павінна быць у ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Павінна быць паміж {{length}} у даўжыню"
|
||||
}
|
||||
}
|
||||
|
16
api/locales/ber/auth.json
Normal file
16
api/locales/ber/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/ber/common.json
Normal file
18
api/locales/ber/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Това поле е задължително",
|
||||
"BASE_TYPE_STRING": "Това поле трябва да е низ",
|
||||
"BASE_TYPE_NUMBER": "Това поле трябва да е число",
|
||||
"BASE_TYPE_BIGINT": "Това поле трябва да е голямо",
|
||||
"BASE_TYPE_BOOLEAN": "Това поле трябва да бъде булево",
|
||||
"BASE_TYPE_CHOICES": "Това поле трябва да бъде едно от ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Това поле трябва да бъде екземпляр на {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Това поле трябва да бъде обект",
|
||||
"BASE_TYPE_ARRAY": "Това поле трябва да бъде масив",
|
||||
"UNKOWN_FIELD": "Непознат ключ: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Това поле трябва да е {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Невалиден имейл адрес",
|
||||
"DATE_TYPE_PARSE": "Не може да се анализира {{date}}. Трябва да е ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Трябва да е с дължина между {{length}}"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Това поле е задължително",
|
||||
"BASE_TYPE_STRING": "Това поле трябва да е низ",
|
||||
"BASE_TYPE_NUMBER": "Това поле трябва да е число",
|
||||
"BASE_TYPE_BIGINT": "Това поле трябва да е голямо",
|
||||
"BASE_TYPE_BOOLEAN": "Това поле трябва да бъде булево",
|
||||
"BASE_TYPE_CHOICES": "Това поле трябва да бъде едно от ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Това поле трябва да бъде екземпляр на {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Това поле трябва да бъде обект",
|
||||
"BASE_TYPE_ARRAY": "Това поле трябва да бъде масив",
|
||||
"UNKOWN_FIELD": "Непознат ключ: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Това поле трябва да е {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Невалиден имейл адрес",
|
||||
"DATE_TYPE_PARSE": "Не може да се анализира {{date}}. Трябва да е ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Трябва да е с дължина между {{length}}"
|
||||
}
|
||||
}
|
||||
|
16
api/locales/bo/auth.json
Normal file
16
api/locales/bo/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/bo/common.json
Normal file
18
api/locales/bo/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
|
@ -2,12 +2,12 @@
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail nebo telefon nenalezen",
|
||||
"INVALID_PASSWORD": "Neplatné heslo",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
"ACCOUNT_DISABLED": "Tento účet je vypnutý"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "Registrace nového uživatele je zakázána",
|
||||
"INVITE_ONLY": "Musíte být pozváni k registraci",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_INVALID": "Neplatný E-mail",
|
||||
"EMAIL_ALREADY_REGISTERED": "E-mail je již registrován",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "Musíš být {{years}} let nebo starší",
|
||||
"CONSENT_REQUIRED": "Musíte souhlasit s obchodními podmínkami a zásadami ochrany osobních údajů.",
|
||||
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Toto pole je povinné",
|
||||
"BASE_TYPE_STRING": "Toto pole musí být řetězec",
|
||||
"BASE_TYPE_NUMBER": "Toto pole musí být číslo",
|
||||
"BASE_TYPE_BIGINT": "Toto pole musí být velké",
|
||||
"BASE_TYPE_BOOLEAN": "Toto pole musí být logická hodnota",
|
||||
"BASE_TYPE_CHOICES": "Toto pole musí být jedno z ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Toto pole musí být instancí {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Toto pole musí být objekt",
|
||||
"BASE_TYPE_ARRAY": "Toto pole musí být pole",
|
||||
"UNKOWN_FIELD": "Neznámý klíč: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Toto pole musí být {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Není dobře vytvořená e-mailová adresa",
|
||||
"DATE_TYPE_PARSE": "Nelze naparsovat {{date}}. Mělo by být ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Musí být mezi {{length}} délkou"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Toto pole je povinné",
|
||||
"BASE_TYPE_STRING": "Toto pole musí být řetězec",
|
||||
"BASE_TYPE_NUMBER": "Toto pole musí být číslo",
|
||||
"BASE_TYPE_BIGINT": "Toto pole musí být velké",
|
||||
"BASE_TYPE_BOOLEAN": "Toto pole musí být logická hodnota",
|
||||
"BASE_TYPE_CHOICES": "Toto pole musí být jedno z ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Toto pole musí být instancí {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Toto pole musí být objekt",
|
||||
"BASE_TYPE_ARRAY": "Toto pole musí být pole",
|
||||
"UNKOWN_FIELD": "Neznámý klíč: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Toto pole musí být {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Není dobře vytvořená e-mailová adresa",
|
||||
"DATE_TYPE_PARSE": "Nelze naparsovat {{date}}. Mělo by být ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Musí být mezi {{length}} délkou"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dette felt er påkrævet",
|
||||
"BASE_TYPE_STRING": "Dette felt skal være en streng",
|
||||
"BASE_TYPE_NUMBER": "Dette felt skal være et tal",
|
||||
"BASE_TYPE_BIGINT": "Dette felt skal være en bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Dette felt skal være en boolsk",
|
||||
"BASE_TYPE_CHOICES": "Dette felt skal være et af ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Dette felt skal være en instans på {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Dette felt skal være et objekt",
|
||||
"BASE_TYPE_ARRAY": "Dette felt skal være et array",
|
||||
"UNKOWN_FIELD": "Ukendt nøgle: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dette felt skal være {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Ikke en velformet e-mailadresse",
|
||||
"DATE_TYPE_PARSE": "Kunne ikke fortolke {{date}}. Bør være ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Skal være mellem {{length}} i længden"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dette felt er påkrævet",
|
||||
"BASE_TYPE_STRING": "Dette felt skal være en streng",
|
||||
"BASE_TYPE_NUMBER": "Dette felt skal være et tal",
|
||||
"BASE_TYPE_BIGINT": "Dette felt skal være en bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Dette felt skal være en boolsk",
|
||||
"BASE_TYPE_CHOICES": "Dette felt skal være et af ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Dette felt skal være en instans på {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Dette felt skal være et objekt",
|
||||
"BASE_TYPE_ARRAY": "Dette felt skal være et array",
|
||||
"UNKOWN_FIELD": "Ukendt nøgle: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dette felt skal være {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Ikke en velformet e-mailadresse",
|
||||
"DATE_TYPE_PARSE": "Kunne ikke fortolke {{date}}. Bør være ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Skal være mellem {{length}} i længden"
|
||||
}
|
||||
}
|
||||
|
@ -1,16 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail oder Telefonnummer nicht gefunden",
|
||||
"INVALID_PASSWORD": "Ungültiges Passwort",
|
||||
"ACCOUNT_DISABLED": "Dieses Konto ist gesperrt"
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "Die Registrierung ist deaktiviert",
|
||||
"INVITE_ONLY": "Du musst eingeladen werden, um dich zu registrieren",
|
||||
"EMAIL_INVALID": "Ungültige E-Mail-Adresse",
|
||||
"EMAIL_ALREADY_REGISTERED": "Die E-Mail-Adresse wird bereits verwendet",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "Du musst mindestens {{years}} Jahre oder älter sein",
|
||||
"CONSENT_REQUIRED": "Du musst den Nutzungsbedingungen und den Datenschutzbestimmungen zustimmen.",
|
||||
"USERNAME_TOO_MANY_USERS": "Zu viele Benutzer haben bereits diesen Benutzernamen, bitte wähle einen anderen"
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dieses Feld ist erforderlich",
|
||||
"BASE_TYPE_STRING": "Dieses Feld muss ein String sein",
|
||||
"BASE_TYPE_NUMBER": "Dieses Feld muss eine Zahl sein",
|
||||
"BASE_TYPE_BIGINT": "Dieses Feld muss ein bigint sein",
|
||||
"BASE_TYPE_BOOLEAN": "Dieses Feld muss ein boolean sein",
|
||||
"BASE_TYPE_CHOICES": "Dieses Feld muss eines von ({{types}}) sein",
|
||||
"BASE_TYPE_CLASS": "Dieses Feld muss {{type}} sein",
|
||||
"BASE_TYPE_OBJECT": "Dieses Feld muss ein Objekt sein",
|
||||
"BASE_TYPE_ARRAY": "Dieses Feld muss ein Array sein",
|
||||
"UNKOWN_FIELD": "Unbekanntes Feld: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dieses Feld muss {{value}} sein",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Keine gültige E-Mail-Adresse",
|
||||
"DATE_TYPE_PARSE": "Konnte {{date}} nicht lesen. Muss ISO8601 entsprechen",
|
||||
"BASE_TYPE_BAD_LENGTH": "Muss zwischen {{length}} lang sein"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dieses Feld ist erforderlich",
|
||||
"BASE_TYPE_STRING": "Dieses Feld muss ein String sein",
|
||||
"BASE_TYPE_NUMBER": "Dieses Feld muss eine Zahl sein",
|
||||
"BASE_TYPE_BIGINT": "Dieses Feld muss ein bigint sein",
|
||||
"BASE_TYPE_BOOLEAN": "Dieses Feld muss ein boolean sein",
|
||||
"BASE_TYPE_CHOICES": "Dieses Feld muss eines von ({{types}}) sein",
|
||||
"BASE_TYPE_CLASS": "Dieses Feld muss {{type}} sein",
|
||||
"BASE_TYPE_OBJECT": "Dieses Feld muss ein Objekt sein",
|
||||
"BASE_TYPE_ARRAY": "Dieses Feld muss ein Array sein",
|
||||
"UNKOWN_FIELD": "Unbekanntes Feld: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dieses Feld muss {{value}} sein",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Keine gültige E-Mail-Adresse",
|
||||
"DATE_TYPE_PARSE": "Konnte {{date}} nicht lesen. Muss ISO8601 entsprechen",
|
||||
"BASE_TYPE_BAD_LENGTH": "Muss zwischen {{length}} lang sein"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Αυτό το πεδίο είναι υποχρεωτικό",
|
||||
"BASE_TYPE_STRING": "Αυτό το πεδίο πρέπει να είναι μια συμβολοσειρά",
|
||||
"BASE_TYPE_NUMBER": "Αυτό το πεδίο πρέπει να είναι αριθμός",
|
||||
"BASE_TYPE_BIGINT": "Αυτό το πεδίο πρέπει να είναι μεγαλοπρεπής",
|
||||
"BASE_TYPE_BOOLEAN": "Αυτό το πεδίο πρέπει να είναι boolean",
|
||||
"BASE_TYPE_CHOICES": "Αυτό το πεδίο πρέπει να είναι ένα από{{types}})",
|
||||
"BASE_TYPE_CLASS": "Αυτό το πεδίο πρέπει να είναι ένα παράδειγμα {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Αυτό το πεδίο πρέπει να είναι αντικείμενο",
|
||||
"BASE_TYPE_ARRAY": "Αυτό το πεδίο πρέπει να είναι ένας πίνακας",
|
||||
"UNKOWN_FIELD": "Άγνωστο κλειδί: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Αυτό το πεδίο πρέπει να είναι {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Δεν είναι καλά σχηματισμένη διεύθυνση ηλεκτρονικού ταχυδρομείου",
|
||||
"DATE_TYPE_PARSE": "Αδυναμία ανάλυσης του {{date}}. Πρέπει να είναι ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Πρέπει να είναι μεταξύ {{length}} σε μήκος"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Αυτό το πεδίο είναι υποχρεωτικό",
|
||||
"BASE_TYPE_STRING": "Αυτό το πεδίο πρέπει να είναι μια συμβολοσειρά",
|
||||
"BASE_TYPE_NUMBER": "Αυτό το πεδίο πρέπει να είναι αριθμός",
|
||||
"BASE_TYPE_BIGINT": "Αυτό το πεδίο πρέπει να είναι μεγαλοπρεπής",
|
||||
"BASE_TYPE_BOOLEAN": "Αυτό το πεδίο πρέπει να είναι boolean",
|
||||
"BASE_TYPE_CHOICES": "Αυτό το πεδίο πρέπει να είναι ένα από{{types}})",
|
||||
"BASE_TYPE_CLASS": "Αυτό το πεδίο πρέπει να είναι ένα παράδειγμα {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Αυτό το πεδίο πρέπει να είναι αντικείμενο",
|
||||
"BASE_TYPE_ARRAY": "Αυτό το πεδίο πρέπει να είναι ένας πίνακας",
|
||||
"UNKOWN_FIELD": "Άγνωστο κλειδί: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Αυτό το πεδίο πρέπει να είναι {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Δεν είναι καλά σχηματισμένη διεύθυνση ηλεκτρονικού ταχυδρομείου",
|
||||
"DATE_TYPE_PARSE": "Αδυναμία ανάλυσης του {{date}}. Πρέπει να είναι ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Πρέπει να είναι μεταξύ {{length}} σε μήκος"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Tio kampo estas bezona",
|
||||
"BASE_TYPE_STRING": "Tio kampo devas string",
|
||||
"BASE_TYPE_NUMBER": "Tio kampo devas numbero",
|
||||
"BASE_TYPE_BIGINT": "Tio kampo devas bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Tio kampo devas bulea",
|
||||
"BASE_TYPE_CHOICES": "Tio kampo devas unu de ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Tio kampo devas kazo de {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Tio kampo devas objekto",
|
||||
"BASE_TYPE_ARRAY": "Tio kampo devas tabelo",
|
||||
"UNKOWN_FIELD": "Nekonata ŝlosilo: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Tio kampo devas {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Formado de retpoŝto estas nevalida",
|
||||
"DATE_TYPE_PARSE": "Nevalida dato {{date}}. Devas ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Devas sub {{length}} en longo"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Tio kampo estas bezona",
|
||||
"BASE_TYPE_STRING": "Tio kampo devas string",
|
||||
"BASE_TYPE_NUMBER": "Tio kampo devas numbero",
|
||||
"BASE_TYPE_BIGINT": "Tio kampo devas bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Tio kampo devas bulea",
|
||||
"BASE_TYPE_CHOICES": "Tio kampo devas unu de ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Tio kampo devas kazo de {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Tio kampo devas objekto",
|
||||
"BASE_TYPE_ARRAY": "Tio kampo devas tabelo",
|
||||
"UNKOWN_FIELD": "Nekonata ŝlosilo: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Tio kampo devas {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Formado de retpoŝto estas nevalida",
|
||||
"DATE_TYPE_PARSE": "Nevalida dato {{date}}. Devas ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Devas sub {{length}} en longo"
|
||||
}
|
||||
}
|
||||
|
@ -2,15 +2,15 @@
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail o teléfono no encontrado",
|
||||
"INVALID_PASSWORD": "Contraseña Incorrecta",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
"ACCOUNT_DISABLED": "Esta cuenta está desactivada"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "El registro de un nuevo usuario no se encuentra habilitado",
|
||||
"INVITE_ONLY": "Tenés que ser invitado para poder registrarte",
|
||||
"EMAIL_INVALID": "Email inválido",
|
||||
"EMAIL_ALREADY_REGISTERED": "Este E-mail ya está registrado",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "Necesitas tener {{years}} años o más",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "Necesitás tener {{years}} años o más",
|
||||
"CONSENT_REQUIRED": "Tenés que aceptar los Términos de Servicio y la Política de Privacidad.",
|
||||
"USERNAME_TOO_MANY_USERS": "Demasiados usuarios tienen este nombre de usuario, por favor intente con otro"
|
||||
"USERNAME_TOO_MANY_USERS": "Demasiados usuarios tienen este nombre de usuario, por favor intentá con otro"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Este campo es obligatorio",
|
||||
"BASE_TYPE_STRING": "Este campo debe ser un texto",
|
||||
"BASE_TYPE_NUMBER": "Este campo debe ser un número",
|
||||
"BASE_TYPE_BIGINT": "Este campo debe ser un tamaño grande",
|
||||
"BASE_TYPE_BOOLEAN": "Este campo debe ser un boolean",
|
||||
"BASE_TYPE_CHOICES": "Este campo debe ser uno de ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Este campo debe ser una instancia de {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Este campo debe ser un objeto",
|
||||
"BASE_TYPE_ARRAY": "Este campo debe ser una matriz",
|
||||
"UNKOWN_FIELD": "Clave desconocida: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Este campo debe ser {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "No es una dirección de email bien formada",
|
||||
"DATE_TYPE_PARSE": "No se pudo analizar {{date}}. Debe ser ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Debe estar entre {{length}} de longitud"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Este campo es obligatorio",
|
||||
"BASE_TYPE_STRING": "Este campo debe ser un texto",
|
||||
"BASE_TYPE_NUMBER": "Este campo debe ser un número",
|
||||
"BASE_TYPE_BIGINT": "Este campo debe ser un tamaño grande",
|
||||
"BASE_TYPE_BOOLEAN": "Este campo debe ser un boolean",
|
||||
"BASE_TYPE_CHOICES": "Este campo debe ser uno de ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Este campo debe ser una instancia de {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Este campo debe ser un objeto",
|
||||
"BASE_TYPE_ARRAY": "Este campo debe ser una matriz",
|
||||
"UNKOWN_FIELD": "Clave desconocida: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Este campo debe ser {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "No es una dirección de email bien formada",
|
||||
"DATE_TYPE_PARSE": "No se pudo analizar {{date}}. Debe ser ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Debe estar entre {{length}} de longitud"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/eu/auth.json
Normal file
16
api/locales/eu/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/eu/common.json
Normal file
18
api/locales/eu/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/fa/auth.json
Normal file
16
api/locales/fa/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/fa/common.json
Normal file
18
api/locales/fa/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Tämä kenttä on pakollinen",
|
||||
"BASE_TYPE_STRING": "Tämän kentän on oltava merkkijono",
|
||||
"BASE_TYPE_NUMBER": "Tämän kentän on oltava numero",
|
||||
"BASE_TYPE_BIGINT": "Tämän kentän on oltava isoin",
|
||||
"BASE_TYPE_BOOLEAN": "Tämän kentän on oltava totuus",
|
||||
"BASE_TYPE_CHOICES": "Tämän kentän on oltava yksi ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Tämän kentän on oltava {{type}} instanssi",
|
||||
"BASE_TYPE_OBJECT": "Tämän kentän on oltava objekti",
|
||||
"BASE_TYPE_ARRAY": "Tämän kentän on oltava array",
|
||||
"UNKOWN_FIELD": "Tuntematon avain: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Tämän kentän on oltava {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Sähköpostiosoite ei ole hyvin muodostettu",
|
||||
"DATE_TYPE_PARSE": "Ei voitu jäsentää {{date}}. Pitäisi olla ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Pituuden on oltava välillä {{length}}"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Tämä kenttä on pakollinen",
|
||||
"BASE_TYPE_STRING": "Tämän kentän on oltava merkkijono",
|
||||
"BASE_TYPE_NUMBER": "Tämän kentän on oltava numero",
|
||||
"BASE_TYPE_BIGINT": "Tämän kentän on oltava isoin",
|
||||
"BASE_TYPE_BOOLEAN": "Tämän kentän on oltava totuus",
|
||||
"BASE_TYPE_CHOICES": "Tämän kentän on oltava yksi ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Tämän kentän on oltava {{type}} instanssi",
|
||||
"BASE_TYPE_OBJECT": "Tämän kentän on oltava objekti",
|
||||
"BASE_TYPE_ARRAY": "Tämän kentän on oltava array",
|
||||
"UNKOWN_FIELD": "Tuntematon avain: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Tämän kentän on oltava {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Sähköpostiosoite ei ole hyvin muodostettu",
|
||||
"DATE_TYPE_PARSE": "Ei voitu jäsentää {{date}}. Pitäisi olla ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Pituuden on oltava välillä {{length}}"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Ce champ est obligatoire",
|
||||
"BASE_TYPE_STRING": "Ce champ doit être une chaîne de caractères",
|
||||
"BASE_TYPE_NUMBER": "Ce champ doit être un nombre",
|
||||
"BASE_TYPE_BIGINT": "Ce champ doit être un bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Ce champ doit être un boolean",
|
||||
"BASE_TYPE_CHOICES": "Ce champ doit être l'un des ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Ce champ doit être une instance de {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Ce champ doit être un objet",
|
||||
"BASE_TYPE_ARRAY": "Ce champ doit être un tableau",
|
||||
"UNKOWN_FIELD": "Clé inconnue: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Ce champ doit être {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Adresse e-mail mal formaté",
|
||||
"DATE_TYPE_PARSE": "Impossible d'analyser {{date}}. Doit être ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Doit être entre {{length}} de longueur"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Ce champ est obligatoire",
|
||||
"BASE_TYPE_STRING": "Ce champ doit être une chaîne de caractères",
|
||||
"BASE_TYPE_NUMBER": "Ce champ doit être un nombre",
|
||||
"BASE_TYPE_BIGINT": "Ce champ doit être un bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Ce champ doit être un boolean",
|
||||
"BASE_TYPE_CHOICES": "Ce champ doit être l'un des ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Ce champ doit être une instance de {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Ce champ doit être un objet",
|
||||
"BASE_TYPE_ARRAY": "Ce champ doit être un tableau",
|
||||
"UNKOWN_FIELD": "Clé inconnue: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Ce champ doit être {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Adresse e-mail mal formaté",
|
||||
"DATE_TYPE_PARSE": "Impossible d'analyser {{date}}. Doit être ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Doit être entre {{length}} de longueur"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/gn/auth.json
Normal file
16
api/locales/gn/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/gn/common.json
Normal file
18
api/locales/gn/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/ha/auth.json
Normal file
16
api/locales/ha/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/ha/common.json
Normal file
18
api/locales/ha/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "यह फ़ील्ड आवश्यक है",
|
||||
"BASE_TYPE_STRING": "यह फ़ील्ड एक स्ट्रिंग होनी चाहिए",
|
||||
"BASE_TYPE_NUMBER": "यह फ़ील्ड एक संख्या होनी चाहिए",
|
||||
"BASE_TYPE_BIGINT": "यह फ़ील्ड एक बिगिन्ट होनी चाहिए",
|
||||
"BASE_TYPE_BOOLEAN": "यह फ़ील्ड एक बूलियन होनी चाहिए",
|
||||
"BASE_TYPE_CHOICES": "यह फ़ील्ड एक प्रकार का [[[types]]] होना चाहिए",
|
||||
"BASE_TYPE_CLASS": "यह फ़ील्ड एक प्रकार का [[[types]]] होना चाहिए",
|
||||
"BASE_TYPE_OBJECT": "यह फ़ील्ड एक ऑब्जेक्ट होनी चाहिए",
|
||||
"BASE_TYPE_ARRAY": "यह फ़ील्ड एक ऐरे होनी चाहिए",
|
||||
"UNKOWN_FIELD": "अज्ञात कुंजी: [[key]]",
|
||||
"BASE_TYPE_CONSTANT": "यह क्षेत्र {{value}} होना चाहिए",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "खराब ईमेल एड्रेस",
|
||||
"DATE_TYPE_PARSE": "{{date}} की पदव्याख्या नहीं हो पाई है। ISO8601 होना चाहिए",
|
||||
"BASE_TYPE_BAD_LENGTH": "लंबाई {{length}} के बीच में होनी चाहिए"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "यह फ़ील्ड आवश्यक है",
|
||||
"BASE_TYPE_STRING": "यह फ़ील्ड एक स्ट्रिंग होनी चाहिए",
|
||||
"BASE_TYPE_NUMBER": "यह फ़ील्ड एक संख्या होनी चाहिए",
|
||||
"BASE_TYPE_BIGINT": "यह फ़ील्ड एक बिगिन्ट होनी चाहिए",
|
||||
"BASE_TYPE_BOOLEAN": "यह फ़ील्ड एक बूलियन होनी चाहिए",
|
||||
"BASE_TYPE_CHOICES": "यह फ़ील्ड एक प्रकार का [[[types]]] होना चाहिए",
|
||||
"BASE_TYPE_CLASS": "यह फ़ील्ड एक प्रकार का [[[types]]] होना चाहिए",
|
||||
"BASE_TYPE_OBJECT": "यह फ़ील्ड एक ऑब्जेक्ट होनी चाहिए",
|
||||
"BASE_TYPE_ARRAY": "यह फ़ील्ड एक ऐरे होनी चाहिए",
|
||||
"UNKOWN_FIELD": "अज्ञात कुंजी: [[key]]",
|
||||
"BASE_TYPE_CONSTANT": "यह क्षेत्र {{value}} होना चाहिए",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "खराब ईमेल एड्रेस",
|
||||
"DATE_TYPE_PARSE": "{{date}} की पदव्याख्या नहीं हो पाई है। ISO8601 होना चाहिए",
|
||||
"BASE_TYPE_BAD_LENGTH": "लंबाई {{length}} के बीच में होनी चाहिए"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Ovo polje je obavezno",
|
||||
"BASE_TYPE_STRING": "Ovo polje mora biti niz",
|
||||
"BASE_TYPE_NUMBER": "Ovo polje mora biti broj",
|
||||
"BASE_TYPE_BIGINT": "Ovo polje mora biti bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Ovo polje mora biti boolean",
|
||||
"BASE_TYPE_CHOICES": "Ovo polje mora biti jedno od ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Ovo polje mora biti primjer od {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Ovo polje mora biti objekt",
|
||||
"BASE_TYPE_ARRAY": "Ovo polje mora biti niz",
|
||||
"UNKOWN_FIELD": "Nepoznati ključ: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Ovo polje mora biti {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Nije dobro oblikovana Email adresa",
|
||||
"DATE_TYPE_PARSE": "Nije moguće raščlaniti {{date}}. Treba biti ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Mora biti između {{length}} u duljini"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Ovo polje je obavezno",
|
||||
"BASE_TYPE_STRING": "Ovo polje mora biti niz",
|
||||
"BASE_TYPE_NUMBER": "Ovo polje mora biti broj",
|
||||
"BASE_TYPE_BIGINT": "Ovo polje mora biti bigint",
|
||||
"BASE_TYPE_BOOLEAN": "Ovo polje mora biti boolean",
|
||||
"BASE_TYPE_CHOICES": "Ovo polje mora biti jedno od ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Ovo polje mora biti primjer od {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Ovo polje mora biti objekt",
|
||||
"BASE_TYPE_ARRAY": "Ovo polje mora biti niz",
|
||||
"UNKOWN_FIELD": "Nepoznati ključ: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Ovo polje mora biti {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Nije dobro oblikovana Email adresa",
|
||||
"DATE_TYPE_PARSE": "Nije moguće raščlaniti {{date}}. Treba biti ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Mora biti između {{length}} u duljini"
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
"login": {
|
||||
"INVALID_LOGIN": "Nincs ilyen E-Mail vagy Telefon",
|
||||
"INVALID_PASSWORD": "Érvénytelen jelszó",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
"ACCOUNT_DISABLED": "Ez a fiók le van tiltva"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "Új felhasználók regisztrációja nem engedélyezett",
|
||||
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Ez a mező kötelező",
|
||||
"BASE_TYPE_STRING": "Ennek a mezőnek string-nek kell lennie",
|
||||
"BASE_TYPE_NUMBER": "Ennek a mezőnek számnak kell lennie",
|
||||
"BASE_TYPE_BIGINT": "Ennek a mezőnek bigint-nek kell lennie",
|
||||
"BASE_TYPE_BOOLEAN": "Ennek a mezőnek boolean-nek kell lennie",
|
||||
"BASE_TYPE_CHOICES": "Ennek a mezőnek {{types}} típusúnak kell lennie",
|
||||
"BASE_TYPE_CLASS": "Ennek a mezőnek {{type}} típusúnak kell lennie",
|
||||
"BASE_TYPE_OBJECT": "Ennek a mezőnek object-nek kell lennie",
|
||||
"BASE_TYPE_ARRAY": "Ennek a mezőnek array-nek kell lennie",
|
||||
"UNKOWN_FIELD": "Ismeretlen kulcs: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "A mezőnek {{value}} kell lennie",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Nem jól megformázott email cím",
|
||||
"DATE_TYPE_PARSE": "Nem sikerült elemezni {{date}}. ISO8901-nak kéne lennie",
|
||||
"BASE_TYPE_BAD_LENGTH": "{{length}} között kell lennie hosszban"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Ez a mező kötelező",
|
||||
"BASE_TYPE_STRING": "Ennek a mezőnek string-nek kell lennie",
|
||||
"BASE_TYPE_NUMBER": "Ennek a mezőnek számnak kell lennie",
|
||||
"BASE_TYPE_BIGINT": "Ennek a mezőnek bigint-nek kell lennie",
|
||||
"BASE_TYPE_BOOLEAN": "Ennek a mezőnek boolean-nek kell lennie",
|
||||
"BASE_TYPE_CHOICES": "Ennek a mezőnek {{types}} típusúnak kell lennie",
|
||||
"BASE_TYPE_CLASS": "Ennek a mezőnek {{type}} típusúnak kell lennie",
|
||||
"BASE_TYPE_OBJECT": "Ennek a mezőnek object-nek kell lennie",
|
||||
"BASE_TYPE_ARRAY": "Ennek a mezőnek array-nek kell lennie",
|
||||
"UNKOWN_FIELD": "Ismeretlen kulcs: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "A mezőnek {{value}} kell lennie",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Nem jól megformázott email cím",
|
||||
"DATE_TYPE_PARSE": "Nem sikerült elemezni {{date}}. ISO8901-nak kéne lennie",
|
||||
"BASE_TYPE_BAD_LENGTH": "{{length}} között kell lennie hosszban"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Questo campo è obbligatorio",
|
||||
"BASE_TYPE_STRING": "Questo campo deve essere una stringa",
|
||||
"BASE_TYPE_NUMBER": "Questo campo deve essere un numero",
|
||||
"BASE_TYPE_BIGINT": "Questo campo deve essere un numero intero",
|
||||
"BASE_TYPE_BOOLEAN": "Questo campo deve essere un numero booleano",
|
||||
"BASE_TYPE_CHOICES": "Questo campo deve essere uno di ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Questo campo deve essere un'istanza di {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Questo campo deve essere un oggetto",
|
||||
"BASE_TYPE_ARRAY": "Questo campo deve essere un array",
|
||||
"UNKOWN_FIELD": "Chiave non riconosciuta: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Questo campo deve essere {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Questo indirizzo e-mail non è in un formato valido",
|
||||
"DATE_TYPE_PARSE": "Impossibile analizzare {{date}}. Dovrebbe essere ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Deve essere compreso tra {{length}} in lunghezza"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Questo campo è obbligatorio",
|
||||
"BASE_TYPE_STRING": "Questo campo deve essere una stringa",
|
||||
"BASE_TYPE_NUMBER": "Questo campo deve essere un numero",
|
||||
"BASE_TYPE_BIGINT": "Questo campo deve essere un numero intero",
|
||||
"BASE_TYPE_BOOLEAN": "Questo campo deve essere un numero booleano",
|
||||
"BASE_TYPE_CHOICES": "Questo campo deve essere uno di ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Questo campo deve essere un'istanza di {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Questo campo deve essere un oggetto",
|
||||
"BASE_TYPE_ARRAY": "Questo campo deve essere un array",
|
||||
"UNKOWN_FIELD": "Chiave non riconosciuta: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Questo campo deve essere {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Questo indirizzo e-mail non è in un formato valido",
|
||||
"DATE_TYPE_PARSE": "Impossibile analizzare {{date}}. Dovrebbe essere ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Deve essere compreso tra {{length}} in lunghezza"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "このフィールドは必須項目です",
|
||||
"BASE_TYPE_STRING": "このフィールドは文字列でなければなりません",
|
||||
"BASE_TYPE_NUMBER": "このフィールドは数値でなければなりません",
|
||||
"BASE_TYPE_BIGINT": "このフィールドはbigintでなければなりません",
|
||||
"BASE_TYPE_BOOLEAN": "このフィールドはブール値でなければなりません",
|
||||
"BASE_TYPE_CHOICES": "このフィールドは ({{types}} ) のいずれかでなければなりません",
|
||||
"BASE_TYPE_CLASS": "このフィールドは {{type}} のインスタンスでなければなりません",
|
||||
"BASE_TYPE_OBJECT": "このフィールドはオブジェクトでなければなりません",
|
||||
"BASE_TYPE_ARRAY": "このフィールドは配列でなければなりません",
|
||||
"UNKOWN_FIELD": "不明なキー: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "このフィールドは {{value}} でなければなりません",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "メールアドレスが正しくありません",
|
||||
"DATE_TYPE_PARSE": "{{date}}を解析できませんでした。ISO8601である必要があります",
|
||||
"BASE_TYPE_BAD_LENGTH": "{{length}} 以内でなければなりません"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "このフィールドは必須項目です",
|
||||
"BASE_TYPE_STRING": "このフィールドは文字列でなければなりません",
|
||||
"BASE_TYPE_NUMBER": "このフィールドは数値でなければなりません",
|
||||
"BASE_TYPE_BIGINT": "このフィールドはbigintでなければなりません",
|
||||
"BASE_TYPE_BOOLEAN": "このフィールドはブール値でなければなりません",
|
||||
"BASE_TYPE_CHOICES": "このフィールドは ({{types}} ) のいずれかでなければなりません",
|
||||
"BASE_TYPE_CLASS": "このフィールドは {{type}} のインスタンスでなければなりません",
|
||||
"BASE_TYPE_OBJECT": "このフィールドはオブジェクトでなければなりません",
|
||||
"BASE_TYPE_ARRAY": "このフィールドは配列でなければなりません",
|
||||
"UNKOWN_FIELD": "不明なキー: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "このフィールドは {{value}} でなければなりません",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "メールアドレスが正しくありません",
|
||||
"DATE_TYPE_PARSE": "{{date}}を解析できませんでした。ISO8601である必要があります",
|
||||
"BASE_TYPE_BAD_LENGTH": "{{length}} 以内でなければなりません"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/jv/auth.json
Normal file
16
api/locales/jv/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/jv/common.json
Normal file
18
api/locales/jv/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/kk/auth.json
Normal file
16
api/locales/kk/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/kk/common.json
Normal file
18
api/locales/kk/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "필수로 기입해야 합니다",
|
||||
"BASE_TYPE_STRING": "문자열을 입력해야 합니다",
|
||||
"BASE_TYPE_NUMBER": "숫자를 입력해야 합니다",
|
||||
"BASE_TYPE_BIGINT": "bigint를 입력해야 합니다",
|
||||
"BASE_TYPE_BOOLEAN": "논리값을 입력해야 합니다",
|
||||
"BASE_TYPE_CHOICES": "값의 유형이 ({{types}}) 중 하나여야 합니다",
|
||||
"BASE_TYPE_CLASS": "값의 유형이 {{type}}(이)여야 합니다",
|
||||
"BASE_TYPE_OBJECT": "객체를 입력해야 합니다",
|
||||
"BASE_TYPE_ARRAY": "배열을 입력해야 합니다",
|
||||
"UNKOWN_FIELD": "알 수 없는 키: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "{{value}}(을)를 입력해야 합니다",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "올바른 이메일 주소 형식이 아닙니다",
|
||||
"DATE_TYPE_PARSE": "{{date}} 형식을 분석할 수 없습니다. ISO8601을 따라야 합니다",
|
||||
"BASE_TYPE_BAD_LENGTH": "길이가 {{length}} 사이여야 합니다"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "필수로 기입해야 합니다",
|
||||
"BASE_TYPE_STRING": "문자열을 입력해야 합니다",
|
||||
"BASE_TYPE_NUMBER": "숫자를 입력해야 합니다",
|
||||
"BASE_TYPE_BIGINT": "bigint를 입력해야 합니다",
|
||||
"BASE_TYPE_BOOLEAN": "논리값을 입력해야 합니다",
|
||||
"BASE_TYPE_CHOICES": "값의 유형이 ({{types}}) 중 하나여야 합니다",
|
||||
"BASE_TYPE_CLASS": "값의 유형이 {{type}}(이)여야 합니다",
|
||||
"BASE_TYPE_OBJECT": "객체를 입력해야 합니다",
|
||||
"BASE_TYPE_ARRAY": "배열을 입력해야 합니다",
|
||||
"UNKOWN_FIELD": "알 수 없는 키: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "{{value}}(을)를 입력해야 합니다",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "올바른 이메일 주소 형식이 아닙니다",
|
||||
"DATE_TYPE_PARSE": "{{date}} 형식을 분석할 수 없습니다. ISO8601을 따라야 합니다",
|
||||
"BASE_TYPE_BAD_LENGTH": "길이가 {{length}} 사이여야 합니다"
|
||||
}
|
||||
}
|
||||
|
16
api/locales/ku/auth.json
Normal file
16
api/locales/ku/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/ku/common.json
Normal file
18
api/locales/ku/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/la/auth.json
Normal file
16
api/locales/la/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/la/common.json
Normal file
18
api/locales/la/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
"login": {
|
||||
"INVALID_LOGIN": "El. Paštas ar telefonas nerastas",
|
||||
"INVALID_PASSWORD": "Neteisingas slaptažodis",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
"ACCOUNT_DISABLED": "Ši paskyra išjungta"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "Naujų vartotojų registracija išjungta",
|
||||
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Šis laukelis privalomas",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Neteisingai suformuotas el. pašto adresas",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Šis laukelis privalomas",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Neteisingai suformuotas el. pašto adresas",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
||||
|
16
api/locales/mi/auth.json
Normal file
16
api/locales/mi/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/mi/common.json
Normal file
18
api/locales/mi/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/mn/auth.json
Normal file
16
api/locales/mn/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/mn/common.json
Normal file
18
api/locales/mn/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/mr/auth.json
Normal file
16
api/locales/mr/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/mr/common.json
Normal file
18
api/locales/mr/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dit veld is verplicht",
|
||||
"BASE_TYPE_STRING": "Dit veld moet een tekenreeks zijn",
|
||||
"BASE_TYPE_NUMBER": "Dit veld moet een getal zijn",
|
||||
"BASE_TYPE_BIGINT": "Dit veld moet een bigint zijn",
|
||||
"BASE_TYPE_BOOLEAN": "Dit veld moet een Booleaanse waarde zijn",
|
||||
"BASE_TYPE_CHOICES": "Dit veld moet een van ({{types}} ) zijn",
|
||||
"BASE_TYPE_CLASS": "Dit veld moet een exemplaar zijn van {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Dit veld moet een object zijn",
|
||||
"BASE_TYPE_ARRAY": "Dit veld moet een array zijn",
|
||||
"UNKOWN_FIELD": "Onbekend sleutel: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dit veld moet {{value}} zijn",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Niet een geldig e-mailadres",
|
||||
"DATE_TYPE_PARSE": "Kan {{date}}niet parsen. Moet ISO8601 zijn",
|
||||
"BASE_TYPE_BAD_LENGTH": "Moet tussen {{length}} in lengte zijn"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dit veld is verplicht",
|
||||
"BASE_TYPE_STRING": "Dit veld moet een tekenreeks zijn",
|
||||
"BASE_TYPE_NUMBER": "Dit veld moet een getal zijn",
|
||||
"BASE_TYPE_BIGINT": "Dit veld moet een bigint zijn",
|
||||
"BASE_TYPE_BOOLEAN": "Dit veld moet een Booleaanse waarde zijn",
|
||||
"BASE_TYPE_CHOICES": "Dit veld moet een van ({{types}} ) zijn",
|
||||
"BASE_TYPE_CLASS": "Dit veld moet een exemplaar zijn van {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Dit veld moet een object zijn",
|
||||
"BASE_TYPE_ARRAY": "Dit veld moet een array zijn",
|
||||
"UNKOWN_FIELD": "Onbekend sleutel: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dit veld moet {{value}} zijn",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Niet een geldig e-mailadres",
|
||||
"DATE_TYPE_PARSE": "Kan {{date}}niet parsen. Moet ISO8601 zijn",
|
||||
"BASE_TYPE_BAD_LENGTH": "Moet tussen {{length}} in lengte zijn"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dit veld is verplicht.",
|
||||
"BASE_TYPE_STRING": "Dit veld moet een tekst zijn.",
|
||||
"BASE_TYPE_NUMBER": "Dit veld moet een nummer zijn.",
|
||||
"BASE_TYPE_BIGINT": "Dit veld moet een BigInt zijn.",
|
||||
"BASE_TYPE_BOOLEAN": "Dit veld moet een boolean zijn.",
|
||||
"BASE_TYPE_CHOICES": "Dit veld moet een van de volgende zijn: ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Dit veld moet een instantie zijn van {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Dit veld moet een object zijn.",
|
||||
"BASE_TYPE_ARRAY": "Dit veld moet een array zijn.",
|
||||
"UNKOWN_FIELD": "Onbekende sleutel: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dit veld moet zijn: {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Dit email adres is onjuist.",
|
||||
"DATE_TYPE_PARSE": "Kon {{date}} niet parsen. Moet ISO8601 zijn.",
|
||||
"BASE_TYPE_BAD_LENGTH": "Moet tussen {{length}} in lengte zijn."
|
||||
}
|
||||
}
|
16
api/locales/nn/auth.json
Normal file
16
api/locales/nn/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/nn/common.json
Normal file
18
api/locales/nn/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dette feltet er obligatorisk",
|
||||
"BASE_TYPE_STRING": "Dette feltet må være en streng",
|
||||
"BASE_TYPE_NUMBER": "Dette feltet må være et tall",
|
||||
"BASE_TYPE_BIGINT": "Dette feltet må være en stor",
|
||||
"BASE_TYPE_BOOLEAN": "Dette feltet må være en boolsk verdi",
|
||||
"BASE_TYPE_CHOICES": "Dette feltet må være ett av ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Dette feltet må være en forekomst av {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Dette feltet må være et objekt",
|
||||
"BASE_TYPE_ARRAY": "Dette feltet må være en liste",
|
||||
"UNKOWN_FIELD": "Ukjent nøkkel: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dette feltet må være {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Ikke et gyldig e-postadresse format",
|
||||
"DATE_TYPE_PARSE": "Kunne ikke analysere {{date}}. Skal være ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Må være mellom {{length}} i lengde"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "Dette feltet er obligatorisk",
|
||||
"BASE_TYPE_STRING": "Dette feltet må være en streng",
|
||||
"BASE_TYPE_NUMBER": "Dette feltet må være et tall",
|
||||
"BASE_TYPE_BIGINT": "Dette feltet må være en stor",
|
||||
"BASE_TYPE_BOOLEAN": "Dette feltet må være en boolsk verdi",
|
||||
"BASE_TYPE_CHOICES": "Dette feltet må være ett av ({{types}})",
|
||||
"BASE_TYPE_CLASS": "Dette feltet må være en forekomst av {{type}}",
|
||||
"BASE_TYPE_OBJECT": "Dette feltet må være et objekt",
|
||||
"BASE_TYPE_ARRAY": "Dette feltet må være en liste",
|
||||
"UNKOWN_FIELD": "Ukjent nøkkel: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "Dette feltet må være {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Ikke et gyldig e-postadresse format",
|
||||
"DATE_TYPE_PARSE": "Kunne ikke analysere {{date}}. Skal være ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Må være mellom {{length}} i lengde"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
16
api/locales/pa/auth.json
Normal file
16
api/locales/pa/auth.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
18
api/locales/pa/common.json
Normal file
18
api/locales/pa/common.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be an object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unknown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well-formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,16 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-mail lub telefon nie znaleziony",
|
||||
"INVALID_LOGIN": "E-mail lub telefon nie został znaleziony",
|
||||
"INVALID_PASSWORD": "Nieprawidłowe hasło",
|
||||
"ACCOUNT_DISABLED": "Konto jest zablokowane"
|
||||
"ACCOUNT_DISABLED": "To konto jest nieaktywne"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "Rejestracja nowego użytkownika jest wyłączona",
|
||||
"INVITE_ONLY": "Musisz być zaproszony do rejestracji",
|
||||
"REGISTRATION_DISABLED": "Rejestracja nowych użytkowników jest wyłączona",
|
||||
"INVITE_ONLY": "Aby się zarejestrować, musisz zostać zaproszony",
|
||||
"EMAIL_INVALID": "Nieprawidłowy email",
|
||||
"EMAIL_ALREADY_REGISTERED": "E-mail jest już zarejestrowany",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "Musisz mieć {{years}} lat lub więcej",
|
||||
"CONSENT_REQUIRED": "Musisz zaakceptować Regulamin i Politykę Prywatności.",
|
||||
"USERNAME_TOO_MANY_USERS": "Zbyt wielu użytkowników ma tę nazwę użytkownika, spróbuj inną"
|
||||
"USERNAME_TOO_MANY_USERS": "Zbyt wielu użytkowników ma tę nazwę, spróbuj inną"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +1,18 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "To pole jest wymagane",
|
||||
"BASE_TYPE_STRING": "To pole musi być ciągiem znaków",
|
||||
"BASE_TYPE_NUMBER": "To pole musi być liczbą",
|
||||
"BASE_TYPE_BIGINT": "To pole musi być bigint",
|
||||
"BASE_TYPE_BOOLEAN": "To pole musi być wartością logiczną",
|
||||
"BASE_TYPE_CHOICES": "To pole musi być jednym z ({{types}})",
|
||||
"BASE_TYPE_CLASS": "To pole musi być instancją {{type}}",
|
||||
"BASE_TYPE_OBJECT": "To pole musi być obiektem",
|
||||
"BASE_TYPE_ARRAY": "To pole musi być tablicą",
|
||||
"UNKOWN_FIELD": "Nieznany klucz: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "To pole musi być {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Źle sformułowany adres e-mail",
|
||||
"DATE_TYPE_PARSE": "Nie można przetworzyć {{date}}. Powinno być ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Musi być pomiędzy {{length}}"
|
||||
}
|
||||
}
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "To pole jest wymagane",
|
||||
"BASE_TYPE_STRING": "To pole musi być ciągiem znaków",
|
||||
"BASE_TYPE_NUMBER": "To pole musi być liczbą",
|
||||
"BASE_TYPE_BIGINT": "To pole musi być bigint",
|
||||
"BASE_TYPE_BOOLEAN": "To pole musi być wartością logiczną",
|
||||
"BASE_TYPE_CHOICES": "To pole musi być jednym z ({{types}})",
|
||||
"BASE_TYPE_CLASS": "To pole musi być instancją {{type}}",
|
||||
"BASE_TYPE_OBJECT": "To pole musi być obiektem",
|
||||
"BASE_TYPE_ARRAY": "To pole musi być tablicą",
|
||||
"UNKOWN_FIELD": "Nieznany klucz: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "To pole musi być {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Źle sformułowany adres e-mail",
|
||||
"DATE_TYPE_PARSE": "Nie można przetworzyć {{date}}. Powinno być ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Długość musi wynosić między {{length}}"
|
||||
}
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"field": {
|
||||
"BASE_TYPE_REQUIRED": "This field is required",
|
||||
"BASE_TYPE_STRING": "This field must be a string",
|
||||
"BASE_TYPE_NUMBER": "This field must be a number",
|
||||
"BASE_TYPE_BIGINT": "This field must be a bigint",
|
||||
"BASE_TYPE_BOOLEAN": "This field must be a boolean",
|
||||
"BASE_TYPE_CHOICES": "This field must be one of ({{types}})",
|
||||
"BASE_TYPE_CLASS": "This field must be an instance of {{type}}",
|
||||
"BASE_TYPE_OBJECT": "This field must be a object",
|
||||
"BASE_TYPE_ARRAY": "This field must be an array",
|
||||
"UNKOWN_FIELD": "Unkown key: {{key}}",
|
||||
"BASE_TYPE_CONSTANT": "This field must be {{value}}",
|
||||
"EMAIL_TYPE_INVALID_EMAIL": "Not a well formed email address",
|
||||
"DATE_TYPE_PARSE": "Could not parse {{date}}. Should be ISO8601",
|
||||
"BASE_TYPE_BAD_LENGTH": "Must be between {{length}} in length"
|
||||
}
|
||||
}
|
@ -1,16 +1,16 @@
|
||||
{
|
||||
"login": {
|
||||
"INVALID_LOGIN": "E-mail ou Telefone não encontrado",
|
||||
"INVALID_PASSWORD": "Senha inválida",
|
||||
"ACCOUNT_DISABLED": "Essa conta está desativada"
|
||||
"INVALID_LOGIN": "E-Mail or Phone not found",
|
||||
"INVALID_PASSWORD": "Invalid Password",
|
||||
"ACCOUNT_DISABLED": "This account is disabled"
|
||||
},
|
||||
"register": {
|
||||
"REGISTRATION_DISABLED": "Registro de novos usuários está desativado",
|
||||
"INVITE_ONLY": "Você deve ser convidado para registrar",
|
||||
"EMAIL_INVALID": "E-mail inválido",
|
||||
"EMAIL_ALREADY_REGISTERED": "E-mail já está registrado",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "Você precisa ter {{years}} anos ou mais",
|
||||
"CONSENT_REQUIRED": "Você precisa aceitar os Termos de Serviço e a Política de Privacidade.",
|
||||
"USERNAME_TOO_MANY_USERS": "Muitos usuários têm esse nome de usuário, por favor, tente outro"
|
||||
"REGISTRATION_DISABLED": "New user registration is disabled",
|
||||
"INVITE_ONLY": "You must be invited to register",
|
||||
"EMAIL_INVALID": "Invalid Email",
|
||||
"EMAIL_ALREADY_REGISTERED": "Email is already registered",
|
||||
"DATE_OF_BIRTH_UNDERAGE": "You need to be {{years}} years or older",
|
||||
"CONSENT_REQUIRED": "You must agree to the Terms of Service and Privacy Policy.",
|
||||
"USERNAME_TOO_MANY_USERS": "Too many users have this username, please try another"
|
||||
}
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user