Merge branch 'master' into feat/add-slug-to-seo-form
73
.circleci/config.yml
Normal file
|
@ -0,0 +1,73 @@
|
||||||
|
version: 2
|
||||||
|
jobs:
|
||||||
|
build-lint-benchmark:
|
||||||
|
docker:
|
||||||
|
- image: circleci/node:14.4.0-browsers
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
keys:
|
||||||
|
- cache-{{ .Branch }}-{{ checksum "package.json" }}
|
||||||
|
- run:
|
||||||
|
name: Install system dependencies
|
||||||
|
command: sudo apt-get install -y libpng-dev
|
||||||
|
- run:
|
||||||
|
name: Install dependencies
|
||||||
|
command: npm install
|
||||||
|
- save_cache:
|
||||||
|
key: cache-{{ .Branch }}-{{ checksum "package.json" }}
|
||||||
|
paths:
|
||||||
|
- ~/.npm
|
||||||
|
- ~/.cache
|
||||||
|
- run:
|
||||||
|
name: Build application
|
||||||
|
command: npm run build
|
||||||
|
- run:
|
||||||
|
name: Install Lighthouse tools
|
||||||
|
command: sudo npm install -g @lhci/cli
|
||||||
|
- run:
|
||||||
|
name: Lighthouse audit
|
||||||
|
command: npx lhci autorun --upload.target=temporary-public-storage
|
||||||
|
|
||||||
|
cypress:
|
||||||
|
docker:
|
||||||
|
- image: cypress/base:10
|
||||||
|
environment:
|
||||||
|
TERM: xterm
|
||||||
|
parallelism: 1
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- restore_cache:
|
||||||
|
keys:
|
||||||
|
- cache-{{ .Branch }}-{{ checksum "package.json" }}
|
||||||
|
- run:
|
||||||
|
name: Npm CI
|
||||||
|
command: npm ci
|
||||||
|
- run:
|
||||||
|
command: npx cypress verify
|
||||||
|
- save_cache:
|
||||||
|
key: cache-{{ .Branch }}-{{ checksum "package.json" }}
|
||||||
|
paths:
|
||||||
|
- ~/.npm
|
||||||
|
- ~/.cache
|
||||||
|
- persist_to_workspace:
|
||||||
|
root: ~/
|
||||||
|
paths:
|
||||||
|
- project
|
||||||
|
- .cache/Cypress
|
||||||
|
- attach_workspace:
|
||||||
|
at: ~/
|
||||||
|
- run:
|
||||||
|
name: Running E2E tests
|
||||||
|
command: npm run test:e2e:run
|
||||||
|
- store_artifacts:
|
||||||
|
path: cypress/videos
|
||||||
|
- store_artifacts:
|
||||||
|
path: cypress/screenshots
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
qa:
|
||||||
|
jobs:
|
||||||
|
- build-lint-benchmark:
|
||||||
|
context: Lighthouse
|
|
@ -7,7 +7,12 @@
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"sourceType": "module"
|
"sourceType": "module"
|
||||||
},
|
},
|
||||||
"plugins": ["@typescript-eslint", "import", "local-rules"],
|
"plugins": [
|
||||||
|
"@typescript-eslint",
|
||||||
|
"import",
|
||||||
|
"local-rules",
|
||||||
|
"simple-import-sort"
|
||||||
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"@typescript-eslint/adjacent-overload-signatures": "error",
|
"@typescript-eslint/adjacent-overload-signatures": "error",
|
||||||
"@typescript-eslint/array-type": [
|
"@typescript-eslint/array-type": [
|
||||||
|
@ -69,9 +74,9 @@
|
||||||
"eqeqeq": ["error", "smart"],
|
"eqeqeq": ["error", "smart"],
|
||||||
"guard-for-in": "error",
|
"guard-for-in": "error",
|
||||||
"id-blacklist": "off",
|
"id-blacklist": "off",
|
||||||
"import/no-extraneous-dependencies": "off",
|
"import/no-extraneous-dependencies": "off", // imports are handled by simple-import-sort/sort
|
||||||
"import/no-internal-modules": "off",
|
"import/no-internal-modules": "off", // imports are handled by simple-import-sort/sort
|
||||||
"import/order": "error",
|
"import/order": "off", // imports are handled by simple-import-sort/sort
|
||||||
"linebreak-style": "off",
|
"linebreak-style": "off",
|
||||||
"local-rules/named-styles": "error",
|
"local-rules/named-styles": "error",
|
||||||
"max-classes-per-file": "off",
|
"max-classes-per-file": "off",
|
||||||
|
@ -113,7 +118,6 @@
|
||||||
],
|
],
|
||||||
"no-debugger": "error",
|
"no-debugger": "error",
|
||||||
"no-duplicate-case": "error",
|
"no-duplicate-case": "error",
|
||||||
"no-duplicate-imports": "error",
|
|
||||||
"no-empty": "error",
|
"no-empty": "error",
|
||||||
"no-eval": "error",
|
"no-eval": "error",
|
||||||
"no-extra-bind": "error",
|
"no-extra-bind": "error",
|
||||||
|
@ -149,22 +153,13 @@
|
||||||
"prefer-object-spread": "error",
|
"prefer-object-spread": "error",
|
||||||
"quote-props": "off",
|
"quote-props": "off",
|
||||||
"radix": "error",
|
"radix": "error",
|
||||||
|
"simple-import-sort/sort": ["error"],
|
||||||
|
"sort-imports": "off", // imports are handled by simple-import-sort/sort
|
||||||
"sort-keys": "warn",
|
"sort-keys": "warn",
|
||||||
"space-before-function-paren": "off",
|
"space-before-function-paren": "off",
|
||||||
"spaced-comment": "error",
|
"spaced-comment": "error",
|
||||||
"use-isnan": "error",
|
"use-isnan": "error",
|
||||||
"valid-typeof": "off"
|
"valid-typeof": "off"
|
||||||
// "@typescript-eslint/tslint/config": [
|
|
||||||
// "error",
|
|
||||||
// {
|
|
||||||
// "rules": {
|
|
||||||
// "jsdoc-format": [true, "check-multiline-start"],
|
|
||||||
// "no-reference-import": true,
|
|
||||||
// "object-literal-sort-keys": true,
|
|
||||||
// "prefer-conditional-expression": true
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
},
|
},
|
||||||
"ignorePatterns": ["node_modules/", "**/types/**/*"]
|
"ignorePatterns": ["node_modules/", "**/types/**/*"]
|
||||||
}
|
}
|
||||||
|
|
2
.github/CODEOWNERS
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
# Restrict Test Environment Deployment Workflows to be Approved by Cloud Team
|
||||||
|
.github/workflows/test-env* @mirumee/saleor-cloud
|
24
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -17,6 +17,30 @@ about: Create a report to help us improve
|
||||||
### Screenshots
|
### Screenshots
|
||||||
<!-- If applicable, add screenshots to help explain your problem. -->
|
<!-- If applicable, add screenshots to help explain your problem. -->
|
||||||
|
|
||||||
|
### Http request and response from inspector
|
||||||
|
<!-- Tutorial how to find this in Chrome https://developers.google.com/web/tools/chrome-devtools/network -->
|
||||||
|
|
||||||
|
```
|
||||||
|
// insert request and response here
|
||||||
|
```
|
||||||
|
|
||||||
|
### Console output
|
||||||
|
<!-- How to open console in browsers https://support.monday.com/hc/en-us/articles/360002197259-How-to-Open-the-Developer-Console-in-your-Browser -->
|
||||||
|
|
||||||
|
```
|
||||||
|
// insert console output here
|
||||||
|
```
|
||||||
|
|
||||||
**System information**
|
**System information**
|
||||||
|
|
||||||
Operating system:
|
Operating system:
|
||||||
|
- [ ] Windows
|
||||||
|
- [ ] Linux
|
||||||
|
- [ ] MacOS
|
||||||
|
- [ ] Other
|
||||||
|
|
||||||
Browser:
|
Browser:
|
||||||
|
- [ ] Safari
|
||||||
|
- [ ] Chrome
|
||||||
|
- [ ] Edge
|
||||||
|
- [ ] Other
|
||||||
|
|
8
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -18,5 +18,13 @@ greatly reduce the amount of work needed to review your work. -->
|
||||||
1. [ ] Translated strings are extracted.
|
1. [ ] Translated strings are extracted.
|
||||||
1. [ ] Number of API calls is optimized.
|
1. [ ] Number of API calls is optimized.
|
||||||
1. [ ] The changes are tested.
|
1. [ ] The changes are tested.
|
||||||
|
1. [ ] Data-test are added for new elements.
|
||||||
1. [ ] Type definitions are up to date.
|
1. [ ] Type definitions are up to date.
|
||||||
1. [ ] Changes are mentioned in the changelog.
|
1. [ ] Changes are mentioned in the changelog.
|
||||||
|
|
||||||
|
### Test environment config
|
||||||
|
|
||||||
|
<!-- Do not remove this section. It is required to properly setup test instance.
|
||||||
|
Modify API_URI if you want test instance to use custom backend. -->
|
||||||
|
|
||||||
|
API_URI=https://master.staging.saleor.rocks/graphql/
|
||||||
|
|
54
.github/workflows/codeql-analysis.yml
vendored
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
name: "CodeQL"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master, ]
|
||||||
|
pull_request:
|
||||||
|
# The branches below must be a subset of the branches above
|
||||||
|
branches: [master]
|
||||||
|
schedule:
|
||||||
|
- cron: '0 10 * * 5'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
analyze:
|
||||||
|
name: Analyze
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
# We must fetch at least the immediate parents so that if this is
|
||||||
|
# a pull request then we can checkout the head.
|
||||||
|
fetch-depth: 2
|
||||||
|
|
||||||
|
# If this run was triggered by a pull request event, then checkout
|
||||||
|
# the head of the pull request instead of the merge commit.
|
||||||
|
- run: git checkout HEAD^2
|
||||||
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
|
|
||||||
|
# Initializes the CodeQL tools for scanning.
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v1
|
||||||
|
# Override language selection by uncommenting this and choosing your languages
|
||||||
|
# with:
|
||||||
|
# languages: go, javascript, csharp, python, cpp, java
|
||||||
|
|
||||||
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
|
- name: Autobuild
|
||||||
|
uses: github/codeql-action/autobuild@v1
|
||||||
|
|
||||||
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
|
# 📚 https://git.io/JvXDl
|
||||||
|
|
||||||
|
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||||
|
# and modify them (or add more) to build your code if your project
|
||||||
|
# uses a compiled language
|
||||||
|
|
||||||
|
#- run: |
|
||||||
|
# make bootstrap
|
||||||
|
# make release
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v1
|
37
.github/workflows/test-env-cleanup.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
name: TEST-ENV-CLEANUP
|
||||||
|
# Remove test instance for closed pull requests
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [closed]
|
||||||
|
branches: ["*"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
cleanup:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: rlespinasse/github-slug-action@2.0.0
|
||||||
|
- name: Set domain
|
||||||
|
# Set test instance domain based on branch name slug
|
||||||
|
run: |
|
||||||
|
echo "::set-env name=domain::${{ env.GITHUB_HEAD_REF_SLUG_URL }}.dashboard.saleor.rocks"
|
||||||
|
|
||||||
|
- name: Configure AWS credentials
|
||||||
|
uses: aws-actions/configure-aws-credentials@v1
|
||||||
|
with:
|
||||||
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
|
||||||
|
|
||||||
|
- name: Remove S3 directory
|
||||||
|
run: aws s3 rm --recursive s3://${{ secrets.AWS_TEST_DEPLOYMENT_BUCKET }}/${{ env.domain }}/
|
||||||
|
|
||||||
|
- name: Invalidate cache
|
||||||
|
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_TEST_CF_DIST_ID }} --paths "/${{ env.domain }}/*"
|
||||||
|
|
||||||
|
- name: Mark deployment as deactivated
|
||||||
|
uses: bobheadxi/deployments@v0.4.2
|
||||||
|
with:
|
||||||
|
step: deactivate-env
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
env: ${{ env.GITHUB_HEAD_REF_SLUG_URL }}
|
114
.github/workflows/test-env-deploy.yml
vendored
Normal file
|
@ -0,0 +1,114 @@
|
||||||
|
name: TEST-ENV-DEPLOYMENT
|
||||||
|
# Build and deploy test instance for every pull request
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
# trigger on "edited" to update instance when configuration changes in PR description
|
||||||
|
types: [opened, reopened, synchronize]
|
||||||
|
branches: ["*"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
if: github.event.pull_request.head.repo.full_name == 'mirumee/saleor-dashboard'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- uses: rlespinasse/github-slug-action@2.0.0
|
||||||
|
|
||||||
|
- name: Start deployment
|
||||||
|
uses: bobheadxi/deployments@v0.4.2
|
||||||
|
id: deployment
|
||||||
|
with:
|
||||||
|
step: start
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
env: ${{ env.GITHUB_HEAD_REF_SLUG_URL }}
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
|
||||||
|
- name: Start storybook deployment
|
||||||
|
uses: bobheadxi/deployments@v0.4.2
|
||||||
|
id: storybook-deployment
|
||||||
|
with:
|
||||||
|
step: start
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
env: storybook ${{ env.GITHUB_HEAD_REF_SLUG_URL }}
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: cache-node-modules
|
||||||
|
with:
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{ runner.os }}-qa-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-qa-${{ env.cache-name }}-
|
||||||
|
${{ runner.os }}-qa-
|
||||||
|
${{ runner.os }}-
|
||||||
|
|
||||||
|
- name: Install deps
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
|
||||||
|
- name: Get custom API_URI
|
||||||
|
id: api_uri
|
||||||
|
# Search for API_URI in PR description
|
||||||
|
env:
|
||||||
|
pull_request_body: ${{ github.event.pull_request.body }}
|
||||||
|
prefix: API_URI=
|
||||||
|
pattern: (http|https)://[a-zA-Z0-9.-]+/graphql/?
|
||||||
|
run: |
|
||||||
|
echo "::set-output name=custom_api_uri::$(echo $pull_request_body | grep -Eo "$prefix$pattern" | sed s/$prefix// | head -n 1)"
|
||||||
|
|
||||||
|
- name: Run build
|
||||||
|
env:
|
||||||
|
# Use custom API_URI or the default one
|
||||||
|
API_URI: ${{ steps.api_uri.outputs.custom_api_uri || 'https://master.staging.saleor.rocks/graphql/' }}
|
||||||
|
APP_MOUNT_URI: /
|
||||||
|
STATIC_URL: /
|
||||||
|
run: |
|
||||||
|
npm run build
|
||||||
|
|
||||||
|
- name: Run build storybook
|
||||||
|
run: |
|
||||||
|
npm run build-storybook
|
||||||
|
|
||||||
|
- name: Set domain
|
||||||
|
# Set test instance domain based on branch name slug
|
||||||
|
run: |
|
||||||
|
echo "::set-env name=domain::${{ env.GITHUB_HEAD_REF_SLUG_URL }}.dashboard.saleor.rocks"
|
||||||
|
|
||||||
|
- name: Configure AWS credentials
|
||||||
|
uses: aws-actions/configure-aws-credentials@v1
|
||||||
|
with:
|
||||||
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
|
||||||
|
|
||||||
|
- name: Deploy to S3
|
||||||
|
run: |
|
||||||
|
aws s3 sync ./build/dashboard s3://${{ secrets.AWS_TEST_DEPLOYMENT_BUCKET }}/${{ env.domain }}
|
||||||
|
aws s3 sync ./build/storybook s3://${{ secrets.AWS_TEST_DEPLOYMENT_BUCKET }}/${{ env.domain }}/storybook
|
||||||
|
|
||||||
|
- name: Invalidate cache
|
||||||
|
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.AWS_TEST_CF_DIST_ID }} --paths "/${{ env.domain }}/*"
|
||||||
|
|
||||||
|
- name: Update deployment status
|
||||||
|
uses: bobheadxi/deployments@v0.4.2
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
step: finish
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
status: ${{ job.status }}
|
||||||
|
env_url: https://${{ env.domain }}/
|
||||||
|
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
||||||
|
|
||||||
|
- name: Update storybook deployment status
|
||||||
|
uses: bobheadxi/deployments@v0.4.2
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
step: finish
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
status: ${{ job.status }}
|
||||||
|
env_url: https://${{ env.domain }}/storybook/index.html
|
||||||
|
deployment_id: ${{ steps.storybook-deployment.outputs.deployment_id }}
|
122
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
name: QA
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: ["*"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check-lock:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Validate lock file
|
||||||
|
run: |
|
||||||
|
npx lockfile-lint --path package-lock.json --allowed-hosts npm yarn
|
||||||
|
|
||||||
|
tsc-and-linters:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: cache-node-modules
|
||||||
|
with:
|
||||||
|
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{ runner.os }}-qa-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-qa-${{ env.cache-name }}-
|
||||||
|
${{ runner.os }}-qa-
|
||||||
|
${{ runner.os }}-
|
||||||
|
|
||||||
|
- name: Install deps
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
|
||||||
|
- name: Run tsc
|
||||||
|
run: |
|
||||||
|
npm run check-types
|
||||||
|
|
||||||
|
- name: Run lint
|
||||||
|
run: |
|
||||||
|
npm run lint
|
||||||
|
git diff --exit-code ./src
|
||||||
|
|
||||||
|
jest-tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: cache-node-modules
|
||||||
|
with:
|
||||||
|
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{ runner.os }}-qa-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-qa-${{ env.cache-name }}-
|
||||||
|
${{ runner.os }}-qa-
|
||||||
|
${{ runner.os }}-
|
||||||
|
|
||||||
|
- name: Install deps
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
|
||||||
|
- name: Run jest
|
||||||
|
run: |
|
||||||
|
npm run test
|
||||||
|
|
||||||
|
cypress-run:
|
||||||
|
runs-on: ubuntu-16.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
- name: Cypress run
|
||||||
|
uses: cypress-io/github-action@v2
|
||||||
|
env:
|
||||||
|
API_URI: ${{ secrets.API_URI }}
|
||||||
|
APP_MOUNT_URI: ${{ secrets.APP_MOUNT_URI }}
|
||||||
|
CYPRESS_USER_NAME: ${{ secrets.CYPRESS_USER_NAME }}
|
||||||
|
CYPRESS_USER_PASSWORD: ${{ secrets.CYPRESS_USER_PASSWORD }}
|
||||||
|
with:
|
||||||
|
build: npm run build
|
||||||
|
start: npx http-server -a localhost -p 9000 build/dashboard
|
||||||
|
wait-on: http://localhost:9000/
|
||||||
|
wait-on-timeout: 120
|
||||||
|
- uses: actions/upload-artifact@v1
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: cypress-videos
|
||||||
|
path: cypress/videos
|
||||||
|
|
||||||
|
translation-messages:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Cache node modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
env:
|
||||||
|
cache-name: cache-node-modules
|
||||||
|
with:
|
||||||
|
# npm cache files are stored in `~/.npm` on Linux/macOS
|
||||||
|
path: ~/.npm
|
||||||
|
key: ${{ runner.os }}-qa-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-qa-${{ env.cache-name }}-
|
||||||
|
${{ runner.os }}-qa-
|
||||||
|
${{ runner.os }}-
|
||||||
|
|
||||||
|
- name: Install deps
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
|
||||||
|
- name: Check message extraction
|
||||||
|
run: |
|
||||||
|
npm run extract-messages
|
||||||
|
git diff --exit-code ./locale
|
1
.gitignore
vendored
|
@ -14,6 +14,7 @@
|
||||||
!.npmrc
|
!.npmrc
|
||||||
!.plop
|
!.plop
|
||||||
!.prettierignore
|
!.prettierignore
|
||||||
|
!.prettierrc
|
||||||
!.pylintrc
|
!.pylintrc
|
||||||
!.travis*
|
!.travis*
|
||||||
!.testcafe
|
!.testcafe
|
||||||
|
|
4
.prettierrc
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"arrowParens": "avoid",
|
||||||
|
"trailingComma": "none"
|
||||||
|
}
|
|
@ -1 +0,0 @@
|
||||||
export const MAIN_PAGE_URL = "http://localhost:9000/";
|
|
|
@ -1,2 +0,0 @@
|
||||||
export const DEFAULT_USER_EMAIL = "admin@example.com";
|
|
||||||
export const DEFAULT_USER_PASSWORD = "admin";
|
|
|
@ -1,11 +0,0 @@
|
||||||
import { Selector, t } from "testcafe";
|
|
||||||
|
|
||||||
export default class HomePage {
|
|
||||||
constructor() {
|
|
||||||
this.header = Selector('[data-tc="home-header"]');
|
|
||||||
this.catalogMenu = Selector('[data-tc="Catalog"]');
|
|
||||||
this.productsSubMenu = Selector(
|
|
||||||
'[data-tc="catalogue"]>[aria-label="products"]'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
import { Selector, t } from "testcafe";
|
|
||||||
|
|
||||||
export default class LoginPage {
|
|
||||||
constructor() {
|
|
||||||
this.email = Selector('[data-tc="email"]');
|
|
||||||
this.password = Selector('[data-tc="password"]');
|
|
||||||
this.submitButton = Selector('[data-tc="submit"]');
|
|
||||||
}
|
|
||||||
|
|
||||||
async performLogin(putEmail, putPassword) {
|
|
||||||
await t
|
|
||||||
.typeText(this.email, putEmail)
|
|
||||||
.typeText(this.password, putPassword)
|
|
||||||
.click(this.submitButton);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
import * as verifier from "../Verifications/loginPageVerifications";
|
|
||||||
import { MAIN_PAGE_URL } from "../Data/systemData";
|
|
||||||
|
|
||||||
fixture`Login Tests`.page(MAIN_PAGE_URL);
|
|
||||||
|
|
||||||
verifier.verifyEmailAndPasswordDisplayed();
|
|
||||||
verifier.verifyIfUserCanLogin();
|
|
|
@ -1,20 +0,0 @@
|
||||||
import LoginPage from "../Models/loginPageModel";
|
|
||||||
import HomePage from "../Models/homePageModel";
|
|
||||||
import { DEFAULT_USER_EMAIL, DEFAULT_USER_PASSWORD } from "../Data/userData";
|
|
||||||
|
|
||||||
const loginPage = new LoginPage();
|
|
||||||
const homePage = new HomePage();
|
|
||||||
|
|
||||||
export function verifyEmailAndPasswordDisplayed() {
|
|
||||||
test("Verify that Email and Password are displayed", async t => {
|
|
||||||
await t.expect(loginPage.email.exists).ok();
|
|
||||||
await t.expect(loginPage.password.exists).ok();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export function verifyIfUserCanLogin() {
|
|
||||||
test("PerformLogin", async t => {
|
|
||||||
await loginPage.performLogin(DEFAULT_USER_EMAIL, DEFAULT_USER_PASSWORD);
|
|
||||||
await t.expect(homePage.header.exists).ok();
|
|
||||||
});
|
|
||||||
}
|
|
23
.travis.yml
|
@ -1,23 +0,0 @@
|
||||||
dist: xenial
|
|
||||||
language: node_js
|
|
||||||
sudo: false
|
|
||||||
|
|
||||||
node_js:
|
|
||||||
- "12.12"
|
|
||||||
|
|
||||||
branches:
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
- /next\/.*/
|
|
||||||
|
|
||||||
script:
|
|
||||||
- npm run build
|
|
||||||
- npm test -- --ci --coverage
|
|
||||||
|
|
||||||
env:
|
|
||||||
global:
|
|
||||||
- APP_MOUNT_URI="/"
|
|
||||||
- API_URI="/graphql/"
|
|
||||||
|
|
||||||
after_success:
|
|
||||||
- codecov
|
|
39
CHANGELOG.md
|
@ -4,10 +4,48 @@ All notable, unreleased changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
- Add sku column to fulfillment cards - #538 by @dominik-zeglen
|
||||||
|
- Migrate product base price to variant prices - #555 by @orzechdev
|
||||||
|
- Migrate old notifications to the new ones - #587 by @AlicjaSzu
|
||||||
|
- Add background task manager - #574 by @dominik-zeglen
|
||||||
|
- Handle task failure and fix task duplication - #588 by @dominik-zeglen
|
||||||
|
- Move fragments to separate directory to avoid circular imports - #592 by @dominik-zeglen
|
||||||
|
- Add order invoices management - #570 by @orzechdev
|
||||||
|
- Add Cypress e2e runner - #584 by @krzysztofwolski
|
||||||
|
- create Apps - #599 by @AlicjaSzu
|
||||||
|
- Refactor authorization - #624 by @dominik-zeglen
|
||||||
|
- Fix minor bugs - #628 by @dominik-zeglen
|
||||||
|
- Add navigator button - #635 by @dominik-zeglen
|
||||||
|
- Update to newest schema - #638 by @dominik-zeglen
|
||||||
|
- Fix missing save button - #636 by @dominik-zeglen
|
||||||
|
- Fix user avatars - #639 by @dominik-zeglen
|
||||||
|
- Reset modal state after closing - #644 by @dominik-zeglen
|
||||||
|
- Fix incorrect messages - #643 by @dominik-zeglen
|
||||||
|
- Do not use devserver to run cypress tests - #650 by @dominik-zeglen
|
||||||
|
- Fix updating product that has no variants - #649 by @dominik-zeglen
|
||||||
|
- Update checkbox design - #651 by @dominik-zeglen
|
||||||
|
- Add warehouse choice - #646 by @dominik-zeglen
|
||||||
|
- Fix user management modal actions - #637 by @eaglesemanation
|
||||||
|
- Fix navigator button rendering on safari browser - #656 by @dominik-zeglen
|
||||||
|
- Use hooks instead of containers with render props in product mutations - #667 by @dominik-zeglen
|
||||||
|
- Add apps and permission groups to navigator - #678 by @dominik-zeglen
|
||||||
|
- Add metadata - #670 by @dominik-zeglen
|
||||||
|
- Update order history information - #680 by @dominik-zeglen
|
||||||
|
- Add metadata editor to creator views - #684 by @dominik-zeglen
|
||||||
|
- Update product visibility card component - #679 by @AlicjaSzu
|
||||||
|
- Update savebar design - #690 by @dominik-zeglen
|
||||||
|
- Add metadata to orders - #688 by @dominik-zeglen
|
||||||
|
- Add lazyload to locales - #692 by @eaglesemanation
|
||||||
|
- Fix not closed address update modal with two confirmations - #699 by @orzechdev
|
||||||
|
- Update schema with PositiveDecimal type - #695 by @AlicjaSzu
|
||||||
|
- Restyle side menu - #697 by @dominik-zeglen
|
||||||
|
- Add error info when fetching taxes - #701 by @dominik-zeglen
|
||||||
|
|
||||||
## 2.10.1
|
## 2.10.1
|
||||||
|
|
||||||
- Add weight field and fix warehouse country selection - #597 by @dominik-zeglen
|
- Add weight field and fix warehouse country selection - #597 by @dominik-zeglen
|
||||||
- Fix weight based rate update - #604 by @dominik-zeglen
|
- Fix weight based rate update - #604 by @dominik-zeglen
|
||||||
|
- Add product export - #620 by @dominik-zeglen
|
||||||
|
|
||||||
## 2.10.0
|
## 2.10.0
|
||||||
|
|
||||||
|
@ -58,6 +96,7 @@ All notable, unreleased changes to this project will be documented in this file.
|
||||||
- Update product stock management to newest design - #515 by @dominik-zeglen
|
- Update product stock management to newest design - #515 by @dominik-zeglen
|
||||||
- Handle untracked products - #523 by @dominik-zeglen
|
- Handle untracked products - #523 by @dominik-zeglen
|
||||||
- Display correct error if there were no graphql errors - #525 by @dominik-zeglen
|
- Display correct error if there were no graphql errors - #525 by @dominik-zeglen
|
||||||
|
- Fix updating order details on address change #711 - by @orzechdev
|
||||||
|
|
||||||
## 2.0.0
|
## 2.0.0
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Saleor Dashboard
|
# Saleor Dashboard
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
A GraphQL-powered, single-page dashboard application for [Saleor](https://github.com/mirumee/saleor/).
|
A GraphQL-powered, single-page dashboard application for [Saleor](https://github.com/mirumee/saleor/).
|
||||||
|
|
||||||
|
@ -87,3 +87,5 @@ To build the application bundle run:
|
||||||
```
|
```
|
||||||
$ npm run build
|
$ npm run build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Crafted with ❤️ by [Mirumee Software](https://mirumee.com)
|
||||||
|
|
4
assets/images/activate-icon.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="24" height="24"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5ZM12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24ZM9.75 5.53473C7.07559 6.46535 5.15625 9.00854 5.15625 12C5.15625 15.7797 8.2203 18.8438 12 18.8438C15.7797 18.8438 18.8438 15.7797 18.8438 12C18.8438 8.9737 16.8794 6.40617 14.1562 5.50287V7.10915C16.0335 7.938 17.3438 9.816 17.3438 12C17.3438 14.9513 14.9513 17.3438 12 17.3438C9.04873 17.3438 6.65625 14.9513 6.65625 12C6.65625 9.85254 7.92298 8.00093 9.75 7.15163V5.53473ZM11.25 4.125V11.1562H12.75V4.125H11.25Z" fill="#06847B"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 864 B |
36
assets/images/app-install-error.svg
Normal file
After Width: | Height: | Size: 35 KiB |
7
assets/images/empty-metadata.svg
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<svg width="91" height="88" viewBox="0 0 91 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M1 68.4054L43.7676 47.1814V1L1 22.224V68.4054Z" fill="#F1F6F6" stroke="#28234A" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M60.038 41.9077L87.9299 28.1653V10.2969L60.038 24.0393V41.9077Z" fill="#F1F6F6" stroke="#28234A" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M62.8279 86.998L90.2549 73.1248V45.625L62.8279 59.4981V86.998Z" fill="#F1F6F6" stroke="#28234A" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M46.5574 55.3909L60.0385 48.8828" stroke="#06847B" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M53.5302 43.7656V60.9656" stroke="#06847B" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 909 B |
5
assets/images/error-icon.svg
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||||
|
<circle cx="16" cy="16" r="16" fill="#F5FAFB"/>
|
||||||
|
<path fill="#FE6D76" d="M10.273 9L23 21.728 21.727 23 9 10.273z"/>
|
||||||
|
<path fill="#FE6D76" d="M23 10.272L10.273 23 9 21.727 21.727 9z"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 268 B |
3
assets/images/info-icon.svg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 32C24.8366 32 32 24.8366 32 16C32 7.16344 24.8366 0 16 0C7.16344 0 0 7.16344 0 16C0 24.8366 7.16344 32 16 32ZM15 20V8H17V20H15ZM15 24V22H17V24H15Z" fill="#CAD8DF"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 321 B |
|
@ -95,7 +95,7 @@
|
||||||
<stop stop-color="#412D79"/>
|
<stop stop-color="#412D79"/>
|
||||||
<stop offset="1" stop-color="#1988BE"/>
|
<stop offset="1" stop-color="#1988BE"/>
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
<linearGradient id="paint6_linear" x1="-nan" y1="-nan" x2="-nan" y2="-nan" gradientUnits="userSpaceOnUse">
|
<linearGradient id="paint6_linear" x1="-99999" y1="-99999" x2="-99999" y2="-99999" gradientUnits="userSpaceOnUse">
|
||||||
<stop stop-color="white" stop-opacity="0"/>
|
<stop stop-color="white" stop-opacity="0"/>
|
||||||
<stop offset="1" stop-color="white"/>
|
<stop offset="1" stop-color="white"/>
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
|
@ -115,7 +115,7 @@
|
||||||
<stop stop-color="white" stop-opacity="0"/>
|
<stop stop-color="white" stop-opacity="0"/>
|
||||||
<stop offset="1" stop-color="#0DB3B1"/>
|
<stop offset="1" stop-color="#0DB3B1"/>
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
<linearGradient id="paint11_linear" x1="-nan" y1="-nan" x2="-nan" y2="-nan" gradientUnits="userSpaceOnUse">
|
<linearGradient id="paint11_linear" x1="-99999" y1="-99999" x2="-99999" y2="-99999" gradientUnits="userSpaceOnUse">
|
||||||
<stop stop-color="white" stop-opacity="0"/>
|
<stop stop-color="white" stop-opacity="0"/>
|
||||||
<stop offset="1" stop-color="white"/>
|
<stop offset="1" stop-color="white"/>
|
||||||
</linearGradient>
|
</linearGradient>
|
||||||
|
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
5
assets/images/logo-sidebar-light.svg
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="36" height="33" viewBox="0 0 36 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.6072 33C22.4977 33 23.9789 30.6214 23.9789 27.3629C23.9789 23.3549 20.3772 22.6056 17.3814 22.1167C15.0924 21.7258 14.0489 21.5304 14.0489 20.1292C14.0489 19.0867 14.9577 18.6954 16.4389 18.6954C18.2566 18.6954 18.7614 19.2168 18.9298 20.7482L23.7097 20.0314C23.3055 16.7404 21.4542 15.0787 16.5735 15.0787C11.2216 15.0787 9.33654 17.2293 9.33654 20.6504C9.30299 25.082 13.4768 25.5382 16.5735 26.0594C18.492 26.418 19.2328 26.7437 19.2328 28.0146C19.2328 29.0573 18.5933 29.5135 16.6745 29.5135C14.5539 29.5135 13.9144 29.1551 13.6451 27.4281L9 28.1124C9.43753 31.599 11.4908 33 16.6072 33Z" fill="#28234A"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.7838 0L13.4043 6.64709H29.1638L35.5433 0H19.7838Z" fill="#8AC4EB"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.15911 2.31187C6.27552 2.1958 6.4332 2.13062 6.59759 2.13062H27.3248C27.5761 2.13062 27.8026 2.28211 27.8987 2.51437C27.9947 2.74664 27.9412 3.01388 27.7632 3.19134L21.7867 9.1508C21.6703 9.26687 21.5126 9.33205 21.3482 9.33205H0.621008C0.369679 9.33205 0.143131 9.18056 0.0471181 8.94829C-0.0488948 8.71603 0.00456112 8.44879 0.182532 8.27133L6.15911 2.31187ZM6.85429 3.37259L2.12325 8.09007H21.0915L25.8225 3.37259H6.85429Z" fill="#28234A"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -1 +0,0 @@
|
||||||
<svg viewBox="0 0 538 182" xmlns="http://www.w3.org/2000/svg" xmlns:serif="http://www.serif.com/" fill-rule="evenodd" clip-rule="evenodd"><g serif:id="Saleor OS"><path fill="none" d="M0 0h537.903v181.963H0z"/><clipPath id="a"><path d="M0 0h537.903v181.963H0z"/></clipPath><g serif:id="Layer 1" clip-path="url(#a)"><path d="M28.649 0L-.001 28.949l145.042-.001 28.65-28.949L28.649 0z" fill="#fff"/><path d="M83.256 181.766c35.637 0 44.598-14.329 44.598-33.957 0-24.144-21.79-28.658-39.914-31.603-13.848-2.356-20.161-3.533-20.161-11.973 0-6.281 5.498-8.637 14.459-8.637 10.997 0 14.051 3.141 15.07 12.366l28.917-4.318c-2.445-19.825-13.645-29.836-43.173-29.836-32.378 0-43.782 12.955-43.782 33.565-.203 26.696 25.048 29.443 43.782 32.583 11.607 2.161 16.089 4.122 16.089 11.778 0 6.282-3.869 9.03-15.478 9.03-12.829 0-16.698-2.159-18.327-12.563l-28.102 4.122c2.647 21.003 15.069 29.443 46.022 29.443m93.212-21.59c-13.645 0-18.531-2.945-18.531-12.759 0-8.833 4.886-12.366 19.549-12.366h14.662v10.207c0 9.814-4.887 14.918-15.68 14.918m-12.626 21.591c15.884 0 23.012-5.104 28.103-12.563v11.189h28.712v-71.056c0-23.751-9.164-35.724-40.931-35.724-30.75 0-41.542 8.636-45.819 29.835l28.51 4.319c1.832-9.029 4.48-11.778 16.291-11.778 11.404 0 13.237 4.711 13.237 12.563v7.263h-13.441c-36.451 0-48.874 10.992-48.874 33.368 0 21.984 11.201 32.584 34.212 32.584M227.989 180.392h29.325V28.949l-29.325 28.948v122.495zm65.165-63.99v-5.299c0-9.225 4.277-15.507 17.106-15.507 12.422 0 16.496 5.3 16.496 15.507v5.299h-33.602zm17.106 65.561c33.805 0 42.765-15.703 44.801-31.406l-27.898-4.122c-1.222 9.421-3.055 14.329-16.903 14.329-14.05 0-17.106-6.871-17.106-15.899v-8.637h61.907v-18.844c0-26.302-10.386-43.772-44.801-43.772-34.007 0-45.615 17.666-45.615 40.043v28.265c0 21.789 11.811 40.043 45.615 40.043m99.173 0c33.6 0 47.447-17.077 47.447-40.043v-28.265c0-23.358-13.847-40.043-47.447-40.043-33.602 0-47.041 16.685-47.041 40.043v28.265c0 22.966 13.236 40.043 47.041 40.043m0-22.769c-11.812 0-17.717-6.085-17.717-15.899v-30.228c0-10.011 5.905-16.096 17.717-16.096 11.811 0 18.123 6.085 18.123 16.096v30.228c0 9.814-6.312 15.899-18.123 15.899M509.253 103.568h-15.718v76.21h-29.324v-76.21l28.65-28.949h45.042l-28.65 28.949z" fill="#fff"/></g></g></svg>
|
|
Before Width: | Height: | Size: 2.2 KiB |
3
assets/images/menu-apps-icon.svg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 0H14V10H24V0ZM0 14H10V24H0V14ZM14 14H24V24H14V14ZM4 0H6V4L10 4V6H6V10H4V6H0V4L4 4V0Z" fill="currentColor"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 264 B |
|
@ -1,3 +1,3 @@
|
||||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 0L32 5.74429V26.5168L16 32L0 26.5168V5.74429L16 0ZM11.0139 3.1253L24.6012 7.682L29.4131 6.15075L16 1.3352L11.0139 3.1253ZM30.7451 7.04569L16.6275 11.5382V30.4565L30.7451 25.6184V7.04569ZM15.3726 30.4565V11.5382L1.2549 7.04569V25.6184L15.3726 30.4565ZM2.58688 6.15075L16 10.4191L22.5732 8.32736L9.10504 3.81061L2.58688 6.15075Z" fill="#3D3D3D"/>
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.46875 4.07018L11.9062 8.09357L23.4375 4.07018L11.9062 0L0.46875 4.07018ZM0 6.22222L10.6875 9.87134V24L0 20.3509V6.22222ZM24 6.22222L13.3125 9.87134V24L24 20.3509V6.22222Z" fill="currentColor" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 501 B After Width: | Height: | Size: 350 B |
|
@ -1,3 +1,3 @@
|
||||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8982 1.55016L13.3465 4.12742L14.18 4.02305C14.6746 3.96111 15.179 3.92913 15.6915 3.92913C16.1878 3.92913 16.6765 3.95911 17.156 4.01724L17.9864 4.11791L19.4293 1.55016L23.3858 3.05016L22.4034 5.93429L23.1024 6.48141C23.8614 7.07548 24.5475 7.75873 25.1448 8.51532L25.6426 9.1458L28.6985 8.39818L30.2711 12.2122L27.5599 13.7725L27.6537 14.5887C27.7061 15.0455 27.7332 15.5105 27.7332 15.9823C27.7332 16.4721 27.704 16.9545 27.6476 17.428L27.5491 18.2536L30.3925 19.8654L28.6492 23.7375L25.5782 22.9128L25.0672 23.5465C24.5021 24.2473 23.8602 24.8834 23.1545 25.4421L22.4726 25.9819L23.356 28.6976L19.2006 30.1655L17.8515 27.87L17.0457 27.9602C16.6016 28.0098 16.1498 28.0354 15.6915 28.0354C15.1849 28.0354 14.6861 28.0042 14.1968 27.9436L13.3645 27.8406L11.8982 30.4498L7.94167 28.9498L8.94434 26.0062L8.24955 25.4587C7.51643 24.881 6.85187 24.2198 6.27026 23.4896L5.75832 22.8469L2.8981 23.6227L1.4998 19.8502L3.8209 18.1465L3.73487 17.4227C3.6788 16.9508 3.6499 16.4702 3.6499 15.9823C3.6499 15.5144 3.67647 15.0532 3.72809 14.6001L3.82093 13.7852L1.63811 12.5273L3.53763 8.66363L5.69954 9.20458L6.19976 8.56429C6.7957 7.80148 7.48143 7.11226 8.24092 6.51265L8.93454 5.96504L7.94167 3.05016L11.8982 1.55016ZM24.9586 2.30961L18.8666 0L17.3064 2.77633C16.7771 2.71216 16.2382 2.67913 15.6915 2.67913C15.127 2.67913 14.5707 2.71436 14.0247 2.78273L12.4609 0L6.3689 2.30961L7.46636 5.53155C6.62851 6.19302 5.87212 6.95327 5.21473 7.79473L2.86141 7.2059L1.89925e-05 13.026L2.48612 14.4587C2.42916 14.9586 2.3999 15.467 2.3999 15.9823C2.3999 16.5196 2.43173 17.0495 2.4936 17.5702L0 19.4004L2.12299 25.1282L5.29251 24.2684C5.93408 25.0739 6.66711 25.8032 7.47588 26.4405L6.3689 29.6904L12.4609 32L14.0433 29.1841C14.5833 29.251 15.1334 29.2854 15.6915 29.2854C16.1963 29.2854 16.6946 29.2572 17.1847 29.2024L18.6452 31.6874L24.9218 29.4702L23.9303 26.4222C24.7089 25.8059 25.4169 25.1042 26.0402 24.3312L29.3524 25.2206L32 19.3398L28.8888 17.5761C28.9511 17.0535 28.9832 16.5217 28.9832 15.9823C28.9832 15.4627 28.9534 14.9501 28.8955 14.4461L31.8445 12.7489L29.4447 6.92875L26.1259 7.74071C25.4669 6.90612 24.7101 6.15246 23.8729 5.49709L24.9586 2.30961ZM20.625 16C20.625 18.5543 18.5543 20.625 16 20.625C13.4457 20.625 11.375 18.5543 11.375 16C11.375 13.4457 13.4457 11.375 16 11.375C18.5543 11.375 20.625 13.4457 20.625 16ZM16 21.875C19.2447 21.875 21.875 19.2447 21.875 16C21.875 12.7553 19.2447 10.125 16 10.125C12.7553 10.125 10.125 12.7553 10.125 16C10.125 19.2447 12.7553 21.875 16 21.875Z" fill="#3D3D3D"/>
|
<path d="M20.7101 8.77354L20.3013 7.80451C21.7011 4.64075 21.6083 4.54674 21.3365 4.2723L19.5483 2.52524L19.3708 2.37571H19.1637C19.0544 2.37571 18.7283 2.37571 16.0101 3.6086L15.0096 3.20523C13.7167 0 13.5841 0 13.2055 0H10.6829C10.3047 0 10.1577 -0.000423225 8.95855 3.21665L7.96243 3.62108C6.12551 2.84545 5.04821 2.4528 4.75748 2.4528L4.51902 2.46021L2.59563 4.346C2.30377 4.62044 2.20192 4.71721 3.68195 7.83202L3.2747 8.79766C0 10.0636 0 10.1864 0 10.5738V13.0472C0 13.4352 0 13.5719 3.28571 14.7489L3.69288 15.7128C2.29333 18.8749 2.38735 18.9698 2.65925 19.2417L4.44743 20.9908L4.62531 21.1438H4.83345C4.94101 21.1438 5.26312 21.1438 7.98514 19.9083L8.9838 20.3145C10.277 23.5193 10.4098 23.5185 10.7893 23.5185H13.3122C13.698 23.5185 13.8349 23.5185 15.0376 20.303L16.0388 19.8982C17.8736 20.674 18.9485 21.0679 19.2374 21.0679L19.4775 21.0612L21.4156 19.1638C21.6913 18.8856 21.7879 18.7894 20.3161 15.6875L20.7205 14.721C23.9999 13.4538 23.9999 13.3208 23.9999 12.9422V10.4715C23.9996 10.0823 23.9996 9.94634 20.7101 8.77354ZM11.9994 15.8738C9.68608 15.8738 7.80247 14.0268 7.80247 11.7573C7.80247 9.4895 9.68615 7.64426 11.9994 7.64426C14.3114 7.64426 16.191 9.48993 16.191 11.7573C16.1906 14.0268 14.311 15.8738 11.9994 15.8738Z" fill="currentColor"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.3 KiB |
|
@ -1,3 +1,3 @@
|
||||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.5 9C23.5 13.1421 20.1421 16.5 16 16.5C11.8579 16.5 8.5 13.1421 8.5 9C8.5 4.85786 11.8579 1.5 16 1.5C20.1421 1.5 23.5 4.85786 23.5 9ZM25 9C25 13.9706 20.9706 18 16 18C11.0294 18 7 13.9706 7 9C7 4.02944 11.0294 0 16 0C20.9706 0 25 4.02944 25 9ZM1.60633 30.5C2.33418 25.4116 6.71029 21.5 12 21.5H20C25.2897 21.5 29.6658 25.4116 30.3937 30.5H1.60633ZM20 20C26.1194 20 31.169 24.5805 31.9072 30.5C31.9684 30.9914 32 31.492 32 32H0C0 31.492 0.031565 30.9914 0.0928406 30.5C0.830988 24.5805 5.88057 20 12 20H20Z" fill="#3D3D3D"/>
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.625 5.625C17.625 8.7316 15.1066 11.25 12 11.25C8.8934 11.25 6.375 8.7316 6.375 5.625C6.375 2.5184 8.8934 0 12 0C15.1066 0 17.625 2.5184 17.625 5.625ZM15 14.0625C19.5896 14.0625 23.3768 17.4979 23.9304 21.9375C23.9763 22.306 24 23.619 24 24H0C0 23.619 0.0236738 22.306 0.0696305 21.9375C0.623241 17.4979 4.41043 14.0625 9 14.0625H15Z" fill="currentColor"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 679 B After Width: | Height: | Size: 512 B |
|
@ -1,3 +1,3 @@
|
||||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 32L0 17.9399L18.5 0H28.125L32 3.75V13.2063L15 32ZM2.1737 17.9214L3.27153 16.8569L15.9976 28.6611L14.9118 29.8614L2.1737 17.9214ZM4.34987 15.8112L17.0039 27.5486L30.5 12.6285V4.38577L27.518 1.5H19.1079L4.34987 15.8112ZM26.75 6.375C26.75 7.13439 26.1344 7.75 25.375 7.75C24.6156 7.75 24 7.13439 24 6.375C24 5.61561 24.6156 5 25.375 5C26.1344 5 26.75 5.61561 26.75 6.375ZM28.25 6.375C28.25 7.96282 26.9628 9.25 25.375 9.25C23.7872 9.25 22.5 7.96282 22.5 6.375C22.5 4.78718 23.7872 3.5 25.375 3.5C26.9628 3.5 28.25 4.78718 28.25 6.375Z" fill="#3D3D3D"/>
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.7809 0H21.2346L24.0003 2.7647L24.0003 9.21617L13.0608 20.1518L3.84137 10.9356L14.7809 0ZM0 14.7756L1.85855 12.9171L11.0849 22.1435L9.22637 24.002L0 14.7756ZM19.0596 6.06587C19.8892 6.06587 20.5618 5.39355 20.5618 4.5642C20.5618 3.73485 19.8892 3.06253 19.0596 3.06253C18.2299 3.06253 17.5574 3.73485 17.5574 4.5642C17.5574 5.39355 18.2299 6.06587 19.0596 6.06587Z" fill="currentColor"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 706 B After Width: | Height: | Size: 543 B |
|
@ -1,3 +1,3 @@
|
||||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.8049 0H4.19513L0 8.9457V9.11158C0 12.3944 1.44708 14.6199 3.375 15.6208V32H28.75V15.6154C30.617 14.5943 32 12.3699 32 9.11158V8.9457L27.8049 0ZM4.875 30.5058V16.1355C5.14409 16.1849 5.41713 16.2136 5.69211 16.2214C7.14186 16.2621 8.59031 15.705 9.6709 14.5647C10.0776 14.1355 10.4264 13.6302 10.7034 13.0527C11.0076 13.6455 11.3916 14.1633 11.8384 14.6023C13.002 15.7461 14.5468 16.3113 16.0801 16.3113C17.6133 16.3113 19.1581 15.7461 20.3217 14.6023C20.7652 14.1665 21.1469 13.6531 21.45 13.0657C21.7212 13.6389 22.0617 14.1415 22.4584 14.5697C23.5212 15.7169 24.95 16.2864 26.3852 16.2513C26.6768 16.2442 26.9658 16.2128 27.25 16.1575V30.5058H21.625V18.179H10.5V30.5058H4.875ZM12 30.5058H20.125V19.6731H12V30.5058ZM9.92301 9.83658H1.52765C1.78923 13.1794 3.86009 14.6752 5.73439 14.7278C6.76627 14.7568 7.79945 14.3629 8.58008 13.5391C9.3228 12.7553 9.87435 11.5402 9.92301 9.83658ZM1.9385 8.34241L5.15002 1.49416H26.85L30.0615 8.34241H1.9385ZM30.4734 9.83658H22.237C22.2849 11.544 22.8289 12.7664 23.5608 13.5564C24.3292 14.3858 25.342 14.7822 26.3484 14.7576C28.1717 14.713 30.2183 13.2302 30.4734 9.83658ZM20.7298 9.83658H11.4303C11.4832 11.5221 12.0764 12.7372 12.8919 13.5387C13.7545 14.3866 14.9116 14.8171 16.0801 14.8171C17.2485 14.8171 18.4056 14.3866 19.2682 13.5387C20.0837 12.7372 20.6769 11.5221 20.7298 9.83658Z" fill="#3D3D3D"/>
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.6875 0H0V13.4062H10.6875V0ZM24 10.5938H13.3125V24H24V10.5938ZM13.3125 0H24V7.96875H13.3125V0ZM10.6875 16.0312H0V24H10.6875V16.0312Z" fill="currentColor"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 311 B |
|
@ -1,3 +1,3 @@
|
||||||
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.712 3.5H0V2H6.913L7.78154 5.875H32L28.0625 21.375H10.3559H9.5625H9.23912L8.44877 23H28V24.5H6.05121L8.30067 19.875H9.24194L6.36634 6.4194L5.712 3.5ZM10.3125 28.75C10.9683 28.75 11.5 28.2183 11.5 27.5625C11.5 26.9067 10.9683 26.375 10.3125 26.375C9.65666 26.375 9.125 26.9067 9.125 27.5625C9.125 28.2183 9.65666 28.75 10.3125 28.75ZM10.3125 30.25C11.7968 30.25 13 29.0468 13 27.5625C13 26.0782 11.7968 24.875 10.3125 24.875C8.82823 24.875 7.625 26.0782 7.625 27.5625C7.625 29.0468 8.82823 30.25 10.3125 30.25ZM26 27.5625C26 28.2183 25.4683 28.75 24.8125 28.75C24.1567 28.75 23.625 28.2183 23.625 27.5625C23.625 26.9067 24.1567 26.375 24.8125 26.375C25.4683 26.375 26 26.9067 26 27.5625ZM27.5 27.5625C27.5 29.0468 26.2968 30.25 24.8125 30.25C23.3282 30.25 22.125 29.0468 22.125 27.5625C22.125 26.0782 23.3282 24.875 24.8125 24.875C26.2968 24.875 27.5 26.0782 27.5 27.5625ZM30.0713 7.375L26.8959 19.875H10.7758L8.10444 7.375H30.0713Z" fill="#3D3D3D"/>
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M24 1H0V3.16803H3.74269V11.9344C3.74269 13.6311 4.8655 14.998 6.78363 14.998H21.1462V12.9242H6.78363C6.26901 12.9242 5.80117 12.5 5.80117 11.9344V10.6619H20.5848L24 2.93238V1ZM8.98257 20.8893C8.98257 22.6073 7.60015 24 5.89485 24C4.18955 24 2.80713 22.6073 2.80713 20.8893C2.80713 19.1714 4.18955 17.7787 5.89485 17.7787C7.60015 17.7787 8.98257 19.1714 8.98257 20.8893ZM20.8656 24C22.5709 24 23.9533 22.6073 23.9533 20.8893C23.9533 19.1714 22.5709 17.7787 20.8656 17.7787C19.1603 17.7787 17.7778 19.1714 17.7778 20.8893C17.7778 22.6073 19.1603 24 20.8656 24Z" fill="currentColor" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 735 B |
|
@ -1,3 +1,3 @@
|
||||||
<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.7001 116.365L16.2586 97.9453H35.3012C37.679 103.982 40.6312 110.258 44.1417 116.908C39.855 115.408 35.8027 113.412 32.0522 110.987L29.628 109.42L9.7001 116.365ZM60.0469 120.019V97.9453H41.6706C44.3861 104.516 47.8275 111.48 52.0086 119.038C54.6277 119.548 57.3114 119.88 60.0469 120.019ZM65.9531 97.9453H84.4393C81.7269 104.508 78.2902 111.464 74.1154 119.012C71.4563 119.537 68.7309 119.877 65.9531 120.019V97.9453ZM65.9531 92.0391V65.9531H92.1007C91.7928 74.3536 90.0135 82.8472 86.7212 92.0391H65.9531ZM60.0469 60.0469V33.2227H39.8646C36.3428 42.7476 34.4238 51.4762 34.0351 60.0469H60.0469ZM65.9531 33.2227V60.0469H92.0748C91.6862 51.4762 89.7671 42.7476 86.2453 33.2227H65.9531ZM65.9531 27.3164V5.98131C68.6242 6.1174 71.2468 6.43707 73.8086 6.92794C77.8557 14.2212 81.2134 20.9606 83.9011 27.3164H65.9531ZM60.0469 27.3164V5.98131C57.4185 6.11523 54.8371 6.4269 52.3144 6.90453C48.2615 14.2068 44.8994 20.9538 42.2089 27.3164H60.0469ZM60.0469 92.0391V65.9531H34.0093C34.3172 74.3536 36.0964 82.8472 39.3887 92.0391H60.0469ZM108.153 97.9453C101.496 106.535 92.4421 113.173 81.9944 116.858C85.4934 110.227 88.4369 103.967 90.8088 97.9453H108.153ZM112.168 92.0391H92.9758C96.0234 83.0451 97.7207 74.5074 98.0106 65.9531H120.019C119.535 75.4455 116.733 84.3258 112.168 92.0391ZM120.019 60.0469H97.9867C97.6203 51.3086 95.7869 42.5348 92.5229 33.2227H111.723C116.551 41.1054 119.52 50.2502 120.019 60.0469ZM107.571 27.3164H90.2923C87.9424 21.4966 85.0648 15.4383 81.668 9.02798C91.9513 12.5842 100.902 18.9966 107.571 27.3164ZM33.587 33.2227C30.323 42.5348 28.4897 51.3086 28.1233 60.0469H5.98131C6.48047 50.2502 9.44907 41.1054 14.2769 33.2227H33.587ZM44.4665 8.98166C41.059 15.4091 38.1732 21.4826 35.8176 27.3164H18.4285C25.127 18.9603 34.1267 12.5284 44.4665 8.98166ZM28.0994 65.9531C28.3892 74.5074 30.0865 83.0451 33.1341 92.0391H13.8313C9.26639 84.3283 6.46449 75.4524 5.98119 65.9531H28.0994ZM0 126L10.1935 97.3714C3.7467 87.4871 0 75.6811 0 63C0 28.2061 28.2061 0 63 0C97.7939 0 126 28.2061 126 63C126 97.7939 97.7939 126 63 126C50.4117 126 38.6858 122.308 28.8459 115.948L0 126Z" fill="#3D3D3D"/>
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0019 0C15.2067 0 18.2197 1.24805 20.4859 3.51413C22.752 5.7803 24 8.79328 24 11.9981C24 15.2029 22.752 18.2159 20.4859 20.482C18.2197 22.7481 15.2067 23.9962 12.0019 23.9962C9.99525 23.9962 8.01872 23.4932 6.26752 22.5393L0 24L1.46067 17.7325C0.506766 15.9813 0.00384375 14.0048 0.00384375 11.9981C0.00384375 8.79328 1.25189 5.7803 3.51802 3.51413C5.78414 1.24805 8.79712 0 12.0019 0ZM2.81588 11.9981C2.81588 17.0633 6.9367 21.1841 12.0019 21.1841C17.0671 21.1841 21.188 17.0633 21.188 11.9981C21.188 6.93286 17.0671 2.81203 12.0019 2.81203C6.9367 2.81203 2.81588 6.93286 2.81588 11.9981ZM14.3709 6.31687C13.8901 5.35519 13.3072 4.68942 12.705 4.39261V11.295H15.5253C15.445 9.40683 15.0424 7.65994 14.3709 6.31687ZM12.705 12.7011V12.7011V19.6035C13.3071 19.3067 13.8901 18.6409 14.3709 17.6792C15.0424 16.3363 15.445 14.5893 15.5253 12.7011H12.705ZM9.63291 17.6793C8.96142 16.3363 8.55886 14.5894 8.47856 12.7011H11.2989V19.6035C10.6967 19.3067 10.1137 18.641 9.63291 17.6793ZM9.63291 6.31687C8.96142 7.65984 8.55886 9.40678 8.47856 11.295H11.2989V4.39265C10.6967 4.68947 10.1137 5.35528 9.63291 6.31687ZM15.6285 5.68805C15.4868 5.40446 15.3364 5.1406 15.1786 4.89666C17.686 6.02274 19.4927 8.43886 19.7498 11.295H16.9324C16.8493 9.1882 16.3938 7.21866 15.6285 5.68805ZM16.9324 12.7011C16.8493 14.808 16.3938 16.7775 15.6285 18.3081C15.4867 18.5917 15.3364 18.8556 15.1786 19.0995C17.6859 17.9735 19.4927 15.5573 19.7498 12.7011H16.9324ZM7.07137 12.7011C7.15453 14.8079 7.61001 16.7775 8.3753 18.3081C8.51714 18.5917 8.66742 18.8556 8.8252 19.0995C6.31786 17.9734 4.51106 15.5573 4.254 12.7011H7.07137ZM4.254 11.295H7.07137C7.15453 9.1882 7.60997 7.21866 8.3753 5.68805C8.51714 5.40446 8.66742 5.1406 8.8252 4.89666C6.31781 6.02269 4.51111 8.43881 4.254 11.295Z" fill="currentColor"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.9 KiB |
1
assets/images/navigator.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg width="12" height="18" viewBox="0 0 12 18" fill="none" xmlns="http://www.w3.org/2000/svg" ><path d="M0 11.2324L6.99609 0L6.1875 6.78516H11.6895L4.79883 18L5.51953 11.2324H0Z" fill="currentColor" /></svg>
|
After Width: | Height: | Size: 208 B |
4
assets/images/plus-icon.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="18" cy="18" r="17.5" fill="white" stroke="#EAEAEA"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 10H17V17H10V19H17V26H19V19H26V17H19V10Z" fill="#06847B"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 279 B |
4
assets/images/settings-icon.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="24" height="24"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.2149 2L21 5.78505L18.6131 8.17192L14.8281 4.38686L17.2149 2ZM16.8054 4.38686L18.6131 6.19457L19.0227 5.78505L17.2149 3.97734L16.8054 4.38686ZM14.4186 4.79638L18.2036 8.58144L6.78505 20H3V16.2149L14.4186 4.79638ZM4.39819 16.7941V17.6131L5.38686 18.6018H6.2059L16.2263 8.58144L14.4186 6.77372L4.39819 16.7941Z" fill="#06847B"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 513 B |
4
assets/images/success-icon.svg
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="16" cy="16" r="16" fill="#F5FAFB"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.9167 10.306L12.5417 23L7 16.0699L8.48477 14.8326L12.611 20.0641L22.4919 9L23.9167 10.306Z" fill="#60DAA0"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 312 B |
3
assets/images/support-icon.svg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="18" height="12" viewBox="0 0 18 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 7.58853L1.5 3.83853V10.5H16.5V3.83853L9 7.58853ZM18 12H0V0H18V12ZM16.5 1.5V2.16147L9 5.91147L1.5 2.16147V1.5H16.5Z" fill="#06847B"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 288 B |
5
assets/images/warning-icon.svg
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="16" cy="16" r="16" fill="#F5FAFB"/>
|
||||||
|
<rect x="10.2726" y="9.00024" width="17.9987" height="1.79987" transform="rotate(45 10.2726 9.00024)" fill="#D98E1D"/>
|
||||||
|
<rect x="23" y="10.2727" width="17.9987" height="1.79987" transform="rotate(135 23 10.2727)" fill="#D98E1D"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 380 B |
7
cypress.json
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"baseUrl": "http://localhost:9000",
|
||||||
|
"defaultCommandTimeout": 15000,
|
||||||
|
"requestTimeout": 15000,
|
||||||
|
"viewportWidth": 1400,
|
||||||
|
"viewportHeight": 660
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
/* eslint-disable sort-keys */
|
||||||
|
export const LEFT_MENU_SELECTORS = {
|
||||||
|
catalog: "[data-test-id='catalogue']"
|
||||||
|
};
|
9
cypress/elements/account/login-selectors.js
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
export const LOGIN_SELECTORS = {
|
||||||
|
accountSettings: "[data-test=accountSettingsButton]",
|
||||||
|
emailAddressInput: "input[name='email']",
|
||||||
|
emailPasswordInput: "input[name='password']",
|
||||||
|
signInButton: "[data-test=submit]",
|
||||||
|
userMenu: "[data-test=userMenu]",
|
||||||
|
warningCredentialMessage: "[data-test=loginErrorMessage]",
|
||||||
|
welcomePage: "[data-test=welcomeHeader]"
|
||||||
|
};
|
13
cypress/elements/catalog/product-selectors.js
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
/* eslint-disable sort-keys */
|
||||||
|
export const PRODUCTS_SELECTORS = {
|
||||||
|
products: "[data-test='submenu-item-label'][data-test-id='products']",
|
||||||
|
createProductBtn: "[data-test='add-product']",
|
||||||
|
productNameInput: "[name='name']",
|
||||||
|
productTypeInput: "[data-test='product-type']",
|
||||||
|
categoryInput: "[data-test='category']",
|
||||||
|
categoryItem: "[data-test='singleautocomplete-select-option']",
|
||||||
|
firstCategoryItem: "#downshift-0-item-0",
|
||||||
|
visibleRadioBtn: "[name='isPublished']",
|
||||||
|
saveBtn: "[data-test='button-bar-confirm']",
|
||||||
|
confirmationMsg: "[data-test='notification']"
|
||||||
|
};
|
38
cypress/integration/login_form.js
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
import { LOGIN_SELECTORS } from "../elements/account/login-selectors";
|
||||||
|
|
||||||
|
// <reference types="cypress" />
|
||||||
|
describe("User authorization", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.clearSessionData();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should successfully log in an user", () => {
|
||||||
|
cy.visit("/");
|
||||||
|
cy.loginUser();
|
||||||
|
cy.get(LOGIN_SELECTORS.welcomePage);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should fail for wrong password", () => {
|
||||||
|
cy.visit("/")
|
||||||
|
.get(LOGIN_SELECTORS.emailAddressInput)
|
||||||
|
.type("admin@example.com")
|
||||||
|
.get(LOGIN_SELECTORS.emailPasswordInput)
|
||||||
|
.type("wrong-password")
|
||||||
|
.get(LOGIN_SELECTORS.signInButton)
|
||||||
|
.click()
|
||||||
|
.get(LOGIN_SELECTORS.warningCredentialMessage);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should successfully log out an user", () => {
|
||||||
|
cy.window().then(win => {
|
||||||
|
win.sessionStorage.clear();
|
||||||
|
});
|
||||||
|
cy.visit("/");
|
||||||
|
cy.loginUser();
|
||||||
|
cy.get(LOGIN_SELECTORS.userMenu)
|
||||||
|
.click()
|
||||||
|
.get(LOGIN_SELECTORS.accountSettings)
|
||||||
|
.click();
|
||||||
|
cy.location("pathname").should("contains", "/staff/");
|
||||||
|
});
|
||||||
|
});
|
43
cypress/integration/products.js
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
import { LEFT_MENU_SELECTORS } from "../elements/account/left-menu/left-menu-selectors";
|
||||||
|
import { PRODUCTS_SELECTORS } from "../elements/catalog/product-selectors";
|
||||||
|
|
||||||
|
// <reference types="cypress" />
|
||||||
|
describe("Products", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.clearSessionData().loginUserViaRequest();
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should add new visible product", () => {
|
||||||
|
cy.visit("/")
|
||||||
|
.get(LEFT_MENU_SELECTORS.catalog)
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.products)
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.createProductBtn)
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.productNameInput)
|
||||||
|
.click()
|
||||||
|
.type("Visible test product")
|
||||||
|
.get(PRODUCTS_SELECTORS.productTypeInput)
|
||||||
|
.click()
|
||||||
|
.type("Cushion")
|
||||||
|
.get(PRODUCTS_SELECTORS.categoryItem)
|
||||||
|
.should("have.length", 1)
|
||||||
|
.get(PRODUCTS_SELECTORS.firstCategoryItem)
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.categoryInput)
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.categoryItem)
|
||||||
|
.first()
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.visibleRadioBtn)
|
||||||
|
.first()
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.saveBtn)
|
||||||
|
.click()
|
||||||
|
.get(PRODUCTS_SELECTORS.confirmationMsg, {
|
||||||
|
timeout: 1000
|
||||||
|
})
|
||||||
|
.contains("Product created");
|
||||||
|
});
|
||||||
|
});
|
23
cypress/integration/warehouse.js
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
// <reference types="cypress" />
|
||||||
|
describe("Warehouse settings", () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.clearSessionData();
|
||||||
|
});
|
||||||
|
|
||||||
|
xit("Warehouse section visible in the configuration", () => {
|
||||||
|
cy.visit("/configuration/")
|
||||||
|
.loginUser()
|
||||||
|
.get("[data-test-id=warehouses][data-test=settingsSubsection]")
|
||||||
|
.click();
|
||||||
|
cy.location("pathname").should("eq", "/warehouses/");
|
||||||
|
});
|
||||||
|
|
||||||
|
xit("Editing warehouse is available", () => {
|
||||||
|
cy.visit(`/warehouses`)
|
||||||
|
.loginUser()
|
||||||
|
.get("[data-test=editButton]")
|
||||||
|
.first()
|
||||||
|
.click()
|
||||||
|
.get("[data-test=generalInformationSection]");
|
||||||
|
});
|
||||||
|
});
|
22
cypress/plugins/index.js
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
// / <reference types="cypress" />
|
||||||
|
// ***********************************************************
|
||||||
|
// This example plugins/index.js can be used to load plugins
|
||||||
|
//
|
||||||
|
// You can change the location of this file or turn off loading
|
||||||
|
// the plugins file with the 'pluginsFile' configuration option.
|
||||||
|
//
|
||||||
|
// You can read more here:
|
||||||
|
// https://on.cypress.io/plugins-guide
|
||||||
|
// ***********************************************************
|
||||||
|
|
||||||
|
// This function is called when a project is opened or re-opened (e.g. due to
|
||||||
|
// the project's config changing)
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @type {Cypress.PluginConfig}
|
||||||
|
*/
|
||||||
|
module.exports = (on, config) => {
|
||||||
|
config.env.API_URI = process.env.API_URI;
|
||||||
|
|
||||||
|
return config;
|
||||||
|
};
|
19
cypress/support/index.js
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
import "./user";
|
||||||
|
|
||||||
|
Cypress.Commands.add("clearSessionData", () => {
|
||||||
|
// Because of known cypress bug, not all local storage data are cleared.
|
||||||
|
// Here is workaround to ensure tests have no side effects.
|
||||||
|
// Suggested usage:
|
||||||
|
|
||||||
|
// beforeEach(() => {
|
||||||
|
// cy.clearSessionData();
|
||||||
|
// });
|
||||||
|
|
||||||
|
cy.clearCookies();
|
||||||
|
cy.clearLocalStorage();
|
||||||
|
cy.visit("/", {
|
||||||
|
onBeforeLoad: win => {
|
||||||
|
win.sessionStorage.clear();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
48
cypress/support/user/index.js
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
/* eslint-disable sort-keys */
|
||||||
|
import { LOGIN_SELECTORS } from "../../elements/account/login-selectors";
|
||||||
|
|
||||||
|
Cypress.Commands.add("loginUser", () =>
|
||||||
|
cy
|
||||||
|
.get(LOGIN_SELECTORS.emailAddressInput)
|
||||||
|
.type(Cypress.env("USER_NAME"))
|
||||||
|
.get(LOGIN_SELECTORS.emailPasswordInput)
|
||||||
|
.type(Cypress.env("USER_PASSWORD"), { log: false })
|
||||||
|
.get(LOGIN_SELECTORS.signInButton)
|
||||||
|
.click()
|
||||||
|
);
|
||||||
|
|
||||||
|
Cypress.Commands.add("loginUserViaRequest", () => {
|
||||||
|
const logInMutationQuery = `mutation TokenAuth($email: String!, $password: String!) {
|
||||||
|
tokenCreate(email: $email, password: $password) {
|
||||||
|
token
|
||||||
|
errors: accountErrors {
|
||||||
|
code
|
||||||
|
field
|
||||||
|
message
|
||||||
|
__typename
|
||||||
|
}
|
||||||
|
user {
|
||||||
|
id
|
||||||
|
__typename
|
||||||
|
}
|
||||||
|
__typename
|
||||||
|
}
|
||||||
|
}`;
|
||||||
|
|
||||||
|
return cy
|
||||||
|
.request({
|
||||||
|
method: "POST",
|
||||||
|
url: Cypress.env("API_URI"),
|
||||||
|
body: {
|
||||||
|
operationName: "TokenAuth",
|
||||||
|
variables: {
|
||||||
|
email: Cypress.env("USER_NAME"),
|
||||||
|
password: Cypress.env("USER_PASSWORD")
|
||||||
|
},
|
||||||
|
query: logInMutationQuery
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(resp => {
|
||||||
|
window.sessionStorage.setItem("auth", resp.body.data.tokenCreate.token);
|
||||||
|
});
|
||||||
|
});
|
9
lighthouserc.json
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"ci": {
|
||||||
|
"collect": {
|
||||||
|
"url": ["http://localhost:3000/"],
|
||||||
|
"numberOfRuns": 5,
|
||||||
|
"staticDistDir": "./build/dashboard"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -560,7 +560,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_back": {
|
"src_dot_back": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Back"
|
"string": "عودة"
|
||||||
},
|
},
|
||||||
"src_dot_cancel": {
|
"src_dot_cancel": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -738,11 +738,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionCreatePage_dot_1815688500": {
|
"src_dot_collections_dot_components_dot_CollectionCreatePage_dot_1815688500": {
|
||||||
"context": "collection",
|
"context": "collection",
|
||||||
"string": "since {date}"
|
"string": "منذ {date}"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionCreatePage_dot_2001551496": {
|
"src_dot_collections_dot_components_dot_CollectionCreatePage_dot_2001551496": {
|
||||||
"context": "collection",
|
"context": "collection",
|
||||||
"string": "will be visible from {date}"
|
"string": "ستكون ظاهر من {date}"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionCreatePage_dot_946315389": {
|
"src_dot_collections_dot_components_dot_CollectionCreatePage_dot_946315389": {
|
||||||
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذه الفئة"
|
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذه الفئة"
|
||||||
|
@ -753,11 +753,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionDetailsPage_dot_1815688500": {
|
"src_dot_collections_dot_components_dot_CollectionDetailsPage_dot_1815688500": {
|
||||||
"context": "collection",
|
"context": "collection",
|
||||||
"string": "since {date}"
|
"string": "منذ {date}"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionDetailsPage_dot_2001551496": {
|
"src_dot_collections_dot_components_dot_CollectionDetailsPage_dot_2001551496": {
|
||||||
"context": "collection",
|
"context": "collection",
|
||||||
"string": "will be visible from {date}"
|
"string": "ستكون ظاهر من {date}"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionDetailsPage_dot_2906897537": {
|
"src_dot_collections_dot_components_dot_CollectionDetailsPage_dot_2906897537": {
|
||||||
"context": "switch button",
|
"context": "switch button",
|
||||||
|
@ -1076,7 +1076,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_ErrorPage_dot_1723676032": {
|
"src_dot_components_dot_ErrorPage_dot_1723676032": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Back to home"
|
"string": "العودة إلى الصفحة الرئيسية"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_ErrorPage_dot_2736139139": {
|
"src_dot_components_dot_ErrorPage_dot_2736139139": {
|
||||||
"string": "Ooops!..."
|
"string": "Ooops!..."
|
||||||
|
@ -1114,7 +1114,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Filter_dot_2683154806": {
|
"src_dot_components_dot_Filter_dot_2683154806": {
|
||||||
"context": "is filter range or value",
|
"context": "is filter range or value",
|
||||||
"string": "equal to"
|
"string": "يساوي"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Filter_dot_2779594451": {
|
"src_dot_components_dot_Filter_dot_2779594451": {
|
||||||
"context": "filter range separator",
|
"context": "filter range separator",
|
||||||
|
@ -1126,7 +1126,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Filter_dot_773313536": {
|
"src_dot_components_dot_Filter_dot_773313536": {
|
||||||
"context": "is filter range or value",
|
"context": "is filter range or value",
|
||||||
"string": "between"
|
"string": "ما بين"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Filter_dot_996289613": {
|
"src_dot_components_dot_Filter_dot_996289613": {
|
||||||
"string": "فلاتر"
|
"string": "فلاتر"
|
||||||
|
@ -1145,7 +1145,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_MoneyRange_dot_12301532": {
|
"src_dot_components_dot_MoneyRange_dot_12301532": {
|
||||||
"context": "money",
|
"context": "money",
|
||||||
"string": "to {money}"
|
"string": "إلى {money}"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_MoneyRange_dot_1316359951": {
|
"src_dot_components_dot_MoneyRange_dot_1316359951": {
|
||||||
"context": "money",
|
"context": "money",
|
||||||
|
@ -1153,7 +1153,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_MoneyRange_dot_3729849657": {
|
"src_dot_components_dot_MoneyRange_dot_3729849657": {
|
||||||
"context": "money",
|
"context": "money",
|
||||||
"string": "from {money}"
|
"string": "من {money}"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_MultiAutocompleteSelectField_dot_1477537381": {
|
"src_dot_components_dot_MultiAutocompleteSelectField_dot_1477537381": {
|
||||||
"context": "add custom select input option",
|
"context": "add custom select input option",
|
||||||
|
@ -1406,19 +1406,19 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_WeightRange_dot_264731940": {
|
"src_dot_components_dot_WeightRange_dot_264731940": {
|
||||||
"context": "weight",
|
"context": "weight",
|
||||||
"string": "to {value} {unit}"
|
"string": "إلى {unit} {value}"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_WeightRange_dot_2892071052": {
|
"src_dot_components_dot_WeightRange_dot_2892071052": {
|
||||||
"context": "weight",
|
"context": "weight",
|
||||||
"string": "{fromValue} {fromUnit} - {toValue} {toUnit}"
|
"string": "{toValue} {toUnit} - {fromValue} {fromUnit}"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_WeightRange_dot_4256193688": {
|
"src_dot_components_dot_WeightRange_dot_4256193688": {
|
||||||
"context": "weight",
|
"context": "weight",
|
||||||
"string": "from {value} {unit}"
|
"string": "من {unit} {value}"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Weight_dot_2781622322": {
|
"src_dot_components_dot_Weight_dot_2781622322": {
|
||||||
"context": "weight",
|
"context": "weight",
|
||||||
"string": "{value} {وحدات}"
|
"string": "إلى {unit} {value}"
|
||||||
},
|
},
|
||||||
"src_dot_configuration": {
|
"src_dot_configuration": {
|
||||||
"context": "configuration section name",
|
"context": "configuration section name",
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "الوصف"
|
"string": "الوصف"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "وحدة حفظ الأوراق المالية"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "خصم"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "المجموع"
|
"string": "المجموع"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "وحدة حفظ الأوراق المالية"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "المجموع"
|
"string": "المجموع"
|
||||||
|
@ -2902,14 +2918,14 @@
|
||||||
},
|
},
|
||||||
"src_dot_pages_dot_components_dot_PageDetailsPage_dot_1815688500": {
|
"src_dot_pages_dot_components_dot_PageDetailsPage_dot_1815688500": {
|
||||||
"context": "page",
|
"context": "page",
|
||||||
"string": "since {date}"
|
"string": "منذ {date}"
|
||||||
},
|
},
|
||||||
"src_dot_pages_dot_components_dot_PageDetailsPage_dot_1996767833": {
|
"src_dot_pages_dot_components_dot_PageDetailsPage_dot_1996767833": {
|
||||||
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذه الصفحة"
|
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذه الصفحة"
|
||||||
},
|
},
|
||||||
"src_dot_pages_dot_components_dot_PageDetailsPage_dot_2001551496": {
|
"src_dot_pages_dot_components_dot_PageDetailsPage_dot_2001551496": {
|
||||||
"context": "page",
|
"context": "page",
|
||||||
"string": "will be visible from {date}"
|
"string": "ستكون ظاهر من {date}"
|
||||||
},
|
},
|
||||||
"src_dot_pages_dot_components_dot_PageInfo_dot_1116746286": {
|
"src_dot_pages_dot_components_dot_PageInfo_dot_1116746286": {
|
||||||
"context": "page content",
|
"context": "page content",
|
||||||
|
@ -3460,11 +3476,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductCreatePage_dot_1815688500": {
|
"src_dot_products_dot_components_dot_ProductCreatePage_dot_1815688500": {
|
||||||
"context": "product",
|
"context": "product",
|
||||||
"string": "since {date}"
|
"string": "منذ {date}"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductCreatePage_dot_2001551496": {
|
"src_dot_products_dot_components_dot_ProductCreatePage_dot_2001551496": {
|
||||||
"context": "product",
|
"context": "product",
|
||||||
"string": "will be visible from {date}"
|
"string": "ستكون ظاهر من {date}"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductCreatePage_dot_2706108815": {
|
"src_dot_products_dot_components_dot_ProductCreatePage_dot_2706108815": {
|
||||||
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذا المنتج"
|
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذا المنتج"
|
||||||
|
@ -3522,7 +3538,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductListPage_dot_available": {
|
"src_dot_products_dot_components_dot_ProductListPage_dot_available": {
|
||||||
"context": "product status",
|
"context": "product status",
|
||||||
"string": "Available"
|
"string": "متوفر"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductListPage_dot_hidden": {
|
"src_dot_products_dot_components_dot_ProductListPage_dot_hidden": {
|
||||||
"context": "product is hidden",
|
"context": "product is hidden",
|
||||||
|
@ -3621,27 +3637,24 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "عدد"
|
"string": "عدد"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductUpdatePage_dot_1815688500": {
|
"src_dot_products_dot_components_dot_ProductUpdatePage_dot_1815688500": {
|
||||||
"context": "product",
|
"context": "product",
|
||||||
"string": "since {date}"
|
"string": "منذ {date}"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductUpdatePage_dot_2001551496": {
|
"src_dot_products_dot_components_dot_ProductUpdatePage_dot_2001551496": {
|
||||||
"context": "product",
|
"context": "product",
|
||||||
"string": "will be visible from {date}"
|
"string": "ستكون ظاهر من {date}"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductUpdatePage_dot_2706108815": {
|
"src_dot_products_dot_components_dot_ProductUpdatePage_dot_2706108815": {
|
||||||
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذا المنتج"
|
"string": "أضف عنوان محرك البحث و وصفه لتسهيل العثور على هذا المنتج"
|
||||||
|
@ -3671,7 +3684,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_168343345": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_168343345": {
|
||||||
"context": "variant attribute",
|
"context": "variant attribute",
|
||||||
"string": "Attribute"
|
"string": "ميزة"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_1808330403": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_1808330403": {
|
||||||
"context": "variant attribute",
|
"context": "variant attribute",
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "متغير"
|
"string": "متغير"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4083,7 +4089,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_services_dot_components_dot_ServiceList_dot_3239722049": {
|
"src_dot_services_dot_components_dot_ServiceList_dot_3239722049": {
|
||||||
"context": "account status",
|
"context": "account status",
|
||||||
"string": "inactive"
|
"string": "غير فعال"
|
||||||
},
|
},
|
||||||
"src_dot_services_dot_components_dot_ServiceList_dot_636461959": {
|
"src_dot_services_dot_components_dot_ServiceList_dot_636461959": {
|
||||||
"context": "service name",
|
"context": "service name",
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Ətraflı məlumat"
|
"string": "Ətraflı məlumat"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Miqdarı"
|
"string": "Miqdarı"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Описание"
|
"string": "Описание"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Отстъпка"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Субсидирана сума"
|
"string": "Субсидирана сума"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Тотал"
|
"string": "Тотал"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Тотал"
|
"string": "Тотал"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Количество"
|
"string": "Количество"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Вариант"
|
"string": "Вариант"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "বিবরণ"
|
"string": "বিবরণ"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "পরিমাণ"
|
"string": "পরিমাণ"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Descripció"
|
"string": "Descripció"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Descompte"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Quantitat pre-autoritzada"
|
"string": "Quantitat pre-autoritzada"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Quantitat"
|
"string": "Quantitat"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Popis"
|
"string": "Popis"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Zrušit zpracování"
|
"string": "Zrušit zpracování"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Sleva"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Paušální částka"
|
"string": "Paušální částka"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Celkem"
|
"string": "Celkem"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Celkem"
|
"string": "Celkem"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Množství"
|
"string": "Množství"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Varianta"
|
"string": "Varianta"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Beskrivelse"
|
"string": "Beskrivelse"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Annuller pakning"
|
"string": "Annuller pakning"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Rabat"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preautoriseret beløb"
|
"string": "Preautoriseret beløb"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Kvantitet"
|
"string": "Kvantitet"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Löschen"
|
"string": "Löschen"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Beschreibung"
|
"string": "Beschreibung"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Artikelnummer"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Auftragsabwicklung abbrechen"
|
"string": "Auftragsabwicklung abbrechen"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Rabatt"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Autorisierter Betrag"
|
"string": "Autorisierter Betrag"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Gesamtsumme"
|
"string": "Gesamtsumme"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Produkt erstellen"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Artikelnummer"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Gesamtsumme"
|
"string": "Gesamtsumme"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Menge"
|
"string": "Menge"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variante"
|
"string": "Variante"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Produkt erstellen"
|
"string": "Produkt erstellen"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Περιγραφή"
|
"string": "Περιγραφή"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Έκπτωση"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Προεγκεκριμένο ποσό"
|
"string": "Προεγκεκριμένο ποσό"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Σύνολο"
|
"string": "Σύνολο"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Σύνολο"
|
"string": "Σύνολο"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Ποσότητα"
|
"string": "Ποσότητα"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Παραλλαγή"
|
"string": "Παραλλαγή"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Opcional"
|
"string": "Opcional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Opcional"
|
"string": "Opcional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Borrar"
|
"string": "Borrar"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Descripción"
|
"string": "Descripción"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "({quantity}) cancelados"
|
"string": "({quantity}) cancelados"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancelar envío"
|
"string": "Cancelar envío"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Saldo pendiente"
|
"string": "Saldo pendiente"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Descuento"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Monto preautorizado"
|
"string": "Monto preautorizado"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Crear producto"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Buscar por nombre de producto, atributo, tipo de producto, etc."
|
"string": "Buscar por nombre de producto, atributo, tipo de producto, etc."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Agregar Producto"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Buscar Productos"
|
"string": "Buscar Productos"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "No cumplido ({quantity})"
|
"string": "No cumplido ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Cantidad"
|
"string": "Cantidad"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "Este producto no tiene stock. Puedes agregarlo <l>aquí</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Editar almacenes"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Seguimiento de inventario"
|
"string": "Seguimiento de inventario"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "El seguimiento de inventario activo calculará automáticamente los cambios de stock"
|
"string": "El seguimiento de inventario activo calculará automáticamente los cambios de stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variante"
|
"string": "Variante"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Editar almacenes"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Seleccione los almacenes que tienen el producto seleccionado."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Crear producto"
|
"string": "Crear producto"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Crear cuenta de servicio"
|
"string": "Crear cuenta de servicio"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Métodos de envío"
|
"string": "Métodos de envío"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Descripción"
|
"string": "Descripción"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Cantidad"
|
"string": "Cantidad"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Valikuline"
|
"string": "Valikuline"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Valikuline"
|
"string": "Valikuline"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Kirjeldus"
|
"string": "Kirjeldus"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Tootekood"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Tühista Saadetis"
|
"string": "Tühista Saadetis"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Allahindlus"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Eelnevalt kinnitatud summa"
|
"string": "Eelnevalt kinnitatud summa"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Kokku"
|
"string": "Kokku"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Lisa Toode"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Otsi tooteid"
|
"string": "Otsi tooteid"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Täitmata ({quantity})"
|
"string": "Täitmata ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Tootekood"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Kokku"
|
"string": "Kokku"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Kogus"
|
"string": "Kogus"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "حذف"
|
"string": "حذف"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "توضیحات"
|
"string": "توضیحات"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "واحد انبار داری"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "لغو پردازش"
|
"string": "لغو پردازش"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "تراز"
|
"string": "تراز"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "تخفیف"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "مقدار پیش پرداخت"
|
"string": "مقدار پیش پرداخت"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "مجموع کل"
|
"string": "مجموع کل"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "ایجاد محصول"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "افزودن محصول"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "واحد انبار داری"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "مجموع کل"
|
"string": "مجموع کل"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "تعداد"
|
"string": "تعداد"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "نوع"
|
"string": "نوع"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "ایجاد محصول"
|
"string": "ایجاد محصول"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "ساخت حساب خدمت"
|
"string": "ساخت حساب خدمت"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "روش ارسال"
|
"string": "روش ارسال"
|
||||||
|
|
223
locale/fr.json
|
@ -13,7 +13,7 @@
|
||||||
"string": "Gérer et ajouter des pages"
|
"string": "Gérer et ajouter des pages"
|
||||||
},
|
},
|
||||||
"configurationMenuPermissionGroups": {
|
"configurationMenuPermissionGroups": {
|
||||||
"string": "Manage your permission groups and their permissions"
|
"string": "Gérez vos groupes de permissions et leurs permissions"
|
||||||
},
|
},
|
||||||
"configurationMenuProductTypes": {
|
"configurationMenuProductTypes": {
|
||||||
"string": "Définir les types de produits vendu"
|
"string": "Définir les types de produits vendu"
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
"string": "Gérer les taxes de votre magasin"
|
"string": "Gérer les taxes de votre magasin"
|
||||||
},
|
},
|
||||||
"configurationMenuWarehouses": {
|
"configurationMenuWarehouses": {
|
||||||
"string": "Manage and update your warehouse information"
|
"string": "Gérez et mettez à jour les informations de votre entrepôt"
|
||||||
},
|
},
|
||||||
"configurationPluginsPages": {
|
"configurationPluginsPages": {
|
||||||
"string": "Visualiser et mettre à jour vos plugins et leurs paramètres "
|
"string": "Visualiser et mettre à jour vos plugins et leurs paramètres "
|
||||||
|
@ -244,13 +244,13 @@
|
||||||
},
|
},
|
||||||
"productVariantCreatorWarehouseSectionHeader": {
|
"productVariantCreatorWarehouseSectionHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Warehouses"
|
"string": "Entrepôts"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalCostPriceField": {
|
"productVariantPriceOptionalCostPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optionnel"
|
"string": "Optionnel"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optionnel"
|
"string": "Optionnel"
|
||||||
},
|
},
|
||||||
|
@ -288,7 +288,7 @@
|
||||||
},
|
},
|
||||||
"shippingZoneWarehouses_dot_autocomplete_dot_label": {
|
"shippingZoneWarehouses_dot_autocomplete_dot_label": {
|
||||||
"context": "autocomplete select label",
|
"context": "autocomplete select label",
|
||||||
"string": "Warehouse"
|
"string": "Entrepôt"
|
||||||
},
|
},
|
||||||
"siteSettingsMailingHelperText": {
|
"siteSettingsMailingHelperText": {
|
||||||
"context": "helper text",
|
"context": "helper text",
|
||||||
|
@ -296,17 +296,17 @@
|
||||||
},
|
},
|
||||||
"src_dot_accept": {
|
"src_dot_accept": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Accept"
|
"string": "J'accepte"
|
||||||
},
|
},
|
||||||
"src_dot_attributes": {
|
"src_dot_attributes": {
|
||||||
"context": "attributes section name",
|
"context": "attributes section name",
|
||||||
"string": "Attributs"
|
"string": "Attributs"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_attributeSlugUnique": {
|
"src_dot_attributes_dot_attributeSlugUnique": {
|
||||||
"string": "Attribute with this slug already exists"
|
"string": "L'attribut avec ce slug existe déjà"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_attributeValueAlreadyExists": {
|
"src_dot_attributes_dot_attributeValueAlreadyExists": {
|
||||||
"string": "This value already exists within this attribute"
|
"string": "Cette valeur existe déjà dans cet attribut"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeBulkDeleteDialog_dot_1184518529": {
|
"src_dot_attributes_dot_components_dot_AttributeBulkDeleteDialog_dot_1184518529": {
|
||||||
"context": "dialog content",
|
"context": "dialog content",
|
||||||
|
@ -913,19 +913,19 @@
|
||||||
"string": "Effacer les collections"
|
"string": "Effacer les collections"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_AccountPermissionGroups_dot_2836633439": {
|
"src_dot_components_dot_AccountPermissionGroups_dot_2836633439": {
|
||||||
"string": "Permission groups"
|
"string": "Groupes de permissions"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_AccountPermissions_dot_2690176844": {
|
"src_dot_components_dot_AccountPermissions_dot_2690176844": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Droits"
|
"string": "Permissions"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_AccountPermissions_dot_2731975416": {
|
"src_dot_components_dot_AccountPermissions_dot_2731975416": {
|
||||||
"context": "card section description",
|
"context": "card section description",
|
||||||
"string": "Available permissions"
|
"string": "Permissions disponibles"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_AccountPermissions_dot_2853621891": {
|
"src_dot_components_dot_AccountPermissions_dot_2853621891": {
|
||||||
"context": "exceeded permissions description",
|
"context": "exceeded permissions description",
|
||||||
"string": "This groups permissions exceeds your own. You are able only to manage permissions that you have."
|
"string": "Les permissions de ce groupe dépassent les vôtres. Vous ne pouvez gérer que les permissions dont vous disposez."
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_AccountPermissions_dot_3674526441": {
|
"src_dot_components_dot_AccountPermissions_dot_3674526441": {
|
||||||
"context": "permission list item description",
|
"context": "permission list item description",
|
||||||
|
@ -1237,7 +1237,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Navigator_dot_modes_dot_createPermissionGroup": {
|
"src_dot_components_dot_Navigator_dot_modes_dot_createPermissionGroup": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create Permission Group"
|
"string": "Créer un groupe de permissions"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Navigator_dot_modes_dot_createProduct": {
|
"src_dot_components_dot_Navigator_dot_modes_dot_createProduct": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -1428,7 +1428,7 @@
|
||||||
"string": "Divers"
|
"string": "Divers"
|
||||||
},
|
},
|
||||||
"src_dot_configuration_dot_1440737903": {
|
"src_dot_configuration_dot_1440737903": {
|
||||||
"string": "Shipping Settings"
|
"string": "Paramètres de livraison"
|
||||||
},
|
},
|
||||||
"src_dot_configuration_dot_1639245766": {
|
"src_dot_configuration_dot_1639245766": {
|
||||||
"string": "Consultez et modifiez les Webhooks et leurs paramètres"
|
"string": "Consultez et modifiez les Webhooks et leurs paramètres"
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Effacer"
|
"string": "Effacer"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Description"
|
"string": "Description"
|
||||||
},
|
},
|
||||||
|
@ -2227,7 +2231,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_ok": {
|
"src_dot_ok": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "OK"
|
"string": "D'accord"
|
||||||
},
|
},
|
||||||
"src_dot_optionalField": {
|
"src_dot_optionalField": {
|
||||||
"context": "field is optional",
|
"context": "field is optional",
|
||||||
|
@ -2257,7 +2261,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderCannotCancelOrderDialog_dot_1561587911": {
|
"src_dot_orders_dot_components_dot_OrderCannotCancelOrderDialog_dot_1561587911": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Saleor couldn’t cancel order"
|
"string": "Saleor n'a pas pu annuler la commande"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderCannotCancelOrderDialog_dot_775268031": {
|
"src_dot_orders_dot_components_dot_OrderCannotCancelOrderDialog_dot_775268031": {
|
||||||
"string": "There are still fulfillments created for this order. Cancel the fulfillments first before you cancel the order."
|
"string": "There are still fulfillments created for this order. Cancel the fulfillments first before you cancel the order."
|
||||||
|
@ -2443,11 +2447,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_2588284040": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_2588284040": {
|
||||||
"context": "no variant stock in warehouse",
|
"context": "no variant stock in warehouse",
|
||||||
"string": "No Stock"
|
"string": "Pas de stock"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_3244948255": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_3244948255": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Items ready to ship"
|
"string": "Articles prêts à être expédiés"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_3620521256": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_3620521256": {
|
||||||
"context": "page header",
|
"context": "page header",
|
||||||
|
@ -2462,7 +2466,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_580490159": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_580490159": {
|
||||||
"context": "page header with order number",
|
"context": "page header with order number",
|
||||||
"string": "Order #{orderNumber}"
|
"string": "Commande #{orderNumber}"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_693960049": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_693960049": {
|
||||||
"context": "product's sku",
|
"context": "product's sku",
|
||||||
|
@ -2473,7 +2477,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillmentCancelDialog_dot_46197273": {
|
"src_dot_orders_dot_components_dot_OrderFulfillmentCancelDialog_dot_46197273": {
|
||||||
"context": "select warehouse to restock items",
|
"context": "select warehouse to restock items",
|
||||||
"string": "Select Warehouse"
|
"string": "Sélectionner un entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillmentCancelDialog_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillmentCancelDialog_dot_732594284": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "UGS (Unité de Gestion de Stock)"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Annuler le traitement"
|
"string": "Annuler le traitement"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Solde exceptionnel "
|
"string": "Solde exceptionnel "
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Remise"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Montant pré-autorisé"
|
"string": "Montant pré-autorisé"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Créer produit"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "UGS {sku}"
|
"string": "UGS {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Recherche par nom de produit, attribut, type de produit, etc..."
|
"string": "Recherche par nom de produit, attribut, type de produit, etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Ajouter un produit"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Rechercher dans les produits"
|
"string": "Rechercher dans les produits"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Non traitées ({quantity})"
|
"string": "Non traitées ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "UGS (Unité de Gestion de Stock)"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -2848,7 +2864,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_580490159": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_580490159": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Order #{orderNumber}"
|
"string": "Commande #{orderNumber}"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_617145655": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_617145655": {
|
||||||
"string": "La méthode de livraison a été mise à jour avec succès"
|
"string": "La méthode de livraison a été mise à jour avec succès"
|
||||||
|
@ -2858,7 +2874,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_694622335": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_694622335": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Draft Order #{orderNumber}"
|
"string": "Commande brouillonne #{orderNumber}"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_927945225": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_927945225": {
|
||||||
"string": "Le traitement a été annulé"
|
"string": "Le traitement a été annulé"
|
||||||
|
@ -3029,7 +3045,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups": {
|
"src_dot_permissionGroups": {
|
||||||
"context": "permission groups section name",
|
"context": "permission groups section name",
|
||||||
"string": "Permission Groups"
|
"string": "Groupes de permissions"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_1004218338": {
|
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_1004218338": {
|
||||||
"context": "staff member status",
|
"context": "staff member status",
|
||||||
|
@ -3037,25 +3053,25 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_1731102929": {
|
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_1731102929": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Assign"
|
"string": "Affecter"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_2986043376": {
|
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_2986043376": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Assign Staff Members"
|
"string": "Affecter des membres du personnel"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_3111990517": {
|
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_3111990517": {
|
||||||
"string": "Search by name, email, etc..."
|
"string": "Recherche par nom, email, etc ..."
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_3247064221": {
|
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_3247064221": {
|
||||||
"context": "staff member status",
|
"context": "staff member status",
|
||||||
"string": "Activé"
|
"string": "Activé"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_3532084010": {
|
"src_dot_permissionGroups_dot_components_dot_AssignMembersDialog_dot_3532084010": {
|
||||||
"string": "Search Staff Members"
|
"string": "Rechercher des membres du personnel"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_MembersErrorDialog_dot_3005518110": {
|
"src_dot_permissionGroups_dot_components_dot_MembersErrorDialog_dot_3005518110": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
"string": "Unassign users"
|
"string": "Annuler l'attribution des utilisateurs"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_MembersErrorDialog_dot_334280454": {
|
"src_dot_permissionGroups_dot_components_dot_MembersErrorDialog_dot_334280454": {
|
||||||
"context": "dialog content",
|
"context": "dialog content",
|
||||||
|
@ -3063,7 +3079,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupCreatePage_dot_3765873075": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupCreatePage_dot_3765873075": {
|
||||||
"context": "checkbox label",
|
"context": "checkbox label",
|
||||||
"string": "Group has full access to the store"
|
"string": "Le groupe a un accès complet au magasin"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupCreatePage_dot_3920591233": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupCreatePage_dot_3920591233": {
|
||||||
"context": "card description",
|
"context": "card description",
|
||||||
|
@ -3075,7 +3091,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_3528974446": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_3528974446": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
"string": "Delete permission group"
|
"string": "Supprimer le groupe de permissions"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_956177443": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_956177443": {
|
||||||
"context": "deletion error message",
|
"context": "deletion error message",
|
||||||
|
@ -3083,7 +3099,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDetailsPage_dot_3765873075": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDetailsPage_dot_3765873075": {
|
||||||
"context": "checkbox label",
|
"context": "checkbox label",
|
||||||
"string": "Group has full access to the store"
|
"string": "Le groupe a un accès complet au magasin"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDetailsPage_dot_3920591233": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDetailsPage_dot_3920591233": {
|
||||||
"context": "card description",
|
"context": "card description",
|
||||||
|
@ -3091,24 +3107,24 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupInfo_dot_2081191949": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupInfo_dot_2081191949": {
|
||||||
"context": "text field label",
|
"context": "text field label",
|
||||||
"string": "Group name"
|
"string": "Nom du groupe"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupListPage_dot_613749311": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupListPage_dot_613749311": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "create permission group"
|
"string": "Créer un groupe de permissions"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_2011544055": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_2011544055": {
|
||||||
"context": "permission group name",
|
"context": "permission group name",
|
||||||
"string": "Permission Group Name"
|
"string": "Nom du groupe de permission"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_2734377620": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_2734377620": {
|
||||||
"string": "Members"
|
"string": "Membres"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_4190792473": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_4190792473": {
|
||||||
"string": "Actions"
|
"string": "Actions"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_425941108": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupList_dot_425941108": {
|
||||||
"string": "No permission groups found"
|
"string": "Aucun groupe de permissions trouvé"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_1004218338": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_1004218338": {
|
||||||
"context": "staff member status",
|
"context": "staff member status",
|
||||||
|
@ -3119,14 +3135,14 @@
|
||||||
"string": "You haven’t assigned any member to this permission group yet."
|
"string": "You haven’t assigned any member to this permission group yet."
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_1512872240": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_1512872240": {
|
||||||
"string": "No members found"
|
"string": "Aucun membre trouvé"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_1789607185": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_1789607185": {
|
||||||
"string": "Adresse e-mail"
|
"string": "Adresse e-mail"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_2457011428": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_2457011428": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Assign members"
|
"string": "Affecter des membres"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_2652621342": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_2652621342": {
|
||||||
"context": "empty list message",
|
"context": "empty list message",
|
||||||
|
@ -3138,7 +3154,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_3397233744": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_3397233744": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Group members"
|
"string": "Les membres du groupe"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_4190792473": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupMemberList_dot_4190792473": {
|
||||||
"string": "Actions"
|
"string": "Actions"
|
||||||
|
@ -3149,7 +3165,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_UnassignMembersDialog_dot_3005518110": {
|
"src_dot_permissionGroups_dot_components_dot_UnassignMembersDialog_dot_3005518110": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
"string": "Unassign users"
|
"string": "Annuler l'attribution des utilisateurs"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_UnassignMembersDialog_dot_778652830": {
|
"src_dot_permissionGroups_dot_components_dot_UnassignMembersDialog_dot_778652830": {
|
||||||
"context": "dialog content",
|
"context": "dialog content",
|
||||||
|
@ -3160,14 +3176,14 @@
|
||||||
"string": "Créer une catégorie"
|
"string": "Créer une catégorie"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_views_dot_PermissionGroupCreate_dot_3930588328": {
|
"src_dot_permissionGroups_dot_views_dot_PermissionGroupCreate_dot_3930588328": {
|
||||||
"string": "Permission group created"
|
"string": "Groupe de permissions créé"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_views_dot_PermissionGroupDetails_dot_870815507": {
|
"src_dot_permissionGroups_dot_views_dot_PermissionGroupDetails_dot_870815507": {
|
||||||
"context": "button title",
|
"context": "button title",
|
||||||
"string": "Désassigner"
|
"string": "Désassigner"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_views_dot_PermissionGroupList_dot_92979760": {
|
"src_dot_permissionGroups_dot_views_dot_PermissionGroupList_dot_92979760": {
|
||||||
"string": "Permission Group Deleted"
|
"string": "Groupe de permission supprimé"
|
||||||
},
|
},
|
||||||
"src_dot_plugins": {
|
"src_dot_plugins": {
|
||||||
"context": "plugins section name",
|
"context": "plugins section name",
|
||||||
|
@ -3611,27 +3627,24 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_2622674857": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_2622674857": {
|
||||||
"context": "tabel column header",
|
"context": "tabel column header",
|
||||||
"string": "Warehouse Name"
|
"string": "Nom de l'entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_2729628316": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_2729628316": {
|
||||||
"context": "tabel column header",
|
"context": "tabel column header",
|
||||||
"string": "Quantity Available"
|
"string": "Quantité disponible"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_2796503714": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_2796503714": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Quantité"
|
"string": "Quantité"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Attribuer un entrepôt"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3675,19 +3688,19 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_1808330403": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_1808330403": {
|
||||||
"context": "variant attribute",
|
"context": "variant attribute",
|
||||||
"string": "Select Attribute"
|
"string": "Sélectionnez un attribut"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2002684673": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2002684673": {
|
||||||
"context": "page title",
|
"context": "page title",
|
||||||
"string": "Price and SKUs"
|
"string": "Prix et UGS"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2020618004": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2020618004": {
|
||||||
"context": "variant stock, header",
|
"context": "variant stock, header",
|
||||||
"string": "Stock and Warehousing"
|
"string": "Stock et entreposage"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2158649399": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2158649399": {
|
||||||
"context": "product attribute values, page title",
|
"context": "product attribute values, page title",
|
||||||
"string": "Choose Values"
|
"string": "Choisissez des valeurs"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2478977538": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_2478977538": {
|
||||||
"context": "attribute values, variant creation step",
|
"context": "attribute values, variant creation step",
|
||||||
|
@ -3721,7 +3734,7 @@
|
||||||
"string": "Here is the summary of variants that will be created. You can change prices, stocks an SKU for each one created."
|
"string": "Here is the summary of variants that will be created. You can change prices, stocks an SKU for each one created."
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_3896519183": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_3896519183": {
|
||||||
"string": "Skip stock for now"
|
"string": "Ignorer le stock pour l'instant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_4120989039": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_4120989039": {
|
||||||
"context": "create multiple variants, button",
|
"context": "create multiple variants, button",
|
||||||
|
@ -3729,7 +3742,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_520980261": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_520980261": {
|
||||||
"context": "variant creator summary card header",
|
"context": "variant creator summary card header",
|
||||||
"string": "Created Variants"
|
"string": "Variantes créées"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_551319747": {
|
"src_dot_products_dot_components_dot_ProductVariantCreatorPage_dot_551319747": {
|
||||||
"string": "Based on your selections we will create {numberOfProducts} products. Use this step to customize price and stocks for your new products"
|
"string": "Based on your selections we will create {numberOfProducts} products. Use this step to customize price and stocks for your new products"
|
||||||
|
@ -3819,7 +3832,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariants_dot_1614793985": {
|
"src_dot_products_dot_components_dot_ProductVariants_dot_1614793985": {
|
||||||
"context": "variant stock status",
|
"context": "variant stock status",
|
||||||
"string": "Available inventory at:"
|
"string": "Inventaire disponible à:"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariants_dot_1721716102": {
|
"src_dot_products_dot_components_dot_ProductVariants_dot_1721716102": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -3838,7 +3851,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariants_dot_3203451491": {
|
"src_dot_products_dot_components_dot_ProductVariants_dot_3203451491": {
|
||||||
"context": "filtering option",
|
"context": "filtering option",
|
||||||
"string": "All Warehouses"
|
"string": "Tous les entrepôts"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariants_dot_3490038570": {
|
"src_dot_products_dot_components_dot_ProductVariants_dot_3490038570": {
|
||||||
"context": "product variant inventory status",
|
"context": "product variant inventory status",
|
||||||
|
@ -3850,7 +3863,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariants_dot_4017567521": {
|
"src_dot_products_dot_components_dot_ProductVariants_dot_4017567521": {
|
||||||
"context": "product variant inventory",
|
"context": "product variant inventory",
|
||||||
"string": "Not stocked"
|
"string": "non stocké"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariants_dot_693960049": {
|
"src_dot_products_dot_components_dot_ProductVariants_dot_693960049": {
|
||||||
"string": "UGS (Unité de Gestion de Stock)"
|
"string": "UGS (Unité de Gestion de Stock)"
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variation"
|
"string": "Variation"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Créer produit"
|
"string": "Créer produit"
|
||||||
|
@ -3952,7 +3958,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_views_dot_ProductVariantCreator_dot_830692292": {
|
"src_dot_products_dot_views_dot_ProductVariantCreator_dot_830692292": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Variants"
|
"string": "Créer une variante"
|
||||||
},
|
},
|
||||||
"src_dot_properties": {
|
"src_dot_properties": {
|
||||||
"string": "Propriétés"
|
"string": "Propriétés"
|
||||||
|
@ -3962,11 +3968,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_readyToCapture": {
|
"src_dot_readyToCapture": {
|
||||||
"context": "order status",
|
"context": "order status",
|
||||||
"string": "Ready to capture"
|
"string": "Prêt à capturer"
|
||||||
},
|
},
|
||||||
"src_dot_readyToFulfill": {
|
"src_dot_readyToFulfill": {
|
||||||
"context": "order status",
|
"context": "order status",
|
||||||
"string": "Ready to fulfill"
|
"string": "Prêt à traitée"
|
||||||
},
|
},
|
||||||
"src_dot_refunded": {
|
"src_dot_refunded": {
|
||||||
"context": "payment status",
|
"context": "payment status",
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Créer un compte service"
|
"string": "Créer un compte service"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Méthodes de livraison"
|
"string": "Méthodes de livraison"
|
||||||
|
@ -4158,11 +4167,11 @@
|
||||||
"string": "Unité du poids de la livraison "
|
"string": "Unité du poids de la livraison "
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneAddWarehouseDialog_dot_2622674857": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneAddWarehouseDialog_dot_2622674857": {
|
||||||
"string": "Warehouse Name"
|
"string": "Nom de l'entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneAddWarehouseDialog_dot_3173942020": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneAddWarehouseDialog_dot_3173942020": {
|
||||||
"context": "header, dialog",
|
"context": "header, dialog",
|
||||||
"string": "Create New Warehouse"
|
"string": "Créer un nouvel entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneCountriesAssignDialog_dot_1003092716": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneCountriesAssignDialog_dot_1003092716": {
|
||||||
"string": "Le reste du monde"
|
"string": "Le reste du monde"
|
||||||
|
@ -4336,18 +4345,18 @@
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_1221560277": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_1221560277": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Warehouse"
|
"string": "Entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_2304484478": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_2304484478": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Add New Warehouse"
|
"string": "Ajouter un nouvel entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_3852102652": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_3852102652": {
|
||||||
"string": "Select warehouse from which you will ship products for this shipping zone. This warehouse address will also be used to calculate taxes."
|
"string": "Select warehouse from which you will ship products for this shipping zone. This warehouse address will also be used to calculate taxes."
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_46197273": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_46197273": {
|
||||||
"context": "input placeholder",
|
"context": "input placeholder",
|
||||||
"string": "Select Warehouse"
|
"string": "Sélectionner un entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZonesListPage_dot_1325966144": {
|
"src_dot_shipping_dot_components_dot_ShippingZonesListPage_dot_1325966144": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
|
@ -5031,7 +5040,7 @@
|
||||||
"string": "Authorization key with this type already exists"
|
"string": "Authorization key with this type already exists"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_assignNonStaffMember": {
|
"src_dot_utils_dot_errors_dot_assignNonStaffMember": {
|
||||||
"string": "Only staff members can be assigned"
|
"string": "Seuls les membres du personnel peuvent être affectés"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_attributeAlreadyAssigned": {
|
"src_dot_utils_dot_errors_dot_attributeAlreadyAssigned": {
|
||||||
"string": "This attribute has already been assigned to this product type"
|
"string": "This attribute has already been assigned to this product type"
|
||||||
|
@ -5044,7 +5053,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_billingNotSet": {
|
"src_dot_utils_dot_errors_dot_billingNotSet": {
|
||||||
"context": "error message",
|
"context": "error message",
|
||||||
"string": "Billing address is not set"
|
"string": "L'adresse de facturation n'est pas définie"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_cannotCancelFulfillment": {
|
"src_dot_utils_dot_errors_dot_cannotCancelFulfillment": {
|
||||||
"context": "error message",
|
"context": "error message",
|
||||||
|
@ -5080,10 +5089,10 @@
|
||||||
"string": "API error"
|
"string": "API error"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_invalid": {
|
"src_dot_utils_dot_errors_dot_invalid": {
|
||||||
"string": "Invalid value"
|
"string": "Valeur invalide"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_invalidPassword": {
|
"src_dot_utils_dot_errors_dot_invalidPassword": {
|
||||||
"string": "Invalid password"
|
"string": "Mot de passe incorrect"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_noShippingAddress": {
|
"src_dot_utils_dot_errors_dot_noShippingAddress": {
|
||||||
"context": "error message",
|
"context": "error message",
|
||||||
|
@ -5119,29 +5128,29 @@
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_skuUnique": {
|
"src_dot_utils_dot_errors_dot_skuUnique": {
|
||||||
"context": "bulk variant create error",
|
"context": "bulk variant create error",
|
||||||
"string": "SKUs must be unique"
|
"string": "Les UGSs doivent être uniques"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_slugUnique": {
|
"src_dot_utils_dot_errors_dot_slugUnique": {
|
||||||
"context": "error message",
|
"context": "error message",
|
||||||
"string": "Slug must be unique for each warehouse"
|
"string": "Le slug doit être unique pour chaque entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_tooCommon": {
|
"src_dot_utils_dot_errors_dot_tooCommon": {
|
||||||
"string": "This password is too commonly used"
|
"string": "Ce mot de passe est trop couramment utilisé"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_tooShort": {
|
"src_dot_utils_dot_errors_dot_tooShort": {
|
||||||
"string": "This password is too short"
|
"string": "Ce mot de passe est trop court"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_tooSimilar": {
|
"src_dot_utils_dot_errors_dot_tooSimilar": {
|
||||||
"string": "These passwords are too similar"
|
"string": "Ces mots de passe sont trop similaires"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_unique": {
|
"src_dot_utils_dot_errors_dot_unique": {
|
||||||
"string": "This needs to be unique"
|
"string": "Cela doit être unique"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_unknownError": {
|
"src_dot_utils_dot_errors_dot_unknownError": {
|
||||||
"string": "Unknown error"
|
"string": "Erreur inconnue"
|
||||||
},
|
},
|
||||||
"src_dot_utils_dot_errors_dot_variantNoDigitalContent": {
|
"src_dot_utils_dot_errors_dot_variantNoDigitalContent": {
|
||||||
"string": "This variant does not have any digital content"
|
"string": "Cette variante n'a pas de contenu numérique"
|
||||||
},
|
},
|
||||||
"src_dot_vouchers": {
|
"src_dot_vouchers": {
|
||||||
"context": "vouchers section name",
|
"context": "vouchers section name",
|
||||||
|
@ -5149,7 +5158,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_warehouses": {
|
"src_dot_warehouses": {
|
||||||
"context": "warehouses section name",
|
"context": "warehouses section name",
|
||||||
"string": "Warehouses"
|
"string": "Entrepôts"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_1967111456": {
|
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_1967111456": {
|
||||||
"context": "warehouse",
|
"context": "warehouse",
|
||||||
|
@ -5157,39 +5166,39 @@
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_934572530": {
|
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_934572530": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Create Warehouse"
|
"string": "Créer un entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseDeleteDialog_dot_1355303260": {
|
"src_dot_warehouses_dot_components_dot_WarehouseDeleteDialog_dot_1355303260": {
|
||||||
"context": "dialog content",
|
"context": "dialog content",
|
||||||
"string": "Are you sure you want to delete {warehouseName}?"
|
"string": "Etes-vous sûr que vous voulez supprimer {warehouseName}?"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseDeleteDialog_dot_3857661071": {
|
"src_dot_warehouses_dot_components_dot_WarehouseDeleteDialog_dot_3857661071": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
"string": "Delete Warehouse"
|
"string": "Supprimer l'entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseDetailsPage_dot_1967111456": {
|
"src_dot_warehouses_dot_components_dot_WarehouseDetailsPage_dot_1967111456": {
|
||||||
"context": "warehouse",
|
"context": "warehouse",
|
||||||
"string": "Informations d'adresse"
|
"string": "Informations d'adresse"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseInfo_dot_2622674857": {
|
"src_dot_warehouses_dot_components_dot_WarehouseInfo_dot_2622674857": {
|
||||||
"string": "Warehouse Name"
|
"string": "Nom de l'entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseListPage_dot_2304765290": {
|
"src_dot_warehouses_dot_components_dot_WarehouseListPage_dot_2304765290": {
|
||||||
"string": "Search Warehouse"
|
"string": "Rechercher entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseListPage_dot_3203451491": {
|
"src_dot_warehouses_dot_components_dot_WarehouseListPage_dot_3203451491": {
|
||||||
"context": "tab name",
|
"context": "tab name",
|
||||||
"string": "All Warehouses"
|
"string": "Tous les entrepôts"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseListPage_dot_934572530": {
|
"src_dot_warehouses_dot_components_dot_WarehouseListPage_dot_934572530": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create Warehouse"
|
"string": "Créer un entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseList_dot_1225932315": {
|
"src_dot_warehouses_dot_components_dot_WarehouseList_dot_1225932315": {
|
||||||
"string": "Shipping Zones"
|
"string": "Zones d'expédition"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseList_dot_3787396469": {
|
"src_dot_warehouses_dot_components_dot_WarehouseList_dot_3787396469": {
|
||||||
"string": "No warehouses found"
|
"string": "Aucun entrepôt trouvé"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseList_dot_4190792473": {
|
"src_dot_warehouses_dot_components_dot_WarehouseList_dot_4190792473": {
|
||||||
"string": "Actions"
|
"string": "Actions"
|
||||||
|
@ -5200,14 +5209,14 @@
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseZones_dot_1225932315": {
|
"src_dot_warehouses_dot_components_dot_WarehouseZones_dot_1225932315": {
|
||||||
"context": "zones that warehouse sends to",
|
"context": "zones that warehouse sends to",
|
||||||
"string": "Shipping Zones"
|
"string": "Zones d'expédition"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseZones_dot_2423245141": {
|
"src_dot_warehouses_dot_components_dot_WarehouseZones_dot_2423245141": {
|
||||||
"string": "This warehouse has no shipping zones assigned."
|
"string": "Cet entrepôt n'a aucune zone de livraison assignée."
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_views_dot_WarehouseCreate_dot_934572530": {
|
"src_dot_warehouses_dot_views_dot_WarehouseCreate_dot_934572530": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Create Warehouse"
|
"string": "Créer un entrepôt"
|
||||||
},
|
},
|
||||||
"src_dot_webhooks": {
|
"src_dot_webhooks": {
|
||||||
"context": "webhooks section name",
|
"context": "webhooks section name",
|
||||||
|
@ -5219,7 +5228,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_216945727": {
|
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_216945727": {
|
||||||
"context": "delete webhook",
|
"context": "delete webhook",
|
||||||
"string": "Are you sure you want to delete this webhook?"
|
"string": "Voulez-vous vraiment supprimer ce webhook?"
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_2297471173": {
|
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_2297471173": {
|
||||||
"context": "delete webhook",
|
"context": "delete webhook",
|
||||||
|
@ -5322,7 +5331,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhooksDetailsPage_dot_1595053355": {
|
"src_dot_webhooks_dot_components_dot_WebhooksDetailsPage_dot_1595053355": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Unnamed Webhook Details"
|
"string": "Détails du Webhook sans nom"
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhooksDetailsPage_dot_408706360": {
|
"src_dot_webhooks_dot_components_dot_WebhooksDetailsPage_dot_408706360": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
|
@ -5359,7 +5368,7 @@
|
||||||
"string": "Action"
|
"string": "Action"
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhooksList_dot_618422799": {
|
"src_dot_webhooks_dot_components_dot_WebhooksList_dot_618422799": {
|
||||||
"string": "Unnamed webhook"
|
"string": "Webhook sans nom"
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhooksList_dot_636461959": {
|
"src_dot_webhooks_dot_components_dot_WebhooksList_dot_636461959": {
|
||||||
"context": "webhook name",
|
"context": "webhook name",
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "वर्णन"
|
"string": "वर्णन"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "मात्रा"
|
"string": "मात्रा"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "प्रकार"
|
"string": "प्रकार"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Leírás"
|
"string": "Leírás"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Teljesítés elvetése"
|
"string": "Teljesítés elvetése"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Kedvezmény"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Előzetesen jóváhagyott összeg"
|
"string": "Előzetesen jóváhagyott összeg"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Összesen"
|
"string": "Összesen"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Összesen"
|
"string": "Összesen"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Mennyiség"
|
"string": "Mennyiség"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Változat"
|
"string": "Változat"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Նկարագրություն"
|
"string": "Նկարագրություն"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "ՊՊՄ"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Ընդհանուր"
|
"string": "Ընդհանուր"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "ՊՊՄ"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Ընդհանուր"
|
"string": "Ընդհանուր"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Քանակ"
|
"string": "Քանակ"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Տարբերակ"
|
"string": "Տարբերակ"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Deskripsi"
|
"string": "Deskripsi"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Batalkan Pemenuhan"
|
"string": "Batalkan Pemenuhan"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Diskon"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Jumlah yang diotorisasi"
|
"string": "Jumlah yang diotorisasi"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Jumlah"
|
"string": "Jumlah"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variasi"
|
"string": "Variasi"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Lýsing"
|
"string": "Lýsing"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "VN"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Afsláttur"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Samtals"
|
"string": "Samtals"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "VN"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Samtals"
|
"string": "Samtals"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Magn"
|
"string": "Magn"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Afbrigði"
|
"string": "Afbrigði"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Facoltativo"
|
"string": "Facoltativo"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Facoltativo"
|
"string": "Facoltativo"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Elimina"
|
"string": "Elimina"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Descrizione"
|
"string": "Descrizione"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Annulla evasione "
|
"string": "Annulla evasione "
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Saldo in sospeso"
|
"string": "Saldo in sospeso"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Sconto"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Importo pre-autorizzato"
|
"string": "Importo pre-autorizzato"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Totale"
|
"string": "Totale"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Crea Prodotto"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Cerca per nome prodotto, attributo, tipologia di prodotto, etc..."
|
"string": "Cerca per nome prodotto, attributo, tipologia di prodotto, etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Cerca Prodotti"
|
"string": "Cerca Prodotti"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Non evasi ({quantity})"
|
"string": "Non evasi ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Totale"
|
"string": "Totale"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Quantità"
|
"string": "Quantità"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variante"
|
"string": "Variante"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Crea Prodotto"
|
"string": "Crea Prodotto"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Crea Account Servizio"
|
"string": "Crea Account Servizio"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Metodi di Spedizione"
|
"string": "Metodi di Spedizione"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "説明"
|
"string": "説明"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "割引"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "合計"
|
"string": "合計"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "合計"
|
"string": "合計"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "数量"
|
"string": "数量"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "삭제"
|
"string": "삭제"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "설명"
|
"string": "설명"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "재고 관리 코드"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "할인"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "사전승인된 금액"
|
"string": "사전승인된 금액"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "합계"
|
"string": "합계"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "재고 관리 코드"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "합계"
|
"string": "합계"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "수량"
|
"string": "수량"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "옵션"
|
"string": "옵션"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
121
locale/mn.json
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Заавал биш"
|
"string": "Заавал биш"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Заавал биш"
|
"string": "Заавал биш"
|
||||||
},
|
},
|
||||||
|
@ -292,7 +292,7 @@
|
||||||
},
|
},
|
||||||
"siteSettingsMailingHelperText": {
|
"siteSettingsMailingHelperText": {
|
||||||
"context": "helper text",
|
"context": "helper text",
|
||||||
"string": "Mailing Configuration"
|
"string": "Имэйлийн тохиргоо"
|
||||||
},
|
},
|
||||||
"src_dot_accept": {
|
"src_dot_accept": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -369,11 +369,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInDashboard": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInDashboard": {
|
||||||
"context": "use attribute in filtering",
|
"context": "use attribute in filtering",
|
||||||
"string": "Filterable in Dashboard"
|
"string": "Dashboard дээрээс шүүх боломжтой"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInStorefront": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInStorefront": {
|
||||||
"context": "use attribute in filtering",
|
"context": "use attribute in filtering",
|
||||||
"string": "Filterable in Storefront"
|
"string": "Storefront дээрээс шүүх боломжтой"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_isVariantOnly": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_isVariantOnly": {
|
||||||
"context": "attribute can be used only in variants",
|
"context": "attribute can be used only in variants",
|
||||||
|
@ -1106,7 +1106,7 @@
|
||||||
"string": "Хайлтыг хадгалах"
|
"string": "Хайлтыг хадгалах"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_FilterCard_dot_996289613": {
|
"src_dot_components_dot_FilterCard_dot_996289613": {
|
||||||
"string": "Filters"
|
"string": "Шүүлтүүр"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Filter_dot_2332404293": {
|
"src_dot_components_dot_Filter_dot_2332404293": {
|
||||||
"context": "search",
|
"context": "search",
|
||||||
|
@ -1129,11 +1129,11 @@
|
||||||
"string": "хооронд"
|
"string": "хооронд"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Filter_dot_996289613": {
|
"src_dot_components_dot_Filter_dot_996289613": {
|
||||||
"string": "Filters"
|
"string": "Шүүлтүүр"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_ImageUpload_dot_1731007575": {
|
"src_dot_components_dot_ImageUpload_dot_1731007575": {
|
||||||
"context": "image upload",
|
"context": "image upload",
|
||||||
"string": "Drop here to upload"
|
"string": "Энд файлаа хуулна уу"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_LanguageSwitch_dot_4150219184": {
|
"src_dot_components_dot_LanguageSwitch_dot_4150219184": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -1609,7 +1609,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_customers_dot_components_dot_CustomerOrders_dot_2889196282": {
|
"src_dot_customers_dot_components_dot_CustomerOrders_dot_2889196282": {
|
||||||
"context": "number of order",
|
"context": "number of order",
|
||||||
"string": "No. of Order"
|
"string": "Захиалгын дугаар"
|
||||||
},
|
},
|
||||||
"src_dot_customers_dot_components_dot_CustomerOrders_dot_3029139173": {
|
"src_dot_customers_dot_components_dot_CustomerOrders_dot_3029139173": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Устгах"
|
"string": "Устгах"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Тайлбар"
|
"string": "Тайлбар"
|
||||||
},
|
},
|
||||||
|
@ -1912,11 +1916,11 @@
|
||||||
"string": "Код үүсгэх"
|
"string": "Код үүсгэх"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_2215544659": {
|
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_2215544659": {
|
||||||
"string": "Limit number of times this discount can be used in total"
|
"string": "Нийт ашиглах боломжтой тоо"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_3459612469": {
|
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_3459612469": {
|
||||||
"context": "limit voucher",
|
"context": "limit voucher",
|
||||||
"string": "Limit to one use per customer"
|
"string": "1 хэрэглэгчийн ашиглах хязгаар"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_3751756157": {
|
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_3751756157": {
|
||||||
"context": "voucher usage limit, header",
|
"context": "voucher usage limit, header",
|
||||||
|
@ -1924,7 +1928,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_557552777": {
|
"src_dot_discounts_dot_components_dot_VoucherLimits_dot_557552777": {
|
||||||
"context": "voucher",
|
"context": "voucher",
|
||||||
"string": "Limit of Uses"
|
"string": "Ашиглах хязгаар"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherListPage_dot_1112241061": {
|
"src_dot_discounts_dot_components_dot_VoucherListPage_dot_1112241061": {
|
||||||
"context": "tab name",
|
"context": "tab name",
|
||||||
|
@ -2162,7 +2166,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_done": {
|
"src_dot_done": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Done"
|
"string": "Дууссан"
|
||||||
},
|
},
|
||||||
"src_dot_draft": {
|
"src_dot_draft": {
|
||||||
"context": "order status",
|
"context": "order status",
|
||||||
|
@ -2170,10 +2174,10 @@
|
||||||
},
|
},
|
||||||
"src_dot_draftOrders": {
|
"src_dot_draftOrders": {
|
||||||
"context": "draft orders section name",
|
"context": "draft orders section name",
|
||||||
"string": "Draft Orders"
|
"string": "Ноорог захиалгууд"
|
||||||
},
|
},
|
||||||
"src_dot_drafts": {
|
"src_dot_drafts": {
|
||||||
"string": "Drafts"
|
"string": "Нооргууд"
|
||||||
},
|
},
|
||||||
"src_dot_edit": {
|
"src_dot_edit": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -2193,7 +2197,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_fulfilled": {
|
"src_dot_fulfilled": {
|
||||||
"context": "order status",
|
"context": "order status",
|
||||||
"string": "Fulfilled"
|
"string": "Биелүүлсэн"
|
||||||
},
|
},
|
||||||
"src_dot_generalInformations": {
|
"src_dot_generalInformations": {
|
||||||
"string": "Ерөнхий мэдээлэл"
|
"string": "Ерөнхий мэдээлэл"
|
||||||
|
@ -2357,7 +2361,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_1161061962": {
|
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_1161061962": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Finalize Draft Order"
|
"string": "Ноорог захиалгыг дуусгах"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_1297434244": {
|
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_1297434244": {
|
||||||
"string": "No user information"
|
"string": "No user information"
|
||||||
|
@ -2370,7 +2374,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_2725265632": {
|
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_2725265632": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Finalize"
|
"string": "Дуусгах"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_2824936338": {
|
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_2824936338": {
|
||||||
"string": "Shipping method provided, but no product requires it"
|
"string": "Shipping method provided, but no product requires it"
|
||||||
|
@ -2383,7 +2387,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_678764806": {
|
"src_dot_orders_dot_components_dot_OrderDraftFinalizeDialog_dot_678764806": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Finalize anyway"
|
"string": "Дуусгах"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftListPage_dot_2826235371": {
|
"src_dot_orders_dot_components_dot_OrderDraftListPage_dot_2826235371": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -2408,7 +2412,7 @@
|
||||||
"string": "Биелэгдээхгүй захиалгууд олдсонгүй"
|
"string": "Биелэгдээхгүй захиалгууд олдсонгүй"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftList_dot_2889196282": {
|
"src_dot_orders_dot_components_dot_OrderDraftList_dot_2889196282": {
|
||||||
"string": "No. of Order"
|
"string": "Захиалгын дугаар"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftList_dot_3426593715": {
|
"src_dot_orders_dot_components_dot_OrderDraftList_dot_3426593715": {
|
||||||
"string": "Хэрэглэгч"
|
"string": "Хэрэглэгч"
|
||||||
|
@ -2427,7 +2431,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderDraftPage_dot_2725265632": {
|
"src_dot_orders_dot_components_dot_OrderDraftPage_dot_2725265632": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Finalize"
|
"string": "Дуусгах"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_1608534452": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_1608534452": {
|
||||||
"context": "page header",
|
"context": "page header",
|
||||||
|
@ -2439,7 +2443,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_2095687440": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_2095687440": {
|
||||||
"context": "fulfill order, button",
|
"context": "fulfill order, button",
|
||||||
"string": "Fulfill"
|
"string": "Биелүүлэх"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_2588284040": {
|
"src_dot_orders_dot_components_dot_OrderFulfillPage_dot_2588284040": {
|
||||||
"context": "no variant stock in warehouse",
|
"context": "no variant stock in warehouse",
|
||||||
|
@ -2526,12 +2530,16 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_3494686506": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_3494686506": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Fulfilled ({quantity})"
|
"string": "Биелүүлсэн ({quantity})"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_4039425374": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_4039425374": {
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2550,7 +2558,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_1521936480": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_1521936480": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Fulfilled {quantity} items"
|
"string": "Биелүүлэгдсэн {quantity} ширхэг захиалга байна"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_1527620381": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_1527620381": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
|
@ -2562,7 +2570,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_1867847329": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_1867847329": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Links to the order's digital goods were sent"
|
"string": "Дижитал бүтээгдэхүүнийг ашиглах заавар хэрэглэгч рүү илгээгдсэн"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_1964864749": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_1964864749": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
|
@ -2598,11 +2606,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_3081292385": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_3081292385": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Fulfillment confirmation was sent to customer"
|
"string": "Захиалга баталгаажсан тухай хэрэглэгчид мэдэгдсэн"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_3095247195": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_3095247195": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
"string": "Draft order was created"
|
"string": "Ноорог захиалга амжилттай үүсгэгдлээ"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderHistory_dot_3328124376": {
|
"src_dot_orders_dot_components_dot_OrderHistory_dot_3328124376": {
|
||||||
"context": "order history message",
|
"context": "order history message",
|
||||||
|
@ -2667,14 +2675,14 @@
|
||||||
"string": "Үүсгэгдлээ"
|
"string": "Үүсгэгдлээ"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderList_dot_1198046928": {
|
"src_dot_orders_dot_components_dot_OrderList_dot_1198046928": {
|
||||||
"string": "Fulfillment status"
|
"string": "Төлөв"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderList_dot_2743232155": {
|
"src_dot_orders_dot_components_dot_OrderList_dot_2743232155": {
|
||||||
"context": "payment status",
|
"context": "payment status",
|
||||||
"string": "Төлбөр"
|
"string": "Төлбөр"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderList_dot_2889196282": {
|
"src_dot_orders_dot_components_dot_OrderList_dot_2889196282": {
|
||||||
"string": "No. of Order"
|
"string": "Захиалгын дугаар"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderList_dot_3426593715": {
|
"src_dot_orders_dot_components_dot_OrderList_dot_3426593715": {
|
||||||
"context": "e-mail or full name",
|
"context": "e-mail or full name",
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Үлдэгдэл"
|
"string": "Үлдэгдэл"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Хямдрал"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Нийт"
|
"string": "Нийт"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Бүтээгдэхүүн үүсгэх"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Бүтээгдэхүүнүүдээс хайх"
|
"string": "Бүтээгдэхүүнүүдээс хайх"
|
||||||
},
|
},
|
||||||
|
@ -2799,7 +2811,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_2095687440": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_2095687440": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Fulfill"
|
"string": "Биелүүлэх"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_2796503714": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_2796503714": {
|
||||||
"context": "ordered products",
|
"context": "ordered products",
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Нийт"
|
"string": "Нийт"
|
||||||
|
@ -2817,13 +2833,13 @@
|
||||||
"string": "Payment successfully captured"
|
"string": "Payment successfully captured"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_1435191432": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_1435191432": {
|
||||||
"string": "Draft order successfully finalized"
|
"string": "Ноорог захиалгыг амжилттай дуусгалаа"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_1468420349": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_1468420349": {
|
||||||
"string": "Order line deleted"
|
"string": "Order line deleted"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_1475565380": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_1475565380": {
|
||||||
"string": "Fulfillment successfully updated"
|
"string": "Амжилттай шинэчлэгдлээ"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_1632861387": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_1632861387": {
|
||||||
"string": "Order line updated"
|
"string": "Order line updated"
|
||||||
|
@ -2838,7 +2854,7 @@
|
||||||
"string": "Захиалга амжилттай цуцлагдлаа"
|
"string": "Захиалга амжилттай цуцлагдлаа"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_3178394068": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_3178394068": {
|
||||||
"string": "Note successfully added"
|
"string": "Амжилттай нэмэгдлээ"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_3280942553": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_3280942553": {
|
||||||
"string": "Order payment successfully voided"
|
"string": "Order payment successfully voided"
|
||||||
|
@ -2861,7 +2877,7 @@
|
||||||
"string": "Draft Order #{orderNumber}"
|
"string": "Draft Order #{orderNumber}"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDetails_dot_927945225": {
|
"src_dot_orders_dot_views_dot_OrderDetails_dot_927945225": {
|
||||||
"string": "Fulfillment successfully cancelled"
|
"string": "Амжилттай цуцлагдаа"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_views_dot_OrderDraftList_dot_1161115149": {
|
"src_dot_orders_dot_views_dot_OrderDraftList_dot_1161115149": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Тоо хэмжээ"
|
"string": "Тоо хэмжээ"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Бүтээгдэхүүн үүсгэх"
|
"string": "Бүтээгдэхүүн үүсгэх"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
@ -4465,7 +4474,7 @@
|
||||||
"string": "No keys"
|
"string": "No keys"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_1124962330": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_1124962330": {
|
||||||
"string": "Mailing email address"
|
"string": "Имэйл хаяг"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_1672275992": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_1672275992": {
|
||||||
"context": "email sender",
|
"context": "email sender",
|
||||||
|
@ -4473,7 +4482,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_280712237": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_280712237": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Mailing Configuration"
|
"string": "Имэйлийн тохиргоо"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_297689661": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_297689661": {
|
||||||
"string": "Configurate your email address from which all automatic emails will be sent to your customers."
|
"string": "Configurate your email address from which all automatic emails will be sent to your customers."
|
||||||
|
@ -4488,7 +4497,7 @@
|
||||||
"string": "Веб Хаяг"
|
"string": "Веб Хаяг"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_70179174": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_70179174": {
|
||||||
"string": "Mailing email sender"
|
"string": "Илгээгч"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_1004240342": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_1004240342": {
|
||||||
"string": "This adress will be used to generate invoices and calculate shipping rates."
|
"string": "This adress will be used to generate invoices and calculate shipping rates."
|
||||||
|
@ -4506,7 +4515,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_280712237": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_280712237": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Mailing Configuration"
|
"string": "Имэйлийн тохиргоо"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_3657173399": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_3657173399": {
|
||||||
"string": "Таны энд оруулсан имэйл хаягийг таны харилцагчдын холбоо барих хаяг болгон ашиглах болно."
|
"string": "Таны энд оруулсан имэйл хаягийг таны харилцагчдын холбоо барих хаяг болгон ашиглах болно."
|
||||||
|
@ -4830,7 +4839,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_translations_dot_components_dot_TranslationFields_dot_363646127": {
|
"src_dot_translations_dot_components_dot_TranslationFields_dot_363646127": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Discard"
|
"string": "Болих"
|
||||||
},
|
},
|
||||||
"src_dot_translations_dot_components_dot_TranslationFields_dot_3793796047": {
|
"src_dot_translations_dot_components_dot_TranslationFields_dot_3793796047": {
|
||||||
"string": "No translation yet"
|
"string": "No translation yet"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Valgfritt"
|
"string": "Valgfritt"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Valgfritt"
|
"string": "Valgfritt"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Slett"
|
"string": "Slett"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Beskrivelse"
|
"string": "Beskrivelse"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Kanseller forsendelse"
|
"string": "Kanseller forsendelse"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Utestående beløp"
|
"string": "Utestående beløp"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Rabatt"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Forhåndsautorisert beløp"
|
"string": "Forhåndsautorisert beløp"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Opprett Produkt"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Søk etter produktnavn, attributt, produkttype, osv..."
|
"string": "Søk etter produktnavn, attributt, produkttype, osv..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Søk i Produkter"
|
"string": "Søk i Produkter"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Ikke sendt ({quantity})"
|
"string": "Ikke sendt ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Antall"
|
"string": "Antall"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Opprett Produkt"
|
"string": "Opprett Produkt"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Opprett Servicekonto"
|
"string": "Opprett Servicekonto"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Fraktmetoder"
|
"string": "Fraktmetoder"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Verwijder"
|
"string": "Verwijder"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Omschrijving"
|
"string": "Omschrijving"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Korting"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Vooraf goedgekeurd bedrag"
|
"string": "Vooraf goedgekeurd bedrag"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Totaal"
|
"string": "Totaal"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Totaal"
|
"string": "Totaal"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Hoeveelheid"
|
"string": "Hoeveelheid"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Productversie"
|
"string": "Productversie"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -4,19 +4,19 @@
|
||||||
"string": "Anuluj zamówienie"
|
"string": "Anuluj zamówienie"
|
||||||
},
|
},
|
||||||
"configurationMenuAttributes": {
|
"configurationMenuAttributes": {
|
||||||
"string": "Determine attributes used to create product types"
|
"string": "Określa atrybuty do stworzenia produktu"
|
||||||
},
|
},
|
||||||
"configurationMenuNavigation": {
|
"configurationMenuNavigation": {
|
||||||
"string": "Define how users can navigate through your store"
|
"string": "Zdefiniuj jak użytkownicy mogą poruszać się po twoim sklepie"
|
||||||
},
|
},
|
||||||
"configurationMenuPages": {
|
"configurationMenuPages": {
|
||||||
"string": "Manage and add additional pages"
|
"string": "Zarządzaj i dodaj nowe strony"
|
||||||
},
|
},
|
||||||
"configurationMenuPermissionGroups": {
|
"configurationMenuPermissionGroups": {
|
||||||
"string": "Manage your permission groups and their permissions"
|
"string": "Zarządzaj grupami uprawnień i ich uprawnieniami"
|
||||||
},
|
},
|
||||||
"configurationMenuProductTypes": {
|
"configurationMenuProductTypes": {
|
||||||
"string": "Define types of products you sell"
|
"string": "Definiuje typy produktów, które sprzedajesz"
|
||||||
},
|
},
|
||||||
"configurationMenuShipping": {
|
"configurationMenuShipping": {
|
||||||
"string": "Manage how you ship out orders"
|
"string": "Manage how you ship out orders"
|
||||||
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Usuń"
|
"string": "Usuń"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Opis"
|
"string": "Opis"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Anuluj realizację"
|
"string": "Anuluj realizację"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Zniżka"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Kwota zablokowana"
|
"string": "Kwota zablokowana"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Suma"
|
"string": "Suma"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Suma"
|
"string": "Suma"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Ilość"
|
"string": "Ilość"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Wariant"
|
"string": "Wariant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
255
locale/pt.json
|
@ -4,88 +4,88 @@
|
||||||
"string": "Cancelar Pedido"
|
"string": "Cancelar Pedido"
|
||||||
},
|
},
|
||||||
"configurationMenuAttributes": {
|
"configurationMenuAttributes": {
|
||||||
"string": "Determine attributes used to create product types"
|
"string": "Identifique atributos usados para criar tipos de produtos"
|
||||||
},
|
},
|
||||||
"configurationMenuNavigation": {
|
"configurationMenuNavigation": {
|
||||||
"string": "Define how users can navigate through your store"
|
"string": "Defina com os utilizadores navegam pela loja"
|
||||||
},
|
},
|
||||||
"configurationMenuPages": {
|
"configurationMenuPages": {
|
||||||
"string": "Manage and add additional pages"
|
"string": "Modifique e adicione páginas adicionais"
|
||||||
},
|
},
|
||||||
"configurationMenuPermissionGroups": {
|
"configurationMenuPermissionGroups": {
|
||||||
"string": "Manage your permission groups and their permissions"
|
"string": "Modifique grupos e as suas permissões"
|
||||||
},
|
},
|
||||||
"configurationMenuProductTypes": {
|
"configurationMenuProductTypes": {
|
||||||
"string": "Define types of products you sell"
|
"string": "Defina os tipos de produtos que vende"
|
||||||
},
|
},
|
||||||
"configurationMenuShipping": {
|
"configurationMenuShipping": {
|
||||||
"string": "Manage how you ship out orders"
|
"string": "Defina como envia as encomendas"
|
||||||
},
|
},
|
||||||
"configurationMenuSiteSettings": {
|
"configurationMenuSiteSettings": {
|
||||||
"string": "View and update your site settings"
|
"string": "Veja e edite as opções do site"
|
||||||
},
|
},
|
||||||
"configurationMenuStaff": {
|
"configurationMenuStaff": {
|
||||||
"string": "Manage your employees and their permissions"
|
"string": "Defina empregados e as suas permissões"
|
||||||
},
|
},
|
||||||
"configurationMenuTaxes": {
|
"configurationMenuTaxes": {
|
||||||
"string": "Manage how your store charges tax"
|
"string": "Defina como a loja gere os impostos"
|
||||||
},
|
},
|
||||||
"configurationMenuWarehouses": {
|
"configurationMenuWarehouses": {
|
||||||
"string": "Manage and update your warehouse information"
|
"string": "Defina a informação de armazém"
|
||||||
},
|
},
|
||||||
"configurationPluginsPages": {
|
"configurationPluginsPages": {
|
||||||
"string": "View and update your plugins and their settings."
|
"string": "Veja e edite os plugins e as suas opções"
|
||||||
},
|
},
|
||||||
"homeActivityCardHeader": {
|
"homeActivityCardHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Activity"
|
"string": "Actividade"
|
||||||
},
|
},
|
||||||
"homeActivityCardNoActivities": {
|
"homeActivityCardNoActivities": {
|
||||||
"string": "No activities found"
|
"string": "Nenhuma actividade encontrada"
|
||||||
},
|
},
|
||||||
"homeAnalyticsCardHeader": {
|
"homeAnalyticsCardHeader": {
|
||||||
"string": "Hoje"
|
"string": "Hoje"
|
||||||
},
|
},
|
||||||
"homeHeaderText": {
|
"homeHeaderText": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Hello there, {userName}"
|
"string": "Olá, {userName}"
|
||||||
},
|
},
|
||||||
"homeHeaderTextCaption": {
|
"homeHeaderTextCaption": {
|
||||||
"context": "subheader",
|
"context": "subheader",
|
||||||
"string": "Here is some information we gathered about your store"
|
"string": "Aqui está alguma informação que reunimos acerca da sua loja"
|
||||||
},
|
},
|
||||||
"homeNotificationTableNoOrders": {
|
"homeNotificationTableNoOrders": {
|
||||||
"string": "No orders ready to fulfill"
|
"string": "Nenhum pedido pronto a ser realizado"
|
||||||
},
|
},
|
||||||
"homeNotificationTableOrders": {
|
"homeNotificationTableOrders": {
|
||||||
"string": "{amount, plural,one {One order is ready to fulfill} other {{amount} Orders are ready to fulfill}}"
|
"string": "{amount, plural,one {Um pedido pronto a ser realizado} other {{amount} Pedidos prontos a serem realizados.}}"
|
||||||
},
|
},
|
||||||
"homeNotificationTablePayments": {
|
"homeNotificationTablePayments": {
|
||||||
"string": "{amount, plural,one {One payment to capture} other {{amount} Payments to capture}}"
|
"string": "{amount, plural,one {Um pagamento a capturar} other {{amount} Pagamentos a capturar}}"
|
||||||
},
|
},
|
||||||
"homeNotificationTableProducts": {
|
"homeNotificationTableProducts": {
|
||||||
"string": "{amount, plural,one {One product out of stock} other {{amount} Products out of stock}}"
|
"string": "{amount, plural,one {Um produto esgotado} other {{amount} Produtos esgotados}}"
|
||||||
},
|
},
|
||||||
"homeNotificationsNoPayments": {
|
"homeNotificationsNoPayments": {
|
||||||
"string": "No payments waiting for capture"
|
"string": "Nenhum pagamento a capturar"
|
||||||
},
|
},
|
||||||
"homeNotificationsTableNoProducts": {
|
"homeNotificationsTableNoProducts": {
|
||||||
"string": "No products out of stock"
|
"string": "Nenhum produto esgotado"
|
||||||
},
|
},
|
||||||
"homeProductListCardOrders": {
|
"homeProductListCardOrders": {
|
||||||
"context": "number of ordered products",
|
"context": "number of ordered products",
|
||||||
"string": "{amount, plural,one {One ordered} other {{amount} Ordered}}"
|
"string": "{amount, plural,one {Um pedido} other {{amount} Pedidos}}"
|
||||||
},
|
},
|
||||||
"homeProductsListCardHeader": {
|
"homeProductsListCardHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Top Products"
|
"string": "Top de produtos"
|
||||||
},
|
},
|
||||||
"homeProductsListCardNoProducts": {
|
"homeProductsListCardNoProducts": {
|
||||||
"string": "No products found"
|
"string": "Nenhum produto encontrado"
|
||||||
},
|
},
|
||||||
"homeScreenDisclaimer": {
|
"homeScreenDisclaimer": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Disclaimer"
|
"string": "Aviso legal"
|
||||||
},
|
},
|
||||||
"homeScreenDisclaimerText1": {
|
"homeScreenDisclaimerText1": {
|
||||||
"string": "The new dashboard and the GraphQL API are preview-quality software."
|
"string": "The new dashboard and the GraphQL API are preview-quality software."
|
||||||
|
@ -95,21 +95,21 @@
|
||||||
},
|
},
|
||||||
"homeScreenHeader": {
|
"homeScreenHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Hello there, {userName}"
|
"string": "Olá, {userName}"
|
||||||
},
|
},
|
||||||
"menuCreateDialogHeader": {
|
"menuCreateDialogHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Create Menu"
|
"string": "Criar Menu"
|
||||||
},
|
},
|
||||||
"menuCreateDialogMenuTitleLabel": {
|
"menuCreateDialogMenuTitleLabel": {
|
||||||
"string": "Menu Title"
|
"string": "Título do Menu"
|
||||||
},
|
},
|
||||||
"menuDetailsDeleteMenuContent": {
|
"menuDetailsDeleteMenuContent": {
|
||||||
"string": "Are you sure you want to delete menu {menuName}?"
|
"string": "Tem a certeza que pretende apagar o menu {menuName}?"
|
||||||
},
|
},
|
||||||
"menuDetailsDeleteMenuHeader": {
|
"menuDetailsDeleteMenuHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Delete Menu"
|
"string": "Apagar Menu"
|
||||||
},
|
},
|
||||||
"menuDetailsPageHelperText": {
|
"menuDetailsPageHelperText": {
|
||||||
"string": "Creating the navigation structure is done by dragging and dropping. Simply create a new menu item and then drag it into its destined place. You can move items inside one another to create a tree structure and drag items up and down to create a hierarchy"
|
"string": "Creating the navigation structure is done by dragging and dropping. Simply create a new menu item and then drag it into its destined place. You can move items inside one another to create a tree structure and drag items up and down to create a hierarchy"
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
},
|
},
|
||||||
"menuItemDialogAddLink": {
|
"menuItemDialogAddLink": {
|
||||||
"context": "add link to navigation",
|
"context": "add link to navigation",
|
||||||
"string": "Link to: {url}"
|
"string": "Link para: {url}"
|
||||||
},
|
},
|
||||||
"menuItemDialogEditItem": {
|
"menuItemDialogEditItem": {
|
||||||
"context": "edit menu item, header",
|
"context": "edit menu item, header",
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
"string": "Link"
|
"string": "Link"
|
||||||
},
|
},
|
||||||
"menuItemDialogLinkPlaceholder": {
|
"menuItemDialogLinkPlaceholder": {
|
||||||
"string": "Start typing to begin search..."
|
"string": "Escreva para começar a procura..."
|
||||||
},
|
},
|
||||||
"menuItemDialogNameLabel": {
|
"menuItemDialogNameLabel": {
|
||||||
"context": "menu item name",
|
"context": "menu item name",
|
||||||
|
@ -156,7 +156,7 @@
|
||||||
},
|
},
|
||||||
"menuListDeleteMenuHeader": {
|
"menuListDeleteMenuHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Delete Menu"
|
"string": "Apagar Menu"
|
||||||
},
|
},
|
||||||
"menuListDeleteMenusContent": {
|
"menuListDeleteMenusContent": {
|
||||||
"string": "{counter,plural,one {Are you sure you want to delete this menu?} other {Are you sure you want to delete {displayQuantity} menus?}}"
|
"string": "{counter,plural,one {Are you sure you want to delete this menu?} other {Are you sure you want to delete {displayQuantity} menus?}}"
|
||||||
|
@ -173,17 +173,17 @@
|
||||||
"string": "Items"
|
"string": "Items"
|
||||||
},
|
},
|
||||||
"menuListMenutitle": {
|
"menuListMenutitle": {
|
||||||
"string": "Menu Title"
|
"string": "Título do Menu"
|
||||||
},
|
},
|
||||||
"menuListNoMenus": {
|
"menuListNoMenus": {
|
||||||
"string": "No menus found"
|
"string": "No menus found"
|
||||||
},
|
},
|
||||||
"menuListPageAddMenu": {
|
"menuListPageAddMenu": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create Menu"
|
"string": "Criar Menu"
|
||||||
},
|
},
|
||||||
"menuPropertiesMenuTitle": {
|
"menuPropertiesMenuTitle": {
|
||||||
"string": "Menu Title"
|
"string": "Título do Menu"
|
||||||
},
|
},
|
||||||
"orderCustomerBillingAddressNotSet": {
|
"orderCustomerBillingAddressNotSet": {
|
||||||
"context": "no address is set in draft order",
|
"context": "no address is set in draft order",
|
||||||
|
@ -215,11 +215,11 @@
|
||||||
},
|
},
|
||||||
"productTypeCreateHeader": {
|
"productTypeCreateHeader": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product Type"
|
"string": "Criar tipo de produto"
|
||||||
},
|
},
|
||||||
"productTypeCreatePageHeader": {
|
"productTypeCreatePageHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Create Product Type"
|
"string": "Criar tipo de produto"
|
||||||
},
|
},
|
||||||
"productTypeTaxesHeader": {
|
"productTypeTaxesHeader": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
|
@ -244,59 +244,59 @@
|
||||||
},
|
},
|
||||||
"productVariantCreatorWarehouseSectionHeader": {
|
"productVariantCreatorWarehouseSectionHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Warehouses"
|
"string": "Armazéns"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalCostPriceField": {
|
"productVariantPriceOptionalCostPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Opcional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Opcional"
|
||||||
},
|
},
|
||||||
"saleDetailsPageCategoriesQuantity": {
|
"saleDetailsPageCategoriesQuantity": {
|
||||||
"context": "number of categories",
|
"context": "number of categories",
|
||||||
"string": "Categories ({quantity})"
|
"string": "Categorias ({quantity})"
|
||||||
},
|
},
|
||||||
"saleDetailsPageCollectionsQuantity": {
|
"saleDetailsPageCollectionsQuantity": {
|
||||||
"context": "number of collections",
|
"context": "number of collections",
|
||||||
"string": "Collections ({quantity})"
|
"string": "Colecções ({quantity})"
|
||||||
},
|
},
|
||||||
"saleDetailsPageProductsQuantity": {
|
"saleDetailsPageProductsQuantity": {
|
||||||
"context": "number of products",
|
"context": "number of products",
|
||||||
"string": "Products ({quantity})"
|
"string": "Produtos ({quantity})"
|
||||||
},
|
},
|
||||||
"saleDetailsUnassignCategory": {
|
"saleDetailsUnassignCategory": {
|
||||||
"context": "unassign category from sale, button",
|
"context": "unassign category from sale, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"saleDetailsUnassignCollection": {
|
"saleDetailsUnassignCollection": {
|
||||||
"context": "unassign collection from sale, button",
|
"context": "unassign collection from sale, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"saleDetailsUnassignProduct": {
|
"saleDetailsUnassignProduct": {
|
||||||
"context": "unassign product from sale, button",
|
"context": "unassign product from sale, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"shippingZoneDetailsDialogsDeleteShippingMethod": {
|
"shippingZoneDetailsDialogsDeleteShippingMethod": {
|
||||||
"context": "delete shipping method",
|
"context": "delete shipping method",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"shippingZoneDetailsDialogsDeleteShippingZone": {
|
"shippingZoneDetailsDialogsDeleteShippingZone": {
|
||||||
"context": "delete shipping zone",
|
"context": "delete shipping zone",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"shippingZoneWarehouses_dot_autocomplete_dot_label": {
|
"shippingZoneWarehouses_dot_autocomplete_dot_label": {
|
||||||
"context": "autocomplete select label",
|
"context": "autocomplete select label",
|
||||||
"string": "Warehouse"
|
"string": "Armazém"
|
||||||
},
|
},
|
||||||
"siteSettingsMailingHelperText": {
|
"siteSettingsMailingHelperText": {
|
||||||
"context": "helper text",
|
"context": "helper text",
|
||||||
"string": "Mailing Configuration"
|
"string": "Configuração de listas de e-mail"
|
||||||
},
|
},
|
||||||
"src_dot_accept": {
|
"src_dot_accept": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Accept"
|
"string": "Aceitar"
|
||||||
},
|
},
|
||||||
"src_dot_attributes": {
|
"src_dot_attributes": {
|
||||||
"context": "attributes section name",
|
"context": "attributes section name",
|
||||||
|
@ -334,46 +334,46 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_2592224946": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_2592224946": {
|
||||||
"context": "check to require attribute to have value",
|
"context": "check to require attribute to have value",
|
||||||
"string": "Value Required"
|
"string": "É necessário o valor"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3334509011": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3334509011": {
|
||||||
"context": "product attribute type",
|
"context": "product attribute type",
|
||||||
"string": "Multiple Select"
|
"string": "Selecção múltipla"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3605174225": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3605174225": {
|
||||||
"context": "attribute's slug short code label",
|
"context": "attribute's slug short code label",
|
||||||
"string": "Attribute Code"
|
"string": "Código de atributo"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_4107478955": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_4107478955": {
|
||||||
"context": "attribute slug input field helper text",
|
"context": "attribute slug input field helper text",
|
||||||
"string": "This is used internally. Make sure you don’t use spaces"
|
"string": "Isto é utilizado internamente. Não utilizar espaços"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_691600601": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_691600601": {
|
||||||
"context": "attribute's label",
|
"context": "attribute's label",
|
||||||
"string": "Default Label"
|
"string": "Etiqueta por omissão"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_2417065806": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_2417065806": {
|
||||||
"context": "tab name",
|
"context": "tab name",
|
||||||
"string": "All Attributes"
|
"string": "Todos os atributos"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_3824684885": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_3824684885": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create attribute"
|
"string": "Criar atributo"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_3916653510": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_3916653510": {
|
||||||
"string": "Search Attribute"
|
"string": "Procurar atributo"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_availableInGrid": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_availableInGrid": {
|
||||||
"context": "attribute can be column in product list table",
|
"context": "attribute can be column in product list table",
|
||||||
"string": "Can be used as column"
|
"string": "Pode ser utilizado como coluna"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInDashboard": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInDashboard": {
|
||||||
"context": "use attribute in filtering",
|
"context": "use attribute in filtering",
|
||||||
"string": "Filterable in Dashboard"
|
"string": "Pode ser filtrado no painel de controlo"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInStorefront": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_filterableInStorefront": {
|
||||||
"context": "use attribute in filtering",
|
"context": "use attribute in filtering",
|
||||||
"string": "Filterable in Storefront"
|
"string": "Pode ser filtrado na loja"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_isVariantOnly": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_isVariantOnly": {
|
||||||
"context": "attribute can be used only in variants",
|
"context": "attribute can be used only in variants",
|
||||||
|
@ -381,14 +381,14 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_valueRequired": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_valueRequired": {
|
||||||
"context": "attribute value is required",
|
"context": "attribute value is required",
|
||||||
"string": "Value Required"
|
"string": "É necessário o valor"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_visibleInStorefront": {
|
"src_dot_attributes_dot_components_dot_AttributeListPage_dot_visibleInStorefront": {
|
||||||
"context": "attribute",
|
"context": "attribute",
|
||||||
"string": "Visible on Product Page in Storefront"
|
"string": "Visível na página de produto na loja"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_1192828581": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_1192828581": {
|
||||||
"string": "No attributes found"
|
"string": "Nenhum atributo encontrado"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_2186555805": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_2186555805": {
|
||||||
"context": "attribute can be searched in storefront",
|
"context": "attribute can be searched in storefront",
|
||||||
|
@ -396,22 +396,22 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_2235596452": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_2235596452": {
|
||||||
"context": "attribute can be searched in dashboard",
|
"context": "attribute can be searched in dashboard",
|
||||||
"string": "Searchable"
|
"string": "Pode ser procurado"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_3605174225": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_3605174225": {
|
||||||
"string": "Attribute Code"
|
"string": "Código de atributo"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_643174786": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_643174786": {
|
||||||
"context": "attribute is visible",
|
"context": "attribute is visible",
|
||||||
"string": "Visible"
|
"string": "Visível"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_691600601": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_691600601": {
|
||||||
"context": "attribute's label'",
|
"context": "attribute's label'",
|
||||||
"string": "Default Label"
|
"string": "Etiqueta por omissão"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributePage_dot_2855501559": {
|
"src_dot_attributes_dot_components_dot_AttributePage_dot_2855501559": {
|
||||||
"context": "page title",
|
"context": "page title",
|
||||||
"string": "Create New Attribute"
|
"string": "Criar novo atributo"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_1318123158": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_1318123158": {
|
||||||
"context": "attribute is filterable in storefront",
|
"context": "attribute is filterable in storefront",
|
||||||
|
@ -419,11 +419,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_1877630205": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_1877630205": {
|
||||||
"context": "attribute properties regarding storefront",
|
"context": "attribute properties regarding storefront",
|
||||||
"string": "Storefront Properties"
|
"string": "Propriedades da loja"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_26409543": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_26409543": {
|
||||||
"context": "attribute properties regarding dashboard",
|
"context": "attribute properties regarding dashboard",
|
||||||
"string": "Dashboard Properties"
|
"string": "Propriedades do painel de controlo"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_3590282519": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_3590282519": {
|
||||||
"context": "attribute position in storefront filters",
|
"context": "attribute position in storefront filters",
|
||||||
|
@ -431,10 +431,10 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_3876764312": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_3876764312": {
|
||||||
"context": "attribute",
|
"context": "attribute",
|
||||||
"string": "Visible on Product Page in Storefront"
|
"string": "Visível na página de produto na loja"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_4048785456": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_4048785456": {
|
||||||
"string": "If enabled this attribute can be used as a column in product table."
|
"string": "Se activo, este atributo pode ser usado como coluna na tabela de produto"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_673770329": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_673770329": {
|
||||||
"context": "add attribute as column in product list table",
|
"context": "add attribute as column in product list table",
|
||||||
|
@ -639,7 +639,7 @@
|
||||||
"string": "Preço"
|
"string": "Preço"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1657559629": {
|
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Nenhum produto encontrado"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1952810469": {
|
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1952810469": {
|
||||||
"context": "product type",
|
"context": "product type",
|
||||||
|
@ -819,7 +819,7 @@
|
||||||
"string": "Publicado "
|
"string": "Publicado "
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1657559629": {
|
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Nenhum produto encontrado"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1952810469": {
|
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1952810469": {
|
||||||
"context": "product type",
|
"context": "product type",
|
||||||
|
@ -877,7 +877,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_views_dot_870815507": {
|
"src_dot_collections_dot_views_dot_870815507": {
|
||||||
"context": "unassign product from collection, button",
|
"context": "unassign product from collection, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_views_dot_942133001": {
|
"src_dot_collections_dot_views_dot_942133001": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
|
@ -1399,7 +1399,7 @@
|
||||||
"string": "Set publication date"
|
"string": "Set publication date"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_VisibilityCard_dot_643174786": {
|
"src_dot_components_dot_VisibilityCard_dot_643174786": {
|
||||||
"string": "Visible"
|
"string": "Visível"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_VisibilityCard_dot_77815154": {
|
"src_dot_components_dot_VisibilityCard_dot_77815154": {
|
||||||
"string": "Oculto"
|
"string": "Oculto"
|
||||||
|
@ -1669,12 +1669,16 @@
|
||||||
"string": "Delete Customers"
|
"string": "Delete Customers"
|
||||||
},
|
},
|
||||||
"src_dot_dashboard": {
|
"src_dot_dashboard": {
|
||||||
"string": "Painel de controle"
|
"string": "Painel de controlo"
|
||||||
},
|
},
|
||||||
"src_dot_delete": {
|
"src_dot_delete": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Descrição"
|
"string": "Descrição"
|
||||||
},
|
},
|
||||||
|
@ -1749,7 +1753,7 @@
|
||||||
"string": "Active Dates"
|
"string": "Active Dates"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_1657559629": {
|
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Nenhum produto encontrado"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_2100305525": {
|
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_2100305525": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -1894,15 +1898,15 @@
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherDetailsPage_dot_346170541": {
|
"src_dot_discounts_dot_components_dot_VoucherDetailsPage_dot_346170541": {
|
||||||
"context": "number of categories",
|
"context": "number of categories",
|
||||||
"string": "Categories ({quantity})"
|
"string": "Categorias ({quantity})"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherDetailsPage_dot_3673147015": {
|
"src_dot_discounts_dot_components_dot_VoucherDetailsPage_dot_3673147015": {
|
||||||
"context": "number of collections",
|
"context": "number of collections",
|
||||||
"string": "Collections ({quantity})"
|
"string": "Colecções ({quantity})"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherDetailsPage_dot_846927739": {
|
"src_dot_discounts_dot_components_dot_VoucherDetailsPage_dot_846927739": {
|
||||||
"context": "number of products",
|
"context": "number of products",
|
||||||
"string": "Products ({quantity})"
|
"string": "Produtos ({quantity})"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_VoucherInfo_dot_1262795626": {
|
"src_dot_discounts_dot_components_dot_VoucherInfo_dot_1262795626": {
|
||||||
"string": "Discount Code"
|
"string": "Discount Code"
|
||||||
|
@ -2231,7 +2235,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_optionalField": {
|
"src_dot_optionalField": {
|
||||||
"context": "field is optional",
|
"context": "field is optional",
|
||||||
"string": "Optional"
|
"string": "Opcional"
|
||||||
},
|
},
|
||||||
"src_dot_orders": {
|
"src_dot_orders": {
|
||||||
"context": "orders section name",
|
"context": "orders section name",
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancelar processo"
|
"string": "Cancelar processo"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Desconto"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Quantidade pré-autorizada"
|
"string": "Quantidade pré-autorizada"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3071,7 +3087,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_2297471173": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_2297471173": {
|
||||||
"context": "dialog content",
|
"context": "dialog content",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_3528974446": {
|
"src_dot_permissionGroups_dot_components_dot_PermissionGroupDeleteDialog_dot_3528974446": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
|
@ -3164,7 +3180,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_views_dot_PermissionGroupDetails_dot_870815507": {
|
"src_dot_permissionGroups_dot_views_dot_PermissionGroupDetails_dot_870815507": {
|
||||||
"context": "button title",
|
"context": "button title",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_views_dot_PermissionGroupList_dot_92979760": {
|
"src_dot_permissionGroups_dot_views_dot_PermissionGroupList_dot_92979760": {
|
||||||
"string": "Permission Group Deleted"
|
"string": "Permission Group Deleted"
|
||||||
|
@ -3294,7 +3310,7 @@
|
||||||
"string": "Are you sure you want to unassign {attributeName} from {productTypeName}?"
|
"string": "Are you sure you want to unassign {attributeName} from {productTypeName}?"
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeAttributes_dot_1192828581": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeAttributes_dot_1192828581": {
|
||||||
"string": "No attributes found"
|
"string": "Nenhum atributo encontrado"
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeAttributes_dot_1228425832": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeAttributes_dot_1228425832": {
|
||||||
"string": "Attribute name"
|
"string": "Attribute name"
|
||||||
|
@ -3325,7 +3341,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeDeleteDialog_dot_2297471173": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeDeleteDialog_dot_2297471173": {
|
||||||
"context": "delete product type",
|
"context": "delete product type",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeDeleteDialog_dot_924066985": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeDeleteDialog_dot_924066985": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
|
@ -3426,7 +3442,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_views_dot_ProductTypeUpdate_dot_870815507": {
|
"src_dot_productTypes_dot_views_dot_ProductTypeUpdate_dot_870815507": {
|
||||||
"context": "unassign attribute from product type, button",
|
"context": "unassign attribute from product type, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"src_dot_products": {
|
"src_dot_products": {
|
||||||
"context": "products section name",
|
"context": "products section name",
|
||||||
|
@ -3479,7 +3495,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductImagePage_dot_1905082483": {
|
"src_dot_products_dot_components_dot_ProductImagePage_dot_1905082483": {
|
||||||
"context": "field is optional",
|
"context": "field is optional",
|
||||||
"string": "Optional"
|
"string": "Opcional"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductImagePage_dot_2546267317": {
|
"src_dot_products_dot_components_dot_ProductImagePage_dot_2546267317": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
|
@ -3545,14 +3561,14 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductListPage_dot_visible": {
|
"src_dot_products_dot_components_dot_ProductListPage_dot_visible": {
|
||||||
"context": "product is visible",
|
"context": "product is visible",
|
||||||
"string": "Visible"
|
"string": "Visível"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductList_dot_1134347598": {
|
"src_dot_products_dot_components_dot_ProductList_dot_1134347598": {
|
||||||
"context": "product price",
|
"context": "product price",
|
||||||
"string": "Preço"
|
"string": "Preço"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductList_dot_1657559629": {
|
"src_dot_products_dot_components_dot_ProductList_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Nenhum produto encontrado"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductList_dot_1952810469": {
|
"src_dot_products_dot_components_dot_ProductList_dot_1952810469": {
|
||||||
"context": "product type",
|
"context": "product type",
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Quantidade"
|
"string": "Quantidade"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3758,7 +3771,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantDeleteDialog_dot_2297471173": {
|
"src_dot_products_dot_components_dot_ProductVariantDeleteDialog_dot_2297471173": {
|
||||||
"context": "delete product variant",
|
"context": "delete product variant",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductVariantDeleteDialog_dot_3726089650": {
|
"src_dot_products_dot_components_dot_ProductVariantDeleteDialog_dot_3726089650": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variante"
|
"string": "Variante"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -3937,7 +3943,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_views_dot_ProductUpdate_dot_2297471173": {
|
"src_dot_products_dot_views_dot_ProductUpdate_dot_2297471173": {
|
||||||
"context": "delete product",
|
"context": "delete product",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_views_dot_ProductUpdate_dot_4108890645": {
|
"src_dot_products_dot_views_dot_ProductUpdate_dot_4108890645": {
|
||||||
"string": "Product removed"
|
"string": "Product removed"
|
||||||
|
@ -4033,7 +4039,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_services_dot_components_dot_ServiceDeleteDialog_dot_2297471173": {
|
"src_dot_services_dot_components_dot_ServiceDeleteDialog_dot_2297471173": {
|
||||||
"context": "delete service account",
|
"context": "delete service account",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"src_dot_services_dot_components_dot_ServiceDetailsPage_dot_1848599267": {
|
"src_dot_services_dot_components_dot_ServiceDetailsPage_dot_1848599267": {
|
||||||
"context": "checkbox label",
|
"context": "checkbox label",
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
@ -4336,7 +4345,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_1221560277": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_1221560277": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Warehouse"
|
"string": "Armazém"
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_2304484478": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_2304484478": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -4473,7 +4482,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_280712237": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_280712237": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Mailing Configuration"
|
"string": "Configuração de listas de e-mail"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_297689661": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsMailing_dot_297689661": {
|
||||||
"string": "Configurate your email address from which all automatic emails will be sent to your customers."
|
"string": "Configurate your email address from which all automatic emails will be sent to your customers."
|
||||||
|
@ -4506,7 +4515,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_280712237": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_280712237": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Mailing Configuration"
|
"string": "Configuração de listas de e-mail"
|
||||||
},
|
},
|
||||||
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_3657173399": {
|
"src_dot_siteSettings_dot_components_dot_SiteSettingsPage_dot_3657173399": {
|
||||||
"string": "Email adress you provide here will be used as a contact adress for your customers."
|
"string": "Email adress you provide here will be used as a contact adress for your customers."
|
||||||
|
@ -5149,7 +5158,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_warehouses": {
|
"src_dot_warehouses": {
|
||||||
"context": "warehouses section name",
|
"context": "warehouses section name",
|
||||||
"string": "Warehouses"
|
"string": "Armazéns"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_1967111456": {
|
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_1967111456": {
|
||||||
"context": "warehouse",
|
"context": "warehouse",
|
||||||
|
@ -5223,7 +5232,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_2297471173": {
|
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_2297471173": {
|
||||||
"context": "delete webhook",
|
"context": "delete webhook",
|
||||||
"string": "Are you sure you want to delete {name}?"
|
"string": "Tem a certeza que pretende apagar {name}?"
|
||||||
},
|
},
|
||||||
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_3514087611": {
|
"src_dot_webhooks_dot_components_dot_WebhookDeleteDialog_dot_3514087611": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
|
@ -5374,14 +5383,14 @@
|
||||||
},
|
},
|
||||||
"voucherDetailsUnassignCategory": {
|
"voucherDetailsUnassignCategory": {
|
||||||
"context": "unassign category from voucher, button",
|
"context": "unassign category from voucher, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"voucherDetailsUnassignCollection": {
|
"voucherDetailsUnassignCollection": {
|
||||||
"context": "unassign collection from voucher, button",
|
"context": "unassign collection from voucher, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
},
|
},
|
||||||
"voucherDetailsUnassignProduct": {
|
"voucherDetailsUnassignProduct": {
|
||||||
"context": "unassign product from voucher, button",
|
"context": "unassign product from voucher, button",
|
||||||
"string": "Unassign"
|
"string": "Desatribuir"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Excluir"
|
"string": "Excluir"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Descrição"
|
"string": "Descrição"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancelar faturamento"
|
"string": "Cancelar faturamento"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Desconto"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Quantidade pré-autorizada"
|
"string": "Quantidade pré-autorizada"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Criar Produto"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Quantidade"
|
"string": "Quantidade"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variante"
|
"string": "Variante"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Criar Produto"
|
"string": "Criar Produto"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Métodos de Envio"
|
"string": "Métodos de Envio"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Descriere"
|
"string": "Descriere"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Anulează Livrarea"
|
"string": "Anulează Livrarea"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Reducere"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Sumă prea mare"
|
"string": "Sumă prea mare"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Cantitate"
|
"string": "Cantitate"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variantă"
|
"string": "Variantă"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
161
locale/ru.json
|
@ -4,28 +4,28 @@
|
||||||
"string": "Отменить заказ"
|
"string": "Отменить заказ"
|
||||||
},
|
},
|
||||||
"configurationMenuAttributes": {
|
"configurationMenuAttributes": {
|
||||||
"string": "Determine attributes used to create product types"
|
"string": "Определить атрибуты, используемые для создания типов товаров"
|
||||||
},
|
},
|
||||||
"configurationMenuNavigation": {
|
"configurationMenuNavigation": {
|
||||||
"string": "Define how users can navigate through your store"
|
"string": "Задать как пользователи могут перемещаться по вашему магазину"
|
||||||
},
|
},
|
||||||
"configurationMenuPages": {
|
"configurationMenuPages": {
|
||||||
"string": "Manage and add additional pages"
|
"string": "Управление и добавление дополнительных страниц"
|
||||||
},
|
},
|
||||||
"configurationMenuPermissionGroups": {
|
"configurationMenuPermissionGroups": {
|
||||||
"string": "Manage your permission groups and their permissions"
|
"string": "Управление группами разрешений и их разрешениями"
|
||||||
},
|
},
|
||||||
"configurationMenuProductTypes": {
|
"configurationMenuProductTypes": {
|
||||||
"string": "Define types of products you sell"
|
"string": "Задать типы продаваемых товаров"
|
||||||
},
|
},
|
||||||
"configurationMenuShipping": {
|
"configurationMenuShipping": {
|
||||||
"string": "Manage how you ship out orders"
|
"string": "Управление доставкой заказов"
|
||||||
},
|
},
|
||||||
"configurationMenuSiteSettings": {
|
"configurationMenuSiteSettings": {
|
||||||
"string": "View and update your site settings"
|
"string": "Просмотр и обновление настроек вашего сайта"
|
||||||
},
|
},
|
||||||
"configurationMenuStaff": {
|
"configurationMenuStaff": {
|
||||||
"string": "Manage your employees and their permissions"
|
"string": "Управление сотрудниками и их правами"
|
||||||
},
|
},
|
||||||
"configurationMenuTaxes": {
|
"configurationMenuTaxes": {
|
||||||
"string": "Manage how your store charges tax"
|
"string": "Manage how your store charges tax"
|
||||||
|
@ -41,24 +41,24 @@
|
||||||
"string": "Активность"
|
"string": "Активность"
|
||||||
},
|
},
|
||||||
"homeActivityCardNoActivities": {
|
"homeActivityCardNoActivities": {
|
||||||
"string": "No activities found"
|
"string": "Никаких действий не найдено"
|
||||||
},
|
},
|
||||||
"homeAnalyticsCardHeader": {
|
"homeAnalyticsCardHeader": {
|
||||||
"string": "Сегодня"
|
"string": "Сегодня"
|
||||||
},
|
},
|
||||||
"homeHeaderText": {
|
"homeHeaderText": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Hello there, {userName}"
|
"string": "Привет, {userName}"
|
||||||
},
|
},
|
||||||
"homeHeaderTextCaption": {
|
"homeHeaderTextCaption": {
|
||||||
"context": "subheader",
|
"context": "subheader",
|
||||||
"string": "Here is some information we gathered about your store"
|
"string": "Вот некоторые сведения, которые мы собрали о вашем магазине"
|
||||||
},
|
},
|
||||||
"homeNotificationTableNoOrders": {
|
"homeNotificationTableNoOrders": {
|
||||||
"string": "No orders ready to fulfill"
|
"string": "No orders ready to fulfill"
|
||||||
},
|
},
|
||||||
"homeNotificationTableOrders": {
|
"homeNotificationTableOrders": {
|
||||||
"string": "{amount, plural,one {One order is ready to fulfill} other {{amount} Orders are ready to fulfill}}"
|
"string": "{amount, plural,one {Один заказ готов к исполнению} few {{amount} заказа готовы к исполнению} many {{amount} заказов готовы к исполнению} other {{amount} заказов готовы к исполнению}}"
|
||||||
},
|
},
|
||||||
"homeNotificationTablePayments": {
|
"homeNotificationTablePayments": {
|
||||||
"string": "{amount, plural,one {One payment to capture} other {{amount} Payments to capture}}"
|
"string": "{amount, plural,one {One payment to capture} other {{amount} Payments to capture}}"
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
"string": "No payments waiting for capture"
|
"string": "No payments waiting for capture"
|
||||||
},
|
},
|
||||||
"homeNotificationsTableNoProducts": {
|
"homeNotificationsTableNoProducts": {
|
||||||
"string": "No products out of stock"
|
"string": "Нет продуктов с малым остатком на складе"
|
||||||
},
|
},
|
||||||
"homeProductListCardOrders": {
|
"homeProductListCardOrders": {
|
||||||
"context": "number of ordered products",
|
"context": "number of ordered products",
|
||||||
|
@ -78,14 +78,14 @@
|
||||||
},
|
},
|
||||||
"homeProductsListCardHeader": {
|
"homeProductsListCardHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Top Products"
|
"string": "Лучшие товары"
|
||||||
},
|
},
|
||||||
"homeProductsListCardNoProducts": {
|
"homeProductsListCardNoProducts": {
|
||||||
"string": "No products found"
|
"string": "Товары не найдены"
|
||||||
},
|
},
|
||||||
"homeScreenDisclaimer": {
|
"homeScreenDisclaimer": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Disclaimer"
|
"string": "Предупреждение"
|
||||||
},
|
},
|
||||||
"homeScreenDisclaimerText1": {
|
"homeScreenDisclaimerText1": {
|
||||||
"string": "The new dashboard and the GraphQL API are preview-quality software."
|
"string": "The new dashboard and the GraphQL API are preview-quality software."
|
||||||
|
@ -95,24 +95,24 @@
|
||||||
},
|
},
|
||||||
"homeScreenHeader": {
|
"homeScreenHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Hello there, {userName}"
|
"string": "Привет, {userName}"
|
||||||
},
|
},
|
||||||
"menuCreateDialogHeader": {
|
"menuCreateDialogHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Create Menu"
|
"string": "Создать меню"
|
||||||
},
|
},
|
||||||
"menuCreateDialogMenuTitleLabel": {
|
"menuCreateDialogMenuTitleLabel": {
|
||||||
"string": "Menu Title"
|
"string": "Заголовок меню"
|
||||||
},
|
},
|
||||||
"menuDetailsDeleteMenuContent": {
|
"menuDetailsDeleteMenuContent": {
|
||||||
"string": "Вы уверены, что хотите удалить menu {menuName}?"
|
"string": "Вы уверены, что хотите удалить menu {menuName}?"
|
||||||
},
|
},
|
||||||
"menuDetailsDeleteMenuHeader": {
|
"menuDetailsDeleteMenuHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Delete Menu"
|
"string": "Удалить меню"
|
||||||
},
|
},
|
||||||
"menuDetailsPageHelperText": {
|
"menuDetailsPageHelperText": {
|
||||||
"string": "Creating the navigation structure is done by dragging and dropping. Simply create a new menu item and then drag it into its destined place. You can move items inside one another to create a tree structure and drag items up and down to create a hierarchy"
|
"string": "Создание структуры навигации выполняется путем перетаскивания. Просто создайте новый пункт меню, а затем перетащите его в предназначенное ему место. Вы можете перемещать элементы на друг друга для создания древовидной структуры и перетаскивать элементы вверх и вниз для создания иерархии"
|
||||||
},
|
},
|
||||||
"menuItemDialogAddItem": {
|
"menuItemDialogAddItem": {
|
||||||
"context": "create new menu item, header",
|
"context": "create new menu item, header",
|
||||||
|
@ -120,11 +120,11 @@
|
||||||
},
|
},
|
||||||
"menuItemDialogAddLink": {
|
"menuItemDialogAddLink": {
|
||||||
"context": "add link to navigation",
|
"context": "add link to navigation",
|
||||||
"string": "Link to: {url}"
|
"string": "Ссылка на: {url}"
|
||||||
},
|
},
|
||||||
"menuItemDialogEditItem": {
|
"menuItemDialogEditItem": {
|
||||||
"context": "edit menu item, header",
|
"context": "edit menu item, header",
|
||||||
"string": "Edit Item"
|
"string": "Редактировать элемент"
|
||||||
},
|
},
|
||||||
"menuItemDialogLinkLabel": {
|
"menuItemDialogLinkLabel": {
|
||||||
"context": "label",
|
"context": "label",
|
||||||
|
@ -139,11 +139,11 @@
|
||||||
},
|
},
|
||||||
"menuItemsAddItem": {
|
"menuItemsAddItem": {
|
||||||
"context": "add new menu item",
|
"context": "add new menu item",
|
||||||
"string": "Create new item"
|
"string": "Создать новый элемент"
|
||||||
},
|
},
|
||||||
"menuItemsHeader": {
|
"menuItemsHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Menu Items"
|
"string": "Элементы меню"
|
||||||
},
|
},
|
||||||
"menuItemsPlaceholder": {
|
"menuItemsPlaceholder": {
|
||||||
"string": "Добавьте новый пункт, чтобы начать создавать меню."
|
"string": "Добавьте новый пункт, чтобы начать создавать меню."
|
||||||
|
@ -152,11 +152,11 @@
|
||||||
"string": "Created menu"
|
"string": "Created menu"
|
||||||
},
|
},
|
||||||
"menuListDeleteMenuContent": {
|
"menuListDeleteMenuContent": {
|
||||||
"string": "Are you sure you want to delete {menuName}?"
|
"string": "Вы уверены, что хотите удалить {menuName}?"
|
||||||
},
|
},
|
||||||
"menuListDeleteMenuHeader": {
|
"menuListDeleteMenuHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Delete Menu"
|
"string": "Удалить меню"
|
||||||
},
|
},
|
||||||
"menuListDeleteMenusContent": {
|
"menuListDeleteMenusContent": {
|
||||||
"string": "{counter,plural,one {Are you sure you want to delete this menu?} other {Are you sure you want to delete {displayQuantity} menus?}}"
|
"string": "{counter,plural,one {Are you sure you want to delete this menu?} other {Are you sure you want to delete {displayQuantity} menus?}}"
|
||||||
|
@ -170,20 +170,20 @@
|
||||||
},
|
},
|
||||||
"menuListItems": {
|
"menuListItems": {
|
||||||
"context": "number of menu items",
|
"context": "number of menu items",
|
||||||
"string": "Items"
|
"string": "Элементы"
|
||||||
},
|
},
|
||||||
"menuListMenutitle": {
|
"menuListMenutitle": {
|
||||||
"string": "Menu Title"
|
"string": "Заголовок меню"
|
||||||
},
|
},
|
||||||
"menuListNoMenus": {
|
"menuListNoMenus": {
|
||||||
"string": "No menus found"
|
"string": "No menus found"
|
||||||
},
|
},
|
||||||
"menuListPageAddMenu": {
|
"menuListPageAddMenu": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create Menu"
|
"string": "Создать меню"
|
||||||
},
|
},
|
||||||
"menuPropertiesMenuTitle": {
|
"menuPropertiesMenuTitle": {
|
||||||
"string": "Menu Title"
|
"string": "Заголовок меню"
|
||||||
},
|
},
|
||||||
"orderCustomerBillingAddressNotSet": {
|
"orderCustomerBillingAddressNotSet": {
|
||||||
"context": "no address is set in draft order",
|
"context": "no address is set in draft order",
|
||||||
|
@ -215,11 +215,11 @@
|
||||||
},
|
},
|
||||||
"productTypeCreateHeader": {
|
"productTypeCreateHeader": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product Type"
|
"string": "Создать тип продукта"
|
||||||
},
|
},
|
||||||
"productTypeCreatePageHeader": {
|
"productTypeCreatePageHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Create Product Type"
|
"string": "Создать тип продукта"
|
||||||
},
|
},
|
||||||
"productTypeTaxesHeader": {
|
"productTypeTaxesHeader": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
|
@ -244,13 +244,13 @@
|
||||||
},
|
},
|
||||||
"productVariantCreatorWarehouseSectionHeader": {
|
"productVariantCreatorWarehouseSectionHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Warehouses"
|
"string": "Склады"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalCostPriceField": {
|
"productVariantPriceOptionalCostPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -288,7 +288,7 @@
|
||||||
},
|
},
|
||||||
"shippingZoneWarehouses_dot_autocomplete_dot_label": {
|
"shippingZoneWarehouses_dot_autocomplete_dot_label": {
|
||||||
"context": "autocomplete select label",
|
"context": "autocomplete select label",
|
||||||
"string": "Warehouse"
|
"string": "Склад"
|
||||||
},
|
},
|
||||||
"siteSettingsMailingHelperText": {
|
"siteSettingsMailingHelperText": {
|
||||||
"context": "helper text",
|
"context": "helper text",
|
||||||
|
@ -314,7 +314,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeBulkDeleteDialog_dot_1655187315": {
|
"src_dot_attributes_dot_components_dot_AttributeBulkDeleteDialog_dot_1655187315": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
"string": "Delete attributes"
|
"string": "Удалить атрибуты"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDeleteDialog_dot_1889602489": {
|
"src_dot_attributes_dot_components_dot_AttributeDeleteDialog_dot_1889602489": {
|
||||||
"context": "dialog title",
|
"context": "dialog title",
|
||||||
|
@ -322,7 +322,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDeleteDialog_dot_3738429348": {
|
"src_dot_attributes_dot_components_dot_AttributeDeleteDialog_dot_3738429348": {
|
||||||
"context": "dialog content",
|
"context": "dialog content",
|
||||||
"string": "Are you sure you want to delete {attributeName}?"
|
"string": "Вы уверены, что Вы хотите удалить { attributeName }?"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_1005562666": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_1005562666": {
|
||||||
"context": "attribute's editor component",
|
"context": "attribute's editor component",
|
||||||
|
@ -403,7 +403,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_643174786": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_643174786": {
|
||||||
"context": "attribute is visible",
|
"context": "attribute is visible",
|
||||||
"string": "Visible"
|
"string": "Видимый"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeList_dot_691600601": {
|
"src_dot_attributes_dot_components_dot_AttributeList_dot_691600601": {
|
||||||
"context": "attribute's label'",
|
"context": "attribute's label'",
|
||||||
|
@ -419,11 +419,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_1877630205": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_1877630205": {
|
||||||
"context": "attribute properties regarding storefront",
|
"context": "attribute properties regarding storefront",
|
||||||
"string": "Storefront Properties"
|
"string": "Свойства витрины"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_26409543": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_26409543": {
|
||||||
"context": "attribute properties regarding dashboard",
|
"context": "attribute properties regarding dashboard",
|
||||||
"string": "Dashboard Properties"
|
"string": "Свойства дашборда"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_3590282519": {
|
"src_dot_attributes_dot_components_dot_AttributeProperties_dot_3590282519": {
|
||||||
"context": "attribute position in storefront filters",
|
"context": "attribute position in storefront filters",
|
||||||
|
@ -560,7 +560,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_back": {
|
"src_dot_back": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Back"
|
"string": "Назад"
|
||||||
},
|
},
|
||||||
"src_dot_cancel": {
|
"src_dot_cancel": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -639,11 +639,11 @@
|
||||||
"string": "Цена"
|
"string": "Цена"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1657559629": {
|
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Товары не найдены"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1952810469": {
|
"src_dot_categories_dot_components_dot_CategoryProductList_dot_1952810469": {
|
||||||
"context": "product type",
|
"context": "product type",
|
||||||
"string": "Type"
|
"string": "Тип"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryProductList_dot_2341910657": {
|
"src_dot_categories_dot_components_dot_CategoryProductList_dot_2341910657": {
|
||||||
"context": "product",
|
"context": "product",
|
||||||
|
@ -663,7 +663,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryProducts_dot_4164156574": {
|
"src_dot_categories_dot_components_dot_CategoryProducts_dot_4164156574": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Products in {categoryName}"
|
"string": "Товаров в {categoryName}"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryUpdatePage_dot_2159874182": {
|
"src_dot_categories_dot_components_dot_CategoryUpdatePage_dot_2159874182": {
|
||||||
"context": "number of subcategories in category",
|
"context": "number of subcategories in category",
|
||||||
|
@ -682,7 +682,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryUpdatePage_dot_770296100": {
|
"src_dot_categories_dot_components_dot_CategoryUpdatePage_dot_770296100": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create subcategory"
|
"string": "Создать подкатегорию"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_views_dot_1140231710": {
|
"src_dot_categories_dot_views_dot_1140231710": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
|
@ -819,11 +819,11 @@
|
||||||
"string": "Опубликовано"
|
"string": "Опубликовано"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1657559629": {
|
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Товары не найдены"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1952810469": {
|
"src_dot_collections_dot_components_dot_CollectionProducts_dot_1952810469": {
|
||||||
"context": "product type",
|
"context": "product type",
|
||||||
"string": "Type"
|
"string": "Тип"
|
||||||
},
|
},
|
||||||
"src_dot_collections_dot_components_dot_CollectionProducts_dot_2341910657": {
|
"src_dot_collections_dot_components_dot_CollectionProducts_dot_2341910657": {
|
||||||
"context": "product is not published",
|
"context": "product is not published",
|
||||||
|
@ -1399,7 +1399,7 @@
|
||||||
"string": "Set publication date"
|
"string": "Set publication date"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_VisibilityCard_dot_643174786": {
|
"src_dot_components_dot_VisibilityCard_dot_643174786": {
|
||||||
"string": "Visible"
|
"string": "Видимый"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_VisibilityCard_dot_77815154": {
|
"src_dot_components_dot_VisibilityCard_dot_77815154": {
|
||||||
"string": "Скрыто"
|
"string": "Скрыто"
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Удалить"
|
"string": "Удалить"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Описание"
|
"string": "Описание"
|
||||||
},
|
},
|
||||||
|
@ -1749,7 +1753,7 @@
|
||||||
"string": "Время активности"
|
"string": "Время активности"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_1657559629": {
|
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Товары не найдены"
|
||||||
},
|
},
|
||||||
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_2100305525": {
|
"src_dot_discounts_dot_components_dot_DiscountProducts_dot_2100305525": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Единица складского учёта"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Отменить пополнение"
|
"string": "Отменить пополнение"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Скидка"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Авторизованное число"
|
"string": "Авторизованное число"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Сумма"
|
"string": "Сумма"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Добавить товар"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Единица складского учёта"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Сумма"
|
"string": "Сумма"
|
||||||
|
@ -3363,7 +3379,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeListPage_dot_type": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeListPage_dot_type": {
|
||||||
"context": "product type is digital or physical",
|
"context": "product type is digital or physical",
|
||||||
"string": "Type"
|
"string": "Тип"
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeList_dot_1126553969": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeList_dot_1126553969": {
|
||||||
"string": "No product types found"
|
"string": "No product types found"
|
||||||
|
@ -3378,7 +3394,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeList_dot_1952810469": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeList_dot_1952810469": {
|
||||||
"context": "product type is either simple or configurable",
|
"context": "product type is either simple or configurable",
|
||||||
"string": "Type"
|
"string": "Тип"
|
||||||
},
|
},
|
||||||
"src_dot_productTypes_dot_components_dot_ProductTypeList_dot_2253986440": {
|
"src_dot_productTypes_dot_components_dot_ProductTypeList_dot_2253986440": {
|
||||||
"context": "product type name",
|
"context": "product type name",
|
||||||
|
@ -3507,7 +3523,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductListPage_dot_1952810469": {
|
"src_dot_products_dot_components_dot_ProductListPage_dot_1952810469": {
|
||||||
"context": "product type",
|
"context": "product type",
|
||||||
"string": "Type"
|
"string": "Тип"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductListPage_dot_3550330425": {
|
"src_dot_products_dot_components_dot_ProductListPage_dot_3550330425": {
|
||||||
"string": "Search Products..."
|
"string": "Search Products..."
|
||||||
|
@ -3545,18 +3561,18 @@
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductListPage_dot_visible": {
|
"src_dot_products_dot_components_dot_ProductListPage_dot_visible": {
|
||||||
"context": "product is visible",
|
"context": "product is visible",
|
||||||
"string": "Visible"
|
"string": "Видимый"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductList_dot_1134347598": {
|
"src_dot_products_dot_components_dot_ProductList_dot_1134347598": {
|
||||||
"context": "product price",
|
"context": "product price",
|
||||||
"string": "Цена"
|
"string": "Цена"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductList_dot_1657559629": {
|
"src_dot_products_dot_components_dot_ProductList_dot_1657559629": {
|
||||||
"string": "No products found"
|
"string": "Товары не найдены"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductList_dot_1952810469": {
|
"src_dot_products_dot_components_dot_ProductList_dot_1952810469": {
|
||||||
"context": "product type",
|
"context": "product type",
|
||||||
"string": "Type"
|
"string": "Тип"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductList_dot_2341910657": {
|
"src_dot_products_dot_components_dot_ProductList_dot_2341910657": {
|
||||||
"context": "product status",
|
"context": "product status",
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Количество"
|
"string": "Количество"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Варианты"
|
"string": "Варианты"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
@ -4336,7 +4345,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_1221560277": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_1221560277": {
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Warehouse"
|
"string": "Склад"
|
||||||
},
|
},
|
||||||
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_2304484478": {
|
"src_dot_shipping_dot_components_dot_ShippingZoneWarehouses_dot_2304484478": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
|
@ -5149,7 +5158,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_warehouses": {
|
"src_dot_warehouses": {
|
||||||
"context": "warehouses section name",
|
"context": "warehouses section name",
|
||||||
"string": "Warehouses"
|
"string": "Склады"
|
||||||
},
|
},
|
||||||
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_1967111456": {
|
"src_dot_warehouses_dot_components_dot_WarehouseCreatePage_dot_1967111456": {
|
||||||
"context": "warehouse",
|
"context": "warehouse",
|
||||||
|
|
|
@ -48,11 +48,11 @@
|
||||||
},
|
},
|
||||||
"homeHeaderText": {
|
"homeHeaderText": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Hello there, {userName}"
|
"string": "Ahoj {userName}"
|
||||||
},
|
},
|
||||||
"homeHeaderTextCaption": {
|
"homeHeaderTextCaption": {
|
||||||
"context": "subheader",
|
"context": "subheader",
|
||||||
"string": "Here is some information we gathered about your store"
|
"string": "Tu je zopár informácií, čo sme zozbierali o tvojom obchode"
|
||||||
},
|
},
|
||||||
"homeNotificationTableNoOrders": {
|
"homeNotificationTableNoOrders": {
|
||||||
"string": "No orders ready to fulfill"
|
"string": "No orders ready to fulfill"
|
||||||
|
@ -78,7 +78,7 @@
|
||||||
},
|
},
|
||||||
"homeProductsListCardHeader": {
|
"homeProductsListCardHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Top Products"
|
"string": "Top Produkty"
|
||||||
},
|
},
|
||||||
"homeProductsListCardNoProducts": {
|
"homeProductsListCardNoProducts": {
|
||||||
"string": "No products found"
|
"string": "No products found"
|
||||||
|
@ -95,11 +95,11 @@
|
||||||
},
|
},
|
||||||
"homeScreenHeader": {
|
"homeScreenHeader": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Hello there, {userName}"
|
"string": "Ahoj {userName}"
|
||||||
},
|
},
|
||||||
"menuCreateDialogHeader": {
|
"menuCreateDialogHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Create Menu"
|
"string": "Vytvoriť menu"
|
||||||
},
|
},
|
||||||
"menuCreateDialogMenuTitleLabel": {
|
"menuCreateDialogMenuTitleLabel": {
|
||||||
"string": "Menu Title"
|
"string": "Menu Title"
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
},
|
},
|
||||||
"menuDetailsDeleteMenuHeader": {
|
"menuDetailsDeleteMenuHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Delete Menu"
|
"string": "Vymazať menu"
|
||||||
},
|
},
|
||||||
"menuDetailsPageHelperText": {
|
"menuDetailsPageHelperText": {
|
||||||
"string": "Creating the navigation structure is done by dragging and dropping. Simply create a new menu item and then drag it into its destined place. You can move items inside one another to create a tree structure and drag items up and down to create a hierarchy"
|
"string": "Creating the navigation structure is done by dragging and dropping. Simply create a new menu item and then drag it into its destined place. You can move items inside one another to create a tree structure and drag items up and down to create a hierarchy"
|
||||||
|
@ -156,7 +156,7 @@
|
||||||
},
|
},
|
||||||
"menuListDeleteMenuHeader": {
|
"menuListDeleteMenuHeader": {
|
||||||
"context": "dialog header",
|
"context": "dialog header",
|
||||||
"string": "Delete Menu"
|
"string": "Vymazať menu"
|
||||||
},
|
},
|
||||||
"menuListDeleteMenusContent": {
|
"menuListDeleteMenusContent": {
|
||||||
"string": "{counter,plural,one {Are you sure you want to delete this menu?} other {Are you sure you want to delete {displayQuantity} menus?}}"
|
"string": "{counter,plural,one {Are you sure you want to delete this menu?} other {Are you sure you want to delete {displayQuantity} menus?}}"
|
||||||
|
@ -180,7 +180,7 @@
|
||||||
},
|
},
|
||||||
"menuListPageAddMenu": {
|
"menuListPageAddMenu": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create Menu"
|
"string": "Vytvoriť menu"
|
||||||
},
|
},
|
||||||
"menuPropertiesMenuTitle": {
|
"menuPropertiesMenuTitle": {
|
||||||
"string": "Menu Title"
|
"string": "Menu Title"
|
||||||
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -296,7 +296,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_accept": {
|
"src_dot_accept": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Accept"
|
"string": "Potvrdiť"
|
||||||
},
|
},
|
||||||
"src_dot_attributes": {
|
"src_dot_attributes": {
|
||||||
"context": "attributes section name",
|
"context": "attributes section name",
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Vymazať"
|
"string": "Vymazať"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Popis"
|
"string": "Popis"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Skladová jednotka "
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Zrušiť naplnenie"
|
"string": "Zrušiť naplnenie"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Zľava"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Povolená čiastka"
|
"string": "Povolená čiastka"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Celkom"
|
"string": "Celkom"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Skladová jednotka "
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Celkom"
|
"string": "Celkom"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Počet"
|
"string": "Počet"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Varianta"
|
"string": "Varianta"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Opis"
|
"string": "Opis"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU - številka izdelka"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Skupna vsota"
|
"string": "Skupna vsota"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU - številka izdelka"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Skupna vsota"
|
"string": "Skupna vsota"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Količina"
|
"string": "Količina"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Različica"
|
"string": "Različica"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Pershkrimi"
|
"string": "Pershkrimi"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Anullo perfundimin"
|
"string": "Anullo perfundimin"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Zbritje"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Shuma e autorizuar me pare"
|
"string": "Shuma e autorizuar me pare"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Totali"
|
"string": "Totali"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Totali"
|
"string": "Totali"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Sasia"
|
"string": "Sasia"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Opis"
|
"string": "Opis"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Količina"
|
"string": "Količina"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Beskrivning"
|
"string": "Beskrivning"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Avbryt köp"
|
"string": "Avbryt köp"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Rabatt"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Summa för automatisk betalning"
|
"string": "Summa för automatisk betalning"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Totalsumma"
|
"string": "Totalsumma"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Totalsumma"
|
"string": "Totalsumma"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Antal"
|
"string": "Antal"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "คำอธิบายา"
|
"string": "คำอธิบายา"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "รหัสสินค้า"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "ส่วนลด"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "รวมทั้งหมด"
|
"string": "รวมทั้งหมด"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "รหัสสินค้า"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "รวมทั้งหมด"
|
"string": "รวมทั้งหมด"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "จำนวน"
|
"string": "จำนวน"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Variant"
|
"string": "Variant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "İsteğe bağlı"
|
"string": "İsteğe bağlı"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "İsteğe bağlı"
|
"string": "İsteğe bağlı"
|
||||||
},
|
},
|
||||||
|
@ -296,7 +296,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_accept": {
|
"src_dot_accept": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Accept"
|
"string": "Kabul et"
|
||||||
},
|
},
|
||||||
"src_dot_attributes": {
|
"src_dot_attributes": {
|
||||||
"context": "attributes section name",
|
"context": "attributes section name",
|
||||||
|
@ -338,7 +338,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3334509011": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3334509011": {
|
||||||
"context": "product attribute type",
|
"context": "product attribute type",
|
||||||
"string": "Multiple Select"
|
"string": "Çoklu Seçim"
|
||||||
},
|
},
|
||||||
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3605174225": {
|
"src_dot_attributes_dot_components_dot_AttributeDetails_dot_3605174225": {
|
||||||
"context": "attribute's slug short code label",
|
"context": "attribute's slug short code label",
|
||||||
|
@ -568,10 +568,10 @@
|
||||||
},
|
},
|
||||||
"src_dot_cancelled": {
|
"src_dot_cancelled": {
|
||||||
"context": "order status",
|
"context": "order status",
|
||||||
"string": "Cancelled"
|
"string": "İptal Edildi"
|
||||||
},
|
},
|
||||||
"src_dot_catalog": {
|
"src_dot_catalog": {
|
||||||
"string": "Catalog"
|
"string": "Katalog"
|
||||||
},
|
},
|
||||||
"src_dot_categories": {
|
"src_dot_categories": {
|
||||||
"context": "categories section name",
|
"context": "categories section name",
|
||||||
|
@ -587,7 +587,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryCreatePage_dot_236319840": {
|
"src_dot_categories_dot_components_dot_CategoryCreatePage_dot_236319840": {
|
||||||
"context": "page header",
|
"context": "page header",
|
||||||
"string": "Create New Category"
|
"string": "Yeni Kategori Oluştur"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryCreatePage_dot_2563994280": {
|
"src_dot_categories_dot_components_dot_CategoryCreatePage_dot_2563994280": {
|
||||||
"string": "Add search engine title and description to make this category easier to find"
|
"string": "Add search engine title and description to make this category easier to find"
|
||||||
|
@ -608,7 +608,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryListPage_dot_1140231710": {
|
"src_dot_categories_dot_components_dot_CategoryListPage_dot_1140231710": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create category"
|
"string": "Kategori oluştur"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryListPage_dot_3841025483": {
|
"src_dot_categories_dot_components_dot_CategoryListPage_dot_3841025483": {
|
||||||
"string": "Search Category"
|
"string": "Search Category"
|
||||||
|
@ -682,11 +682,11 @@
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_components_dot_CategoryUpdatePage_dot_770296100": {
|
"src_dot_categories_dot_components_dot_CategoryUpdatePage_dot_770296100": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Create subcategory"
|
"string": "Alt kategori oluştur"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_views_dot_1140231710": {
|
"src_dot_categories_dot_views_dot_1140231710": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create category"
|
"string": "Kategori oluştur"
|
||||||
},
|
},
|
||||||
"src_dot_categories_dot_views_dot_1204353135": {
|
"src_dot_categories_dot_views_dot_1204353135": {
|
||||||
"string": "{counter,plural,one {Are you sure you want to delete this product?} other {Are you sure you want to delete {displayQuantity} products?}}"
|
"string": "{counter,plural,one {Are you sure you want to delete this product?} other {Are you sure you want to delete {displayQuantity} products?}}"
|
||||||
|
@ -1187,7 +1187,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Navigator_dot_2935523260": {
|
"src_dot_components_dot_Navigator_dot_2935523260": {
|
||||||
"context": "navigator placeholder",
|
"context": "navigator placeholder",
|
||||||
"string": "Search in Catalog"
|
"string": "Katalogta ara"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Navigator_dot_3060198201": {
|
"src_dot_components_dot_Navigator_dot_3060198201": {
|
||||||
"context": "navigator section header",
|
"context": "navigator section header",
|
||||||
|
@ -1256,7 +1256,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Navigator_dot_modes_dot_helpCatalogMode": {
|
"src_dot_components_dot_Navigator_dot_modes_dot_helpCatalogMode": {
|
||||||
"context": "navigator catalog mode description",
|
"context": "navigator catalog mode description",
|
||||||
"string": "Search in Catalog"
|
"string": "Katalogta ara"
|
||||||
},
|
},
|
||||||
"src_dot_components_dot_Navigator_dot_modes_dot_helpCommandsMode": {
|
"src_dot_components_dot_Navigator_dot_modes_dot_helpCommandsMode": {
|
||||||
"context": "navigator command mode description",
|
"context": "navigator command mode description",
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Açıklama"
|
"string": "Açıklama"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Barkod"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "İndirim"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Preauthorized amount"
|
"string": "Preauthorized amount"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Toplam"
|
"string": "Toplam"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "Barkod"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Toplam"
|
"string": "Toplam"
|
||||||
|
@ -3157,7 +3173,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_views_dot_PermissionGroupCreate_dot_1140231710": {
|
"src_dot_permissionGroups_dot_views_dot_PermissionGroupCreate_dot_1140231710": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create category"
|
"string": "Kategori oluştur"
|
||||||
},
|
},
|
||||||
"src_dot_permissionGroups_dot_views_dot_PermissionGroupCreate_dot_3930588328": {
|
"src_dot_permissionGroups_dot_views_dot_PermissionGroupCreate_dot_3930588328": {
|
||||||
"string": "Permission group created"
|
"string": "Permission group created"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Adet"
|
"string": "Adet"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Varyant"
|
"string": "Varyant"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
@ -4817,7 +4826,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_translations": {
|
"src_dot_translations": {
|
||||||
"context": "translations section name",
|
"context": "translations section name",
|
||||||
"string": "Translations"
|
"string": "Çeviriler"
|
||||||
},
|
},
|
||||||
"src_dot_translations_dot_components_dot_TranslationFields_dot_1308081812": {
|
"src_dot_translations_dot_components_dot_TranslationFields_dot_1308081812": {
|
||||||
"string": "{numberOfFields} Translations, {numberOfTranslatedFields} Completed"
|
"string": "{numberOfFields} Translations, {numberOfTranslatedFields} Completed"
|
||||||
|
@ -4883,7 +4892,7 @@
|
||||||
},
|
},
|
||||||
"src_dot_translations_dot_components_dot_TranslationsEntitiesListPage_dot_2460580333": {
|
"src_dot_translations_dot_components_dot_TranslationsEntitiesListPage_dot_2460580333": {
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Translations to {language}"
|
"string": "{language} Çeviriler"
|
||||||
},
|
},
|
||||||
"src_dot_translations_dot_components_dot_TranslationsEntitiesListPage_dot_2559018090": {
|
"src_dot_translations_dot_components_dot_TranslationsEntitiesListPage_dot_2559018090": {
|
||||||
"string": "Search Page"
|
"string": "Search Page"
|
||||||
|
@ -4923,7 +4932,7 @@
|
||||||
"string": "No translatable entities found"
|
"string": "No translatable entities found"
|
||||||
},
|
},
|
||||||
"src_dot_translations_dot_components_dot_TranslationsEntitiesList_dot_49462429": {
|
"src_dot_translations_dot_components_dot_TranslationsEntitiesList_dot_49462429": {
|
||||||
"string": "Completed Translations"
|
"string": "Tamamlanmış Çeviriler"
|
||||||
},
|
},
|
||||||
"src_dot_translations_dot_components_dot_TranslationsEntitiesList_dot_636461959": {
|
"src_dot_translations_dot_components_dot_TranslationsEntitiesList_dot_636461959": {
|
||||||
"context": "entity (product, collection, shipping method) name",
|
"context": "entity (product, collection, shipping method) name",
|
||||||
|
|
1079
locale/uk.json
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Không bắt buộc"
|
"string": "Không bắt buộc"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Không bắt buộc"
|
"string": "Không bắt buộc"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Xoá"
|
"string": "Xoá"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "Mô tả"
|
"string": "Mô tả"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Huỷ Giao Hàng"
|
"string": "Huỷ Giao Hàng"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Số tiền cần xử lý"
|
"string": "Số tiền cần xử lý"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Số tiền đã được uỷ quyền"
|
"string": "Số tiền đã được uỷ quyền"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Tổng"
|
"string": "Tổng"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Tạo Sản Phẩm"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Tìm bằng tên sản phẩm, thuộc tính, chủng loại, ..."
|
"string": "Tìm bằng tên sản phẩm, thuộc tính, chủng loại, ..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Tìm Các Sản Phẩm"
|
"string": "Tìm Các Sản Phẩm"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Chưa Đáp Ứng ({quantity})"
|
"string": "Chưa Đáp Ứng ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "SKU"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Tổng"
|
"string": "Tổng"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "Số lượng"
|
"string": "Số lượng"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "Biến Thể"
|
"string": "Biến Thể"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Tạo Sản Phẩm"
|
"string": "Tạo Sản Phẩm"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Tạo Tài Khoản Dịch Vụ"
|
"string": "Tạo Tài Khoản Dịch Vụ"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Cách Thức Vận Chuyển"
|
"string": "Cách Thức Vận Chuyển"
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
"productVariantPriceOptionalPriceOverrideField": {
|
"productVariantPriceOptionalPriceField": {
|
||||||
"context": "optional field",
|
"context": "optional field",
|
||||||
"string": "Optional"
|
"string": "Optional"
|
||||||
},
|
},
|
||||||
|
@ -1675,6 +1675,10 @@
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Delete"
|
"string": "Delete"
|
||||||
},
|
},
|
||||||
|
"src_dot_demo": {
|
||||||
|
"context": "notification message after log in",
|
||||||
|
"string": "Just to let you know... You're in demo mode. You can play around with the dashboard but can't save changes."
|
||||||
|
},
|
||||||
"src_dot_description": {
|
"src_dot_description": {
|
||||||
"string": "描述"
|
"string": "描述"
|
||||||
},
|
},
|
||||||
|
@ -2532,6 +2536,10 @@
|
||||||
"context": "cancelled fulfillment, section header",
|
"context": "cancelled fulfillment, section header",
|
||||||
"string": "Cancelled ({quantity})"
|
"string": "Cancelled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "庫存單位"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
"src_dot_orders_dot_components_dot_OrderFulfillment_dot_732594284": {
|
||||||
"context": "button",
|
"context": "button",
|
||||||
"string": "Cancel Fulfillment"
|
"string": "Cancel Fulfillment"
|
||||||
|
@ -2749,6 +2757,10 @@
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "Outstanding Balance"
|
"string": "Outstanding Balance"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3720114122": {
|
||||||
|
"context": "order discount",
|
||||||
|
"string": "Discount"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
"src_dot_orders_dot_components_dot_OrderPayment_dot_3768782744": {
|
||||||
"context": "order payment",
|
"context": "order payment",
|
||||||
"string": "預先授權金額"
|
"string": "預先授權金額"
|
||||||
|
@ -2768,10 +2780,6 @@
|
||||||
"context": "order total price",
|
"context": "order total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
},
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_1542417144": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Create Product"
|
|
||||||
},
|
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2272209368": {
|
||||||
"context": "variant sku",
|
"context": "variant sku",
|
||||||
"string": "SKU {sku}"
|
"string": "SKU {sku}"
|
||||||
|
@ -2779,6 +2787,10 @@
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2336947364": {
|
||||||
"string": "Search by product name, attribute, product type etc..."
|
"string": "Search by product name, attribute, product type etc..."
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2775402904": {
|
||||||
|
"context": "dialog header",
|
||||||
|
"string": "Add Product"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
"src_dot_orders_dot_components_dot_OrderProductAddDialog_dot_2850255786": {
|
||||||
"string": "Search Products"
|
"string": "Search Products"
|
||||||
},
|
},
|
||||||
|
@ -2809,6 +2821,10 @@
|
||||||
"context": "section header",
|
"context": "section header",
|
||||||
"string": "Unfulfilled ({quantity})"
|
"string": "Unfulfilled ({quantity})"
|
||||||
},
|
},
|
||||||
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_693960049": {
|
||||||
|
"context": "ordered product sku",
|
||||||
|
"string": "庫存單位"
|
||||||
|
},
|
||||||
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
"src_dot_orders_dot_components_dot_OrderUnfulfilledItems_dot_878013594": {
|
||||||
"context": "order line total price",
|
"context": "order line total price",
|
||||||
"string": "Total"
|
"string": "Total"
|
||||||
|
@ -3621,17 +3637,14 @@
|
||||||
"context": "header",
|
"context": "header",
|
||||||
"string": "庫存"
|
"string": "庫存"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3143542809": {
|
|
||||||
"string": "This product doesn't have any stock. You can add it <l>here</l>."
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3482985373": {
|
|
||||||
"context": "button",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3633706025": {
|
||||||
"context": "product inventory, checkbox",
|
"context": "product inventory, checkbox",
|
||||||
"string": "Track Inventory"
|
"string": "Track Inventory"
|
||||||
},
|
},
|
||||||
|
"src_dot_products_dot_components_dot_ProductStocks_dot_3857433664": {
|
||||||
|
"context": "button",
|
||||||
|
"string": "Assign Warehouse"
|
||||||
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
"src_dot_products_dot_components_dot_ProductStocks_dot_849869830": {
|
||||||
"string": "Active inventory tracking will automatically calculate changes of stock"
|
"string": "Active inventory tracking will automatically calculate changes of stock"
|
||||||
},
|
},
|
||||||
|
@ -3859,13 +3872,6 @@
|
||||||
"context": "product variant name",
|
"context": "product variant name",
|
||||||
"string": "複合式"
|
"string": "複合式"
|
||||||
},
|
},
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_3482985373": {
|
|
||||||
"context": "dialog header",
|
|
||||||
"string": "Edit Warehouses"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_components_dot_ProductWarehousesDialog_dot_4112406382": {
|
|
||||||
"string": "Select warehouses that stock selected product"
|
|
||||||
},
|
|
||||||
"src_dot_products_dot_views_dot_1542417144": {
|
"src_dot_products_dot_views_dot_1542417144": {
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Product"
|
"string": "Create Product"
|
||||||
|
@ -4147,6 +4153,9 @@
|
||||||
"context": "window title",
|
"context": "window title",
|
||||||
"string": "Create Service Account"
|
"string": "Create Service Account"
|
||||||
},
|
},
|
||||||
|
"src_dot_sessionExpired": {
|
||||||
|
"string": "Your session has expired. Please log in again to continue."
|
||||||
|
},
|
||||||
"src_dot_shipping": {
|
"src_dot_shipping": {
|
||||||
"context": "shipping section name",
|
"context": "shipping section name",
|
||||||
"string": "Shipping Methods"
|
"string": "Shipping Methods"
|
||||||
|
|
2830
package-lock.json
generated
65
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "saleor-dashboard",
|
"name": "saleor-dashboard",
|
||||||
"version": "2.10.1",
|
"version": "2.11.0-a.0",
|
||||||
"main": "src/index.tsx",
|
"main": "src/index.tsx",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -20,6 +20,7 @@
|
||||||
"@material-ui/core": "^4.5.1",
|
"@material-ui/core": "^4.5.1",
|
||||||
"@material-ui/icons": "^4.5.1",
|
"@material-ui/icons": "^4.5.1",
|
||||||
"@material-ui/styles": "^4.5.2",
|
"@material-ui/styles": "^4.5.2",
|
||||||
|
"@saleor/macaw-ui": "^0.1.1-9",
|
||||||
"apollo": "^2.21.2",
|
"apollo": "^2.21.2",
|
||||||
"apollo-cache-inmemory": "^1.6.5",
|
"apollo-cache-inmemory": "^1.6.5",
|
||||||
"apollo-client": "^2.6.8",
|
"apollo-client": "^2.6.8",
|
||||||
|
@ -52,11 +53,13 @@
|
||||||
"react-dom": "^16.9.0",
|
"react-dom": "^16.9.0",
|
||||||
"react-dropzone": "^8.2.0",
|
"react-dropzone": "^8.2.0",
|
||||||
"react-error-boundary": "^1.2.5",
|
"react-error-boundary": "^1.2.5",
|
||||||
|
"react-gtm-module": "^2.0.8",
|
||||||
"react-helmet": "^5.2.1",
|
"react-helmet": "^5.2.1",
|
||||||
"react-infinite-scroller": "^1.2.4",
|
"react-infinite-scroller": "^1.2.4",
|
||||||
"react-inlinesvg": "^0.8.4",
|
"react-inlinesvg": "^0.8.4",
|
||||||
"react-intl": "^3.1.8",
|
"react-intl": "^3.1.8",
|
||||||
"react-jss": "^10.0.0",
|
"react-jss": "^10.0.0",
|
||||||
|
"react-markdown": "^4.3.1",
|
||||||
"react-moment": "^0.9.7",
|
"react-moment": "^0.9.7",
|
||||||
"react-router": "^5.0.1",
|
"react-router": "^5.0.1",
|
||||||
"react-router-dom": "^5.0.1",
|
"react-router-dom": "^5.0.1",
|
||||||
|
@ -80,6 +83,9 @@
|
||||||
"@babel/preset-react": "^7.7.4",
|
"@babel/preset-react": "^7.7.4",
|
||||||
"@babel/preset-typescript": "^7.7.4",
|
"@babel/preset-typescript": "^7.7.4",
|
||||||
"@babel/runtime": "^7.7.6",
|
"@babel/runtime": "^7.7.6",
|
||||||
|
"@pollyjs/adapter-node-http": "^4.3.0",
|
||||||
|
"@pollyjs/core": "^4.3.0",
|
||||||
|
"@pollyjs/persister-fs": "^4.3.0",
|
||||||
"@storybook/addon-storyshots": "^5.2.8",
|
"@storybook/addon-storyshots": "^5.2.8",
|
||||||
"@storybook/react": "^5.1.9",
|
"@storybook/react": "^5.1.9",
|
||||||
"@testing-library/react-hooks": "^1.1.0",
|
"@testing-library/react-hooks": "^1.1.0",
|
||||||
|
@ -90,6 +96,9 @@
|
||||||
"@types/jest": "^24.0.24",
|
"@types/jest": "^24.0.24",
|
||||||
"@types/lodash-es": "^4.17.3",
|
"@types/lodash-es": "^4.17.3",
|
||||||
"@types/moment-timezone": "^0.5.12",
|
"@types/moment-timezone": "^0.5.12",
|
||||||
|
"@types/node-fetch": "^2.5.7",
|
||||||
|
"@types/pollyjs__adapter-node-http": "^2.0.0",
|
||||||
|
"@types/pollyjs__persister-fs": "^2.0.0",
|
||||||
"@types/react": "^16.9.16",
|
"@types/react": "^16.9.16",
|
||||||
"@types/react-dom": "^16.8.5",
|
"@types/react-dom": "^16.8.5",
|
||||||
"@types/react-dropzone": "^4.2.2",
|
"@types/react-dropzone": "^4.2.2",
|
||||||
|
@ -100,6 +109,7 @@
|
||||||
"@types/react-sortable-tree": "^0.3.6",
|
"@types/react-sortable-tree": "^0.3.6",
|
||||||
"@types/react-test-renderer": "^16.8.2",
|
"@types/react-test-renderer": "^16.8.2",
|
||||||
"@types/semver-compare": "^1.0.1",
|
"@types/semver-compare": "^1.0.1",
|
||||||
|
"@types/setup-polly-jest": "^0.5.0",
|
||||||
"@types/storybook__addon-storyshots": "^3.4.9",
|
"@types/storybook__addon-storyshots": "^3.4.9",
|
||||||
"@types/storybook__react": "^4.0.2",
|
"@types/storybook__react": "^4.0.2",
|
||||||
"@types/url-join": "^4.0.0",
|
"@types/url-join": "^4.0.0",
|
||||||
|
@ -111,41 +121,51 @@
|
||||||
"babel-loader": "^8.0.6",
|
"babel-loader": "^8.0.6",
|
||||||
"babel-plugin-react-intl": "^5.1.11",
|
"babel-plugin-react-intl": "^5.1.11",
|
||||||
"babel-plugin-react-intl-auto": "^3.1.0",
|
"babel-plugin-react-intl-auto": "^3.1.0",
|
||||||
"codecov": "^3.6.5",
|
"codecov": "^3.7.1",
|
||||||
"core-js": "^3.5.0",
|
"core-js": "^3.5.0",
|
||||||
"cross-env": "^6.0.3",
|
"cross-env": "^6.0.3",
|
||||||
|
"cypress": "^4.9.0",
|
||||||
"enzyme": "^3.10.0",
|
"enzyme": "^3.10.0",
|
||||||
"enzyme-adapter-react-16": "^1.14.0",
|
"enzyme-adapter-react-16": "^1.14.0",
|
||||||
"enzyme-to-json": "^3.3.5",
|
"enzyme-to-json": "^3.3.5",
|
||||||
"eslint": "^6.7.1",
|
"eslint": "^6.8.0",
|
||||||
"eslint-loader": "^3.0.2",
|
"eslint-loader": "^3.0.2",
|
||||||
"eslint-plugin-import": "^2.19.1",
|
"eslint-plugin-import": "^2.19.1",
|
||||||
"eslint-plugin-local-rules": "^0.1.1",
|
"eslint-plugin-local-rules": "^0.1.1",
|
||||||
"eslint-plugin-prefer-arrow": "^1.1.6",
|
"eslint-plugin-prefer-arrow": "^1.1.6",
|
||||||
|
"eslint-plugin-simple-import-sort": "^5.0.3",
|
||||||
"file-loader": "^5.0.2",
|
"file-loader": "^5.0.2",
|
||||||
"fork-ts-checker-webpack-plugin": "^3.1.1",
|
"fork-ts-checker-webpack-plugin": "^3.1.1",
|
||||||
"html-webpack-plugin": "^3.2.0",
|
"html-webpack-plugin": "^3.2.0",
|
||||||
"husky": "^3.0.8",
|
"husky": "^3.0.8",
|
||||||
"jest": "^24.8.0",
|
"jest": "^24.8.0",
|
||||||
"jest-file": "^1.0.0",
|
"jest-file": "^1.0.0",
|
||||||
|
"jest-localstorage-mock": "^2.4.3",
|
||||||
"lint-staged": "^9.4.2",
|
"lint-staged": "^9.4.2",
|
||||||
|
"mock-apollo-client": "^0.4.0",
|
||||||
|
"node-fetch": "^2.6.1",
|
||||||
"prettier": "^1.19.1",
|
"prettier": "^1.19.1",
|
||||||
"react-intl-translations-manager": "^5.0.3",
|
"react-intl-translations-manager": "^5.0.3",
|
||||||
"react-test-renderer": "^16.12.0",
|
"react-test-renderer": "^16.12.0",
|
||||||
"regenerator-runtime": "^0.11.1",
|
"regenerator-runtime": "^0.11.1",
|
||||||
"require-context.macro": "^1.1.1",
|
"require-context.macro": "^1.1.1",
|
||||||
"rimraf": "^3.0.0",
|
"rimraf": "^3.0.0",
|
||||||
|
"start-server-and-test": "^1.11.0",
|
||||||
|
"setup-polly-jest": "^0.8.0",
|
||||||
"testcafe": "^1.3.3",
|
"testcafe": "^1.3.3",
|
||||||
"ts-jest": "^24.2.0",
|
"ts-jest": "^24.2.0",
|
||||||
"tsconfig-paths-webpack-plugin": "^3.2.0",
|
"tsconfig-paths-webpack-plugin": "^3.2.0",
|
||||||
"webpack": "^4.35.3",
|
"webpack": "^4.35.3",
|
||||||
"webpack-cli": "^3.3.6",
|
"webpack-cli": "^3.3.6",
|
||||||
"webpack-dev-server": "^3.10.1"
|
"webpack-dev-server": "^3.11.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"fsevents": "^1.2.9"
|
"fsevents": "^1.2.9"
|
||||||
},
|
},
|
||||||
"jest": {
|
"jest": {
|
||||||
|
"setupFiles": [
|
||||||
|
"jest-localstorage-mock"
|
||||||
|
],
|
||||||
"transform": {
|
"transform": {
|
||||||
"^.+\\.(jsx?|tsx?)$": "babel-jest",
|
"^.+\\.(jsx?|tsx?)$": "babel-jest",
|
||||||
"^.+\\.(png|svg|jpe?g)$": "jest-file"
|
"^.+\\.(png|svg|jpe?g)$": "jest-file"
|
||||||
|
@ -162,7 +182,7 @@
|
||||||
"moduleNameMapper": {
|
"moduleNameMapper": {
|
||||||
"@assets(.*)$": "<rootDir>/assets/$1",
|
"@assets(.*)$": "<rootDir>/assets/$1",
|
||||||
"@locale(.*)$": "<rootDir>/locale/$1",
|
"@locale(.*)$": "<rootDir>/locale/$1",
|
||||||
"@saleor(.*)$": "<rootDir>/src/$1",
|
"@saleor(?!.*macaw)(.*)$": "<rootDir>/src/$1",
|
||||||
"@test/(.*)$": "<rootDir>/testUtils/$1",
|
"@test/(.*)$": "<rootDir>/testUtils/$1",
|
||||||
"^lodash-es(.*)$": "lodash/$1"
|
"^lodash-es(.*)$": "lodash/$1"
|
||||||
}
|
}
|
||||||
|
@ -178,22 +198,33 @@
|
||||||
"eslint --fix",
|
"eslint --fix",
|
||||||
"prettier --write",
|
"prettier --write",
|
||||||
"git add"
|
"git add"
|
||||||
|
],
|
||||||
|
"*.{js,jsx}": [
|
||||||
|
"eslint --fix",
|
||||||
|
"prettier --write",
|
||||||
|
"git add"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack -p",
|
|
||||||
"extract-json-messages": "rimraf build/locale && cross-env NODE_ENV=extract babel src 'src/**/*.{ts,tsx}' -o build/dashboard.bundle.js",
|
|
||||||
"transpile-messages": "node scripts/transpile-tx.js",
|
|
||||||
"extract-messages": "npm run extract-json-messages && npm run transpile-messages",
|
|
||||||
"build-types": "apollo client:codegen --target=typescript types --globalTypesFile=src/types/globalTypes.ts",
|
|
||||||
"check-types": "tsc --noEmit",
|
|
||||||
"check-strict-null-errors": "tsc --noEmit --strictNullChecks | node scripts/count-strict-null-check-errors.js",
|
|
||||||
"generate-component": "plop --plopfile .plop/plopfile.js",
|
|
||||||
"start": "webpack-dev-server --open -d",
|
|
||||||
"storybook": "start-storybook -p 3000 -c src/storybook/",
|
|
||||||
"build-storybook": "build-storybook -c src/storybook/ -o build/storybook",
|
"build-storybook": "build-storybook -c src/storybook/ -o build/storybook",
|
||||||
|
"build-types": "apollo client:codegen --target=typescript types --globalTypesFile=src/types/globalTypes.ts",
|
||||||
|
"build": "webpack -p",
|
||||||
|
"check-strict-null-errors": "tsc --noEmit --strictNullChecks | node scripts/count-strict-null-check-errors.js",
|
||||||
|
"check-types": "tsc --noEmit",
|
||||||
|
"extract-json-messages": "rimraf build/locale && cross-env NODE_ENV=extract babel src 'src/**/*.{ts,tsx}' -o build/dashboard.bundle.js",
|
||||||
|
"extract-messages": "npm run extract-json-messages && npm run transpile-messages",
|
||||||
|
"heroku-postbuild": "npm run build",
|
||||||
|
"serve:lhci": "NODE_ENV=production npm run server",
|
||||||
|
"start": "webpack-dev-server -d",
|
||||||
|
"storybook": "start-storybook -p 3000 -c src/storybook/",
|
||||||
|
"cy:run": "cypress run",
|
||||||
|
"cy:run:record": "npm run cy:run -- --record",
|
||||||
|
"cy:open": "cypress open",
|
||||||
|
"test:e2e:run": "start-server-and-test start http://localhost:9000 cy:run",
|
||||||
|
"test:e2e:run:record": "start-server-and-test start http://localhost:9000 cy:run:record",
|
||||||
|
"test:e2e:dev": "start-server-and-test start http://localhost:9000 cy:open",
|
||||||
"test": "jest src/",
|
"test": "jest src/",
|
||||||
"test-e2e": "testcafe 'chrome:headless' .testcafe",
|
"transpile-messages": "node scripts/transpile-tx.js",
|
||||||
"heroku-postbuild": "npm run build"
|
"lint": "npx eslint \"src/**/*.@(tsx|ts|jsx|js)\" --fix ; npx prettier --check \"src/**/*.@(tsx|ts|jsx|js)\" --write"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,128 @@
|
||||||
|
{
|
||||||
|
"log": {
|
||||||
|
"_recordingName": "User/will be logged if has valid token",
|
||||||
|
"creator": {
|
||||||
|
"comment": "persister:fs",
|
||||||
|
"name": "Polly.JS",
|
||||||
|
"version": "4.3.0"
|
||||||
|
},
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"_id": "f515e15cbc83df73e5bd41437971c2e6",
|
||||||
|
"_order": 0,
|
||||||
|
"cache": {},
|
||||||
|
"request": {
|
||||||
|
"bodySize": 691,
|
||||||
|
"cookies": [],
|
||||||
|
"headers": [
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "accept",
|
||||||
|
"value": "*/*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "content-type",
|
||||||
|
"value": "application/json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "content-length",
|
||||||
|
"value": "691"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "user-agent",
|
||||||
|
"value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "accept-encoding",
|
||||||
|
"value": "gzip,deflate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "connection",
|
||||||
|
"value": "close"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "host",
|
||||||
|
"value": "localhost:8000"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"headersSize": 254,
|
||||||
|
"httpVersion": "HTTP/1.1",
|
||||||
|
"method": "POST",
|
||||||
|
"postData": {
|
||||||
|
"mimeType": "application/json",
|
||||||
|
"params": [],
|
||||||
|
"text": "[{\"operationName\":\"VerifyToken\",\"variables\":{\"token\":\"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTYwMjgyMTgsImV4cCI6MTU5NjAyODUxOCwidG9rZW4iOiJDM1NrMmtMUlZ1UEEiLCJlbWFpbCI6ImFkbWluQGV4YW1wbGUuY29tIiwidHlwZSI6ImFjY2VzcyIsInVzZXJfaWQiOiJWWE5sY2pveU1RPT0iLCJpc19zdGFmZiI6dHJ1ZX0.eo8_Ew98HICB4cFQN2U7mCJ8ydGVOvQLGRT4CnkufMc\"},\"query\":\"fragment User on User {\\n id\\n email\\n firstName\\n lastName\\n userPermissions {\\n code\\n name\\n __typename\\n }\\n avatar {\\n url\\n __typename\\n }\\n __typename\\n}\\n\\nmutation VerifyToken($token: String!) {\\n tokenVerify(token: $token) {\\n payload\\n user {\\n ...User\\n __typename\\n }\\n __typename\\n }\\n}\\n\"}]"
|
||||||
|
},
|
||||||
|
"queryString": [],
|
||||||
|
"url": "http://localhost:8000/graphql/"
|
||||||
|
},
|
||||||
|
"response": {
|
||||||
|
"bodySize": 1619,
|
||||||
|
"content": {
|
||||||
|
"mimeType": "application/json",
|
||||||
|
"size": 1619,
|
||||||
|
"text": "[{\"data\": {\"tokenVerify\": {\"payload\": {\"iat\": 1596028218, \"exp\": 1596028518, \"token\": \"C3Sk2kLRVuPA\", \"email\": \"admin@example.com\", \"type\": \"access\", \"user_id\": \"VXNlcjoyMQ==\", \"is_staff\": true}, \"user\": {\"id\": \"VXNlcjoyMQ==\", \"email\": \"admin@example.com\", \"firstName\": \"\", \"lastName\": \"\", \"userPermissions\": [{\"code\": \"MANAGE_APPS\", \"name\": \"Manage apps\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_CHECKOUTS\", \"name\": \"Manage checkouts\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_DISCOUNTS\", \"name\": \"Manage sales and vouchers.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_GIFT_CARD\", \"name\": \"Manage gift cards.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_MENUS\", \"name\": \"Manage navigation.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_ORDERS\", \"name\": \"Manage orders.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_PAGES\", \"name\": \"Manage pages.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_PLUGINS\", \"name\": \"Manage plugins\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_PRODUCTS\", \"name\": \"Manage products.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_SETTINGS\", \"name\": \"Manage settings.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_SHIPPING\", \"name\": \"Manage shipping.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_STAFF\", \"name\": \"Manage staff.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_TRANSLATIONS\", \"name\": \"Manage translations.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_USERS\", \"name\": \"Manage customers.\", \"__typename\": \"UserPermission\"}], \"avatar\": null, \"__typename\": \"User\"}, \"__typename\": \"VerifyToken\"}}}]"
|
||||||
|
},
|
||||||
|
"cookies": [],
|
||||||
|
"headers": [
|
||||||
|
{
|
||||||
|
"name": "date",
|
||||||
|
"value": "Wed, 29 Jul 2020 13:10:18 GMT"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "server",
|
||||||
|
"value": "WSGIServer/0.2 CPython/3.8.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "content-type",
|
||||||
|
"value": "application/json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "access-control-allow-origin",
|
||||||
|
"value": "http://localhost:9000"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "access-control-allow-methods",
|
||||||
|
"value": "POST, OPTIONS"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "access-control-allow-headers",
|
||||||
|
"value": "Origin, Content-Type, Accept, Authorization"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "content-length",
|
||||||
|
"value": "1619"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "x-content-type-options",
|
||||||
|
"value": "nosniff"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"headersSize": 336,
|
||||||
|
"httpVersion": "HTTP/1.1",
|
||||||
|
"redirectURL": "",
|
||||||
|
"status": 200,
|
||||||
|
"statusText": "OK"
|
||||||
|
},
|
||||||
|
"startedDateTime": "2020-07-29T13:10:18.327Z",
|
||||||
|
"time": 23,
|
||||||
|
"timings": {
|
||||||
|
"blocked": -1,
|
||||||
|
"connect": -1,
|
||||||
|
"dns": -1,
|
||||||
|
"receive": 0,
|
||||||
|
"send": 0,
|
||||||
|
"ssl": -1,
|
||||||
|
"wait": 23
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"pages": [],
|
||||||
|
"version": "1.2"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,141 @@
|
||||||
|
{
|
||||||
|
"log": {
|
||||||
|
"_recordingName": "User/will be logged in if has valid credentials",
|
||||||
|
"creator": {
|
||||||
|
"comment": "persister:fs",
|
||||||
|
"name": "Polly.JS",
|
||||||
|
"version": "4.3.0"
|
||||||
|
},
|
||||||
|
"entries": [
|
||||||
|
{
|
||||||
|
"_id": "7c460842cac4a92c188d5451dfc533a2",
|
||||||
|
"_order": 0,
|
||||||
|
"cache": {},
|
||||||
|
"request": {
|
||||||
|
"bodySize": 587,
|
||||||
|
"cookies": [],
|
||||||
|
"headers": [
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "accept",
|
||||||
|
"value": "*/*"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "content-type",
|
||||||
|
"value": "application/json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "content-length",
|
||||||
|
"value": "587"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "user-agent",
|
||||||
|
"value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "accept-encoding",
|
||||||
|
"value": "gzip,deflate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "connection",
|
||||||
|
"value": "close"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "host",
|
||||||
|
"value": "localhost:8000"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"headersSize": 254,
|
||||||
|
"httpVersion": "HTTP/1.1",
|
||||||
|
"method": "POST",
|
||||||
|
"postData": {
|
||||||
|
"mimeType": "application/json",
|
||||||
|
"params": [],
|
||||||
|
"text": "[{\"operationName\":\"TokenAuth\",\"variables\":{\"email\":\"admin@example.com\",\"password\":\"admin\"},\"query\":\"fragment User on User {\\n id\\n email\\n firstName\\n lastName\\n userPermissions {\\n code\\n name\\n __typename\\n }\\n avatar {\\n url\\n __typename\\n }\\n __typename\\n}\\n\\nmutation TokenAuth($email: String!, $password: String!) {\\n tokenCreate(email: $email, password: $password) {\\n errors: accountErrors {\\n field\\n message\\n __typename\\n }\\n csrfToken\\n token\\n user {\\n ...User\\n __typename\\n }\\n __typename\\n }\\n}\\n\"}]"
|
||||||
|
},
|
||||||
|
"queryString": [],
|
||||||
|
"url": "http://localhost:8000/graphql/"
|
||||||
|
},
|
||||||
|
"response": {
|
||||||
|
"bodySize": 1830,
|
||||||
|
"content": {
|
||||||
|
"mimeType": "application/json",
|
||||||
|
"size": 1830,
|
||||||
|
"text": "[{\"data\": {\"tokenCreate\": {\"errors\": [], \"csrfToken\": \"rLPNMGNYKXH8VY4UNEWl4nEOFMseocljioigPl36IM2CqbdmOTEpNwvdHBAJ1ZWQ\", \"token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTYwMjgyMTgsImV4cCI6MTU5NjAyODUxOCwidG9rZW4iOiJDM1NrMmtMUlZ1UEEiLCJlbWFpbCI6ImFkbWluQGV4YW1wbGUuY29tIiwidHlwZSI6ImFjY2VzcyIsInVzZXJfaWQiOiJWWE5sY2pveU1RPT0iLCJpc19zdGFmZiI6dHJ1ZX0.eo8_Ew98HICB4cFQN2U7mCJ8ydGVOvQLGRT4CnkufMc\", \"user\": {\"id\": \"VXNlcjoyMQ==\", \"email\": \"admin@example.com\", \"firstName\": \"\", \"lastName\": \"\", \"userPermissions\": [{\"code\": \"MANAGE_APPS\", \"name\": \"Manage apps\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_CHECKOUTS\", \"name\": \"Manage checkouts\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_DISCOUNTS\", \"name\": \"Manage sales and vouchers.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_GIFT_CARD\", \"name\": \"Manage gift cards.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_MENUS\", \"name\": \"Manage navigation.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_ORDERS\", \"name\": \"Manage orders.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_PAGES\", \"name\": \"Manage pages.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_PLUGINS\", \"name\": \"Manage plugins\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_PRODUCTS\", \"name\": \"Manage products.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_SETTINGS\", \"name\": \"Manage settings.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_SHIPPING\", \"name\": \"Manage shipping.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_STAFF\", \"name\": \"Manage staff.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_TRANSLATIONS\", \"name\": \"Manage translations.\", \"__typename\": \"UserPermission\"}, {\"code\": \"MANAGE_USERS\", \"name\": \"Manage customers.\", \"__typename\": \"UserPermission\"}], \"avatar\": null, \"__typename\": \"User\"}, \"__typename\": \"CreateToken\"}}}]"
|
||||||
|
},
|
||||||
|
"cookies": [
|
||||||
|
{
|
||||||
|
"httpOnly": true,
|
||||||
|
"name": "refreshToken",
|
||||||
|
"path": "/",
|
||||||
|
"secure": true,
|
||||||
|
"value": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTYwMjgyMTgsImV4cCI6MTU5ODYyMDIxOCwidG9rZW4iOiJDM1NrMmtMUlZ1UEEiLCJlbWFpbCI6ImFkbWluQGV4YW1wbGUuY29tIiwidHlwZSI6InJlZnJlc2giLCJ1c2VyX2lkIjoiVlhObGNqb3lNUT09IiwiaXNfc3RhZmYiOnRydWUsImNzcmZUb2tlbiI6InJMUE5NR05ZS1hIOFZZNFVORVdsNG5FT0ZNc2VvY2xqaW9pZ1BsMzZJTTJDcWJkbU9URXBOd3ZkSEJBSjFaV1EifQ.boD8G4pkSnZF-PLl5oOg85Uj-mqTiAzOkua9aAG3Bz4"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"headers": [
|
||||||
|
{
|
||||||
|
"name": "date",
|
||||||
|
"value": "Wed, 29 Jul 2020 13:10:18 GMT"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "server",
|
||||||
|
"value": "WSGIServer/0.2 CPython/3.8.1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "content-type",
|
||||||
|
"value": "application/json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "access-control-allow-origin",
|
||||||
|
"value": "http://localhost:9000"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "access-control-allow-methods",
|
||||||
|
"value": "POST, OPTIONS"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "access-control-allow-headers",
|
||||||
|
"value": "Origin, Content-Type, Accept, Authorization"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "content-length",
|
||||||
|
"value": "1830"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "x-content-type-options",
|
||||||
|
"value": "nosniff"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"_fromType": "array",
|
||||||
|
"name": "set-cookie",
|
||||||
|
"value": "refreshToken=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpYXQiOjE1OTYwMjgyMTgsImV4cCI6MTU5ODYyMDIxOCwidG9rZW4iOiJDM1NrMmtMUlZ1UEEiLCJlbWFpbCI6ImFkbWluQGV4YW1wbGUuY29tIiwidHlwZSI6InJlZnJlc2giLCJ1c2VyX2lkIjoiVlhObGNqb3lNUT09IiwiaXNfc3RhZmYiOnRydWUsImNzcmZUb2tlbiI6InJMUE5NR05ZS1hIOFZZNFVORVdsNG5FT0ZNc2VvY2xqaW9pZ1BsMzZJTTJDcWJkbU9URXBOd3ZkSEJBSjFaV1EifQ.boD8G4pkSnZF-PLl5oOg85Uj-mqTiAzOkua9aAG3Bz4; HttpOnly; Path=/; Secure"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"headersSize": 768,
|
||||||
|
"httpVersion": "HTTP/1.1",
|
||||||
|
"redirectURL": "",
|
||||||
|
"status": 200,
|
||||||
|
"statusText": "OK"
|
||||||
|
},
|
||||||
|
"startedDateTime": "2020-07-29T13:10:18.064Z",
|
||||||
|
"time": 118,
|
||||||
|
"timings": {
|
||||||
|
"blocked": -1,
|
||||||
|
"connect": -1,
|
||||||
|
"dns": -1,
|
||||||
|
"receive": 0,
|
||||||
|
"send": 0,
|
||||||
|
"ssl": -1,
|
||||||
|
"wait": 118
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"pages": [],
|
||||||
|
"version": "1.2"
|
||||||
|
}
|
||||||
|
}
|