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